Lungo.widgets.colour.css 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. /**
  2. * Stylesheet
  3. *
  4. * @namespace Lungo.Widgets
  5. * @class Colour
  6. *
  7. * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  8. */
  9. /* DIMENSIONS */
  10. /* COLORS */
  11. a.grey,
  12. .grey {
  13. background-color: #cccccc;
  14. }
  15. a.grey:active {
  16. background-color: #b5b5b5;
  17. }
  18. a.dark-grey,
  19. .dark-grey {
  20. background-color: #000000;
  21. }
  22. a.dark-grey:active {
  23. background-color: #000000;
  24. }
  25. a.red,
  26. .red {
  27. background-color: #e33100;
  28. }
  29. a.red:active {
  30. background-color: #c5280f;
  31. }
  32. a.lightgreen,
  33. .lightgreen {
  34. background-color: #91bd09;
  35. }
  36. a.lightgreen:active {
  37. background-color: #7ea41a;
  38. }
  39. a.green,
  40. .green {
  41. background-color: #009600;
  42. }
  43. a.green:active {
  44. background-color: #00770e;
  45. }
  46. a.blue,
  47. .blue {
  48. background-color: #237fd7;
  49. }
  50. a.blue:active {
  51. background-color: #1a69b6;
  52. }
  53. a.arcticblue,
  54. .arcticblue {
  55. background-color: #2daebf;
  56. }
  57. a.arcticblue:active {
  58. background-color: #238e9e;
  59. }
  60. a.orange,
  61. .orange {
  62. background-color: #ff5c00;
  63. }
  64. a.orange:active {
  65. background-color: #da4e15;
  66. }
  67. a.purple,
  68. .purple {
  69. background-color: #7b658d;
  70. }
  71. a.purple:active {
  72. background-color: #574765;
  73. }
  74. a.magenta,
  75. .magenta {
  76. background-color: #a9014b;
  77. }
  78. a.magenta:active {
  79. background-color: #831239;
  80. }
  81. a.pink,
  82. .pink {
  83. background-color: #ff007f;
  84. }
  85. a.pink:active {
  86. background-color: #de2870;
  87. }
  88. a.yellow,
  89. .yellow {
  90. background-color: #ffb515;
  91. }
  92. a.yellow:active {
  93. background-color: #dfa020;
  94. }
  95. a.twitter,
  96. .twitter:not(span) {
  97. background-color: #35cdff;
  98. }
  99. a.twitter:active {
  100. background-color: #2bafda;
  101. }
  102. a.facebook,
  103. .facebook:not(span) {
  104. background-color: #3b5998;
  105. }
  106. a.facebook:active {
  107. background-color: #2c4579;
  108. }
  109. li.grey {
  110. box-shadow: inset 4px 0px 0px #cccccc;
  111. }
  112. li.dark-grey {
  113. box-shadow: inset 4px 0px 0px #000000;
  114. }
  115. li.red {
  116. box-shadow: inset 4px 0px 0px #e33100;
  117. }
  118. li.lightgreen {
  119. box-shadow: inset 4px 0px 0px #91bd09;
  120. }
  121. li.green {
  122. box-shadow: inset 4px 0px 0px #009600;
  123. }
  124. li.blue {
  125. box-shadow: inset 4px 0px 0px #237fd7;
  126. }
  127. li.arcticblue {
  128. box-shadow: inset 4px 0px 0px #2daebf;
  129. }
  130. li.orange {
  131. box-shadow: inset 4px 0px 0px #ff5c00;
  132. }
  133. li.purple {
  134. box-shadow: inset 4px 0px 0px #7b658d;
  135. }
  136. li.magenta {
  137. box-shadow: inset 4px 0px 0px #a9014b;
  138. }
  139. li.pink {
  140. box-shadow: inset 4px 0px 0px #ff007f;
  141. }
  142. li.yellow {
  143. box-shadow: inset 4px 0px 0px #ffb515;
  144. }
  145. li.twitter {
  146. box-shadow: inset 4px 0px 0px #35cdff;
  147. }
  148. li.facebook {
  149. box-shadow: inset 4px 0px 0px #3b5998;
  150. }