diff options
author | Gabriel Albo <gabriel@albo.com.br> | 2014-08-17 18:17:43 -0300 |
---|---|---|
committer | Gabriel Albo <gabriel@albo.com.br> | 2014-08-18 11:18:37 -0300 |
commit | 30cf5f32dd7efbeba77586dc28a6b4cac97ea838 (patch) | |
tree | 6425775a040f3660607e15f85605a135377d9842 /web-ui/app/scss | |
parent | ff110f03e4bdf526e61d844e0c8296ad804d511f (diff) |
Initial style guide structure
Diffstat (limited to 'web-ui/app/scss')
-rw-r--r-- | web-ui/app/scss/style-guide.scss | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/web-ui/app/scss/style-guide.scss b/web-ui/app/scss/style-guide.scss new file mode 100644 index 00000000..95f6f789 --- /dev/null +++ b/web-ui/app/scss/style-guide.scss @@ -0,0 +1,29 @@ +@import "compass/css3"; + +body { + display: block; + overflow: scroll !important; +} + +nav { + height: 50px; + background-color: #3e3a37; + color: white; +} + +ul li { + display: inline; +} + +section.guide-section { + display: block; + height: 300px; + + &:nth-child(even) { + background: white + } + + &:nth-child(odd) { + background: #E5E5E3 + } +} |