Lungo.widgets.colour.css 2.6 KB

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