diff --git a/root/assets/css/_global.css b/root/assets/css/_global.css new file mode 100644 index 0000000..0b32d64 --- /dev/null +++ b/root/assets/css/_global.css @@ -0,0 +1,8 @@ +body + padding: 50px + font-family: "Helvetica Neue", HelveticaNeue, Helvetica, Arial, sans-serif + color: #555 + -webkit-font-smoothing: antialiased + -webkit-text-size-adjust: 100% + -ms-text-size-adjust: 100% + font-size-adjust: auto \ No newline at end of file diff --git a/root/assets/css/global.css b/root/assets/css/global.css deleted file mode 100644 index e6005c0..0000000 --- a/root/assets/css/global.css +++ /dev/null @@ -1,2 +0,0 @@ -body - padding: 50px \ No newline at end of file diff --git a/root/assets/css/master.css b/root/assets/css/master.css index e3e8aeb..368f74a 100644 --- a/root/assets/css/master.css +++ b/root/assets/css/master.css @@ -2,4 +2,4 @@ /* Use this file to split out your css to multiple files. Just make sure to @import the file name here so it's included! */ -@import "global" \ No newline at end of file +@import "_global" \ No newline at end of file diff --git a/root/views/index.jade b/root/views/index.jade index 3635cd2..082f383 100644 --- a/root/views/index.jade +++ b/root/views/index.jade @@ -1,6 +1,6 @@ extends layout block content - h3 Welcome to roots! + h3 Welcome to Roots! :marked Find tutorials and documentation at http://roots.cx : ) diff --git a/root/views/layout.jade b/root/views/layout.jade index 98eac08..89aee90 100644 --- a/root/views/layout.jade +++ b/root/views/layout.jade @@ -9,7 +9,7 @@ html //- uncomment if your site is responsive! //- meta(name="viewport" content="width=device-width, initial-scale=1") title= _path - != css() + link(rel='stylesheet', href='css/master.css') body block content