diff options
author | Gabriel Albo <gabriel@albo.com.br> | 2014-08-20 18:58:27 -0300 |
---|---|---|
committer | Gabriel Albo <gabriel@albo.com.br> | 2014-08-21 09:52:48 -0300 |
commit | 2ff918d4de6fa0b0d2436737815c3f58ad698560 (patch) | |
tree | 153d75f04f1c9f207cf6ed96c5eca34c67a50105 /web-ui/app | |
parent | 4a6028ef895034f93b6f8aedd898f1e1542e98b1 (diff) |
Changing even sections background color on the style guide
Diffstat (limited to 'web-ui/app')
-rw-r--r-- | web-ui/app/scss/style-guide.scss | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/web-ui/app/scss/style-guide.scss b/web-ui/app/scss/style-guide.scss index 6d73b185..d0ecd3aa 100644 --- a/web-ui/app/scss/style-guide.scss +++ b/web-ui/app/scss/style-guide.scss @@ -28,6 +28,8 @@ ul.typography li { min-height: 125px; min-width: 130px; border: 1px solid #EEE; + background-color: white; + border-radius: 5px; } ul.left, ul.right { @@ -45,14 +47,18 @@ ul.right { section.guide-section { display: block; height: 100%; + min-height: 666px; overflow-y: auto; padding: 66px 32px; + + &:nth-child(even) { + background-color: $top_pane; + } } .color-card { width: 160px; height: 230px; - background-color: #344a5f; border-radius: 5px; display: inline-block; margin-right: 15px; |