diff options
author | Louise Crow <louise.crow@gmail.com> | 2017-09-22 16:23:02 +0100 |
---|---|---|
committer | Louise Crow <louise.crow@gmail.com> | 2017-09-22 17:40:42 +0100 |
commit | fd9ee90790cfa43063aa25320eddae0c78647bad (patch) | |
tree | 597a065626e8b73dd21fd036f715a97005608319 | |
parent | ed2a756ed2e98850ef02b1dc6cf1e4e0f5251b49 (diff) |
Add menu styling
-rw-r--r-- | app/assets/stylesheets/responsive/custom.scss | 46 |
1 files changed, 46 insertions, 0 deletions
diff --git a/app/assets/stylesheets/responsive/custom.scss b/app/assets/stylesheets/responsive/custom.scss index d32f609..d0282c0 100644 --- a/app/assets/stylesheets/responsive/custom.scss +++ b/app/assets/stylesheets/responsive/custom.scss @@ -33,6 +33,52 @@ } } + +#navigation .more-menu { + background-color: #333; +} + +.account-link:after { + position: relative; + top: -0.15em; + margin-left: 1em; + font-size: 0.5em; + content: "▼"; +} + +.logged-in-menu { + color: black; + box-shadow: 0 3px 15px 0 rgba(0, 0, 0, 0.1); +} + +#navigation .logged-in-menu a, +#navigation .logged-in-menu__signout-link a { + color: #197ace; + text-decoration: none; + transition: none; + &:hover { + color: #197ace; + background-color: transparent; + text-decoration: underline; + } +} + +#navigation .logged-in-menu__signout-link a { + text-transform: uppercase; + font-weight: bold; + font-size: 0.8em; + color: #888; + &:hover { + color: #888; + } +} + +.pro-pill { + color: #567386; + font-weight: 600; + background-color: #FFFF00; +} + /* General styles */ body{ background-color: $body-bg; |