Update node-sass plugin (fixes #1)

This commit is contained in:
Basti 2015-05-11 13:40:39 +02:00
parent bc0bda6590
commit 14b6f8bb09
2 changed files with 19 additions and 26 deletions

View File

@ -1,16 +1,13 @@
* { * {
margin: 0; margin: 0;
padding: 0; padding: 0; }
}
body, html { body, html {
box-sizing: border-box; box-sizing: border-box;
height: 100%; height: 100%; }
}
*, *:before, *:after { *, *:before, *:after {
box-sizing: inherit; box-sizing: inherit; }
}
body { body {
background-color: #000; background-color: #000;
@ -20,8 +17,7 @@ body {
color: #fff; color: #fff;
font-family: Abel; font-family: Abel;
font-size: 18px; font-size: 18px;
text-rendering: optimizeLegibility; text-rendering: optimizeLegibility; }
}
section#teaser { section#teaser {
height: 100%; height: 100%;
@ -36,6 +32,9 @@ section#teaser {
-webkit-box-orient: vertical; -webkit-box-orient: vertical;
-moz-box-orient: vertical; -moz-box-orient: vertical;
box-orient: vertical; box-orient: vertical;
-webkit-box-direction: normal;
-moz-box-direction: normal;
box-direction: normal;
-webkit-flex-direction: column; -webkit-flex-direction: column;
-moz-flex-direction: column; -moz-flex-direction: column;
flex-direction: column; flex-direction: column;
@ -72,25 +71,19 @@ section#teaser {
-webkit-flex-grow: 0; -webkit-flex-grow: 0;
-moz-flex-grow: 0; -moz-flex-grow: 0;
flex-grow: 0; flex-grow: 0;
-ms-flex-positive: 0; -ms-flex-positive: 0; }
} section#teaser h1 {
text-transform: uppercase;
section#teaser h1 { font-size: 72px;
text-transform: uppercase; font-family: Raleway;
font-size: 72px; font-weight: 300;
font-family: Raleway; margin-bottom: 1rem; }
font-weight: 300;
margin-bottom: 1rem;
}
footer { footer {
position: absolute; position: absolute;
bottom: 8px; bottom: 8px;
right: 8px; right: 8px;
font-size: 12px; font-size: 12px; }
} footer p {
display: inline-block;
footer p { opacity: 0.7; }
display: inline-block;
opacity: 0.7;
}

View File

@ -6,7 +6,7 @@
"docpad": "~6.78.1", "docpad": "~6.78.1",
"docpad-plugin-eco": "~2.1.0", "docpad-plugin-eco": "~2.1.0",
"docpad-plugin-livereload": "~2.6.1", "docpad-plugin-livereload": "~2.6.1",
"docpad-plugin-nodesass": "^2.5.1" "docpad-plugin-nodesass": "^2.7.0"
}, },
"main": "node_modules/.bin/docpad-server", "main": "node_modules/.bin/docpad-server",
"scripts": { "scripts": {