Lungo.widgets.colour.less 2.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. /**
  2. * Stylesheet
  3. *
  4. * @namespace Lungo.Widgets
  5. * @class Colour
  6. *
  7. * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  8. */
  9. @import "constants.less";
  10. a.grey, .grey{background-color: @grey;}
  11. a.grey:active { background-color: @grey-active;}
  12. a.dark-grey, .dark-grey{background-color: @black;}
  13. a.dark-grey:active{background-color: @black-active;}
  14. a.red, .red{background-color: @red;}
  15. a.red:active {background-color: @red-active;}
  16. a.lightgreen, .lightgreen{background-color: @lightgreen;}
  17. a.lightgreen:active{background-color: @lightgreen-active;}
  18. a.green, .green{background-color: @green;}
  19. a.green:active{background-color: @green-active;}
  20. a.blue, .blue{background-color: @blue;}
  21. a.blue:active {background-color: @blue-active;}
  22. a.arcticblue, .arcticblue{background-color: @arcticblue;}
  23. a.arcticblue:active {background-color: @arcticblue-active;}
  24. a.orange, .orange{background-color: @orange;}
  25. a.orange:active {background-color: @orange-active;}
  26. a.purple, .purple{background-color: @purple;}
  27. a.purple:active {background-color: @purple-active;}
  28. a.magenta, .magenta{background-color: @magenta;}
  29. a.magenta:active {background-color: @magenta-active;}
  30. a.pink, .pink{background-color: @pink;}
  31. a.pink:active {background-color: @pink-active;}
  32. a.yellow, .yellow{background-color: @yellow;}
  33. a.yellow:active {background-color: @yellow-active;}
  34. a.twitter, .twitter:not(span){background-color: @twitter;}
  35. a.twitter:active {background-color: @twitter-active;}
  36. a.facebook, .facebook:not(span){background-color: @facebook;}
  37. a.facebook:active {background-color: @facebook-active;}
  38. li.grey{ box-shadow: inset 4px 0px 0px @grey;}
  39. li.dark-grey{ box-shadow: inset 4px 0px 0px @black;}
  40. li.red{ box-shadow: inset 4px 0px 0px @red;}
  41. li.lightgreen{ box-shadow: inset 4px 0px 0px @lightgreen;}
  42. li.green{ box-shadow: inset 4px 0px 0px @green;}
  43. li.blue{ box-shadow: inset 4px 0px 0px @blue;}
  44. li.arcticblue{ box-shadow: inset 4px 0px 0px @arcticblue;}
  45. li.orange{ box-shadow: inset 4px 0px 0px @orange;}
  46. li.purple{ box-shadow: inset 4px 0px 0px @purple;}
  47. li.magenta{ box-shadow: inset 4px 0px 0px @magenta;}
  48. li.pink{ box-shadow: inset 4px 0px 0px @pink;}
  49. li.yellow{ box-shadow: inset 4px 0px 0px @yellow;}
  50. li.twitter{ box-shadow: inset 4px 0px 0px @twitter;}
  51. li.facebook{ box-shadow: inset 4px 0px 0px @facebook;}