Lungo.widgets.colour.less 2.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  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. @import "mixins.less";
  11. a.grey, .grey{background-color: @grey;}
  12. a.grey:active { background-color: @grey-active;}
  13. a.dark-grey, .dark-grey{background-color: @black;}
  14. a.dark-grey:active{background-color: @black-active;}
  15. a.red, .red{background-color: @red;}
  16. a.red:active {background-color: @red-active;}
  17. a.lightgreen, .lightgreen{background-color: @lightgreen;}
  18. a.lightgreen:active{background-color: @lightgreen-active;}
  19. a.green, .green{background-color: @green;}
  20. a.green:active{background-color: @green-active;}
  21. a.blue, .blue{background-color: @blue;}
  22. a.blue:active {background-color: @blue-active;}
  23. a.arcticblue, .arcticblue{background-color: @arcticblue;}
  24. a.arcticblue:active {background-color: @arcticblue-active;}
  25. a.orange, .orange{background-color: @orange;}
  26. a.orange:active {background-color: @orange-active;}
  27. a.purple, .purple{background-color: @purple;}
  28. a.purple:active {background-color: @purple-active;}
  29. a.magenta, .magenta{background-color: @magenta;}
  30. a.magenta:active {background-color: @magenta-active;}
  31. a.pink, .pink{background-color: @pink;}
  32. a.pink:active {background-color: @pink-active;}
  33. a.yellow, .yellow{background-color: @yellow;}
  34. a.yellow:active {background-color: @yellow-active;}
  35. a.twitter, .twitter:not(span){background-color: @twitter;}
  36. a.twitter:active {background-color: @twitter-active;}
  37. a.facebook, .facebook:not(span){background-color: @facebook;}
  38. a.facebook:active {background-color: @facebook-active;}
  39. li.grey{ box-shadow: inset 4px 0px 0px @grey;}
  40. li.dark-grey{ box-shadow: inset 4px 0px 0px @black;}
  41. li.red{ box-shadow: inset 4px 0px 0px @red;}
  42. li.lightgreen{ box-shadow: inset 4px 0px 0px @lightgreen;}
  43. li.green{ box-shadow: inset 4px 0px 0px @green;}
  44. li.blue{ box-shadow: inset 4px 0px 0px @blue;}
  45. li.arcticblue{ box-shadow: inset 4px 0px 0px @arcticblue;}
  46. li.orange{ box-shadow: inset 4px 0px 0px @orange;}
  47. li.purple{ box-shadow: inset 4px 0px 0px @purple;}
  48. li.magenta{ box-shadow: inset 4px 0px 0px @magenta;}
  49. li.pink{ box-shadow: inset 4px 0px 0px @pink;}
  50. li.yellow{ box-shadow: inset 4px 0px 0px @yellow;}
  51. li.twitter{ box-shadow: inset 4px 0px 0px @twitter;}
  52. li.facebook{ box-shadow: inset 4px 0px 0px @facebook;}