diff options
author | Gislene Pereira <gislene01@gmail.com> | 2015-11-27 17:10:53 -0200 |
---|---|---|
committer | Pixelated <pixelated@pix-poa-1> | 2015-11-27 17:17:09 -0200 |
commit | 230ac791547576850e886e1d927b400dbe65e505 (patch) | |
tree | b7b9266395e0a16f7e1e7c551b0ec532f9337525 /web-ui/app/scss | |
parent | 3a9010d4c8a86983d06d6d5be3f68d6c03999e77 (diff) |
Issue #509 - Fixed space between navbar icons [Gil/Jeff]
Adjusted user settings popup text size. Done some SASS refactoring.
Diffstat (limited to 'web-ui/app/scss')
-rw-r--r-- | web-ui/app/scss/styles.scss | 46 |
1 files changed, 26 insertions, 20 deletions
diff --git a/web-ui/app/scss/styles.scss b/web-ui/app/scss/styles.scss index a29bd078..e9f15222 100644 --- a/web-ui/app/scss/styles.scss +++ b/web-ui/app/scss/styles.scss @@ -30,7 +30,7 @@ background-color: rgba(#3E3A37, 0.9); h1, i { - font-size: 2em; + font-size: 1.6em; color: white; } @@ -41,13 +41,13 @@ } p { - font-size: 1.7em; + font-size: 1.2em; color: #FF9C00; } } #user-settings-box.extra-bottom-space { - bottom: 65px; + bottom: 28px; } .arrow-box:before { @@ -464,31 +464,37 @@ section { } } - ul#logout li { - color: $action_buttons; - &:hover { - background-color: $action_buttons; + ul { + &#logout li { + color: $action_buttons; + &:hover { + background-color: $action_buttons; + } } - } - ul#user-settings-icon li { - color: white; - &:hover { - background-color: white; + &#user-settings-icon { + margin-bottom: 0; + + li { + color: white; + &:hover { + background-color: white; + } + } } - } - ul#feedback { - margin-bottom: 0; - li { - color: $light_orange; - &:hover { - background-color: $light_orange; + &#feedback { + margin-bottom: 0; + + li { + color: $light_orange; + &:hover { + background-color: $light_orange; + } } } } - h3 { color: white; text-transform: uppercase; |