| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- /**
- * Stylesheet
- *
- * @namespace Lungo.Theme
- * @class Layout
- *
- * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
- */
- nav
- section > header > &
- & a:not(.button)
- color: darken(THEME, 35%)
- text-shadow 0 1px 0 lighten(THEME, 25%)
- &:active
- color: darken(THEME, 50%)
- section > footer > & > a, &[data-control=groupbar] > a
- color: NAV_LINK
- &.active
- color: NAV_LINK_ACTIVE
- section > &[data-control=groupbar] > a.active
- transition box-shadow TRANSITION_time TRANSITION_easing
- box-shadow inset 0 -4px 0 THEME
- section > footer > & > a
- box-shadow inset 0 1px 0 #000, inset 0 2px 0 lighten(COLOR, 20%)
- &.active
- box-shadow inset 0 0 16px darken(COLOR, 75%)
- background-color: darken(COLOR, 10%)
- aside & a
- color: lighten(COLOR, 20%)
- &:active
- color: lighten(COLOR, 50%)
- &[data-control=menu]
- background: COLOR
- box-shadow 0 2px 0 rgba(0,0,0,0.15)
- &.icons
- background: rgba(0,0,0,0.8)
- & > a
- color: lighten(COLOR, 35%)
- &:active > .icon
- text-shadow: 0 0 32px #fff
- & > .icon
- color: #fff
- &:not(.icons)
- & > a
- color: #fff
- // text-shadow 0 1px 0 #111
- border-bottom: 1px solid darken(COLOR, 20%)
- border-top: 1px solid lighten(COLOR, 5%)
- &:active
- background: darken(COLOR, 15%)
- border-color: transparent
- & > .icon
- color: lighten(COLOR, 25%)
- & > a
- font-weight: 600
|