theme.widget.styl 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /**
  2. * Stylesheet
  3. *
  4. * @namespace Lungo.Theme
  5. * @class Layout
  6. *
  7. * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  8. */
  9. /* ================================= TAG ================================= */
  10. .tag:not(.icon)
  11. color: #fff
  12. border-radius BORDER_radius
  13. font-weight: 700
  14. box-shadow inset 0 0.1em rgba(255,255,255,0.2), 0 0.1em rgba(0,0,0,0.25)
  15. &.count
  16. background-color: THEME
  17. aside a:not(.active) &, footer a:not(.active) &, [data-control="groupbar"] a:not(.active) &
  18. background-color: lighten(COLOR, 20%)
  19. /* ================================= PULL =============================== */
  20. body > section > [data-control="pull"]
  21. background-color: darken(BACKGROUND, 15%)
  22. color: darken(BACKGROUND, 50%)
  23. text-shadow: 0 0.1em 1em BACKGROUND
  24. & > strong
  25. font-weight: 700
  26. &.rotate
  27. color: darken(BACKGROUND, 75%)
  28. /* =============================== EMPTY =============================== */
  29. body > section > article > .empty
  30. & > .icon, > strong, > small
  31. text-shadow: 0 1px 0 lighten(BACKGROUND, 95%)
  32. & > .icon, > small
  33. color: darken(BACKGROUND, 20%)
  34. & > strong
  35. color: darken(BACKGROUND, 40%)