theme.widget.styl 985 B

123456789101112131415161718192021222324252627282930313233343536
  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. font-weight: bold
  13. text-shadow: 0 1px rgba(0,0,0,0.25)
  14. &.count
  15. border-radius 0.3em
  16. background-color: DANGER
  17. box-shadow 0 0 1px rgba(0,0,0,0.25)
  18. /* ================================= PULL =============================== */
  19. body > section > [data-control="pull"]
  20. background-color: darken(BACKGROUND, 15%)
  21. color: darken(BACKGROUND, 50%)
  22. text-shadow: 0 0.1em 1em BACKGROUND
  23. &.rotate
  24. color: darken(BACKGROUND, 75%)
  25. /* =============================== EMPTY =============================== */
  26. body > section > article > .empty
  27. & > .icon, > strong, > small
  28. text-shadow: 0 1px 0 lighten(BACKGROUND, 95%)
  29. & > .icon, > small
  30. color: darken(BACKGROUND, 20%)
  31. & > strong
  32. color: darken(BACKGROUND, 40%)