lungo.theme.default.css 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214
  1. /**
  2. *
  3. * /$$
  4. * | $$
  5. * | $$ /$$ /$$ /$$$$$$$ /$$$$$$ /$$$$$$
  6. * | $$ | $$ | $$| $$__ $$ /$$__ $$ /$$__ $$
  7. * | $$ | $$ | $$| $$ \ $$| $$ \ $$| $$ \ $$
  8. * | $$ | $$ | $$| $$ | $$| $$ | $$| $$ | $$
  9. * | $$$$$$$$| $$$$$$/| $$ | $$| $$$$$$$| $$$$$$/
  10. * |________/ \______/ |__/ |__/ \____ $$ \______/
  11. * /$$ \ $$
  12. * | $$$$$$/
  13. * \______/
  14. *
  15. * @copyright 2011 TapQuo Inc (c)
  16. * @license http://www.github.com/tapquo/lungo/blob/master/LICENSE.txt
  17. * @version 1.1
  18. * @link https://github.com/TapQuo/Lungo.js
  19. *
  20. * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  21. */
  22. .app {
  23. background: #000000;
  24. }
  25. /* @group <header> & <footer> & <article> */
  26. header {
  27. background-color: #91bd09;
  28. border-top: 1px solid #b7de3f;
  29. border-bottom: 1px solid #758e29;
  30. box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.2);
  31. }
  32. footer {
  33. background: #2c2c2d -webkit-gradient(linear, left top, left bottom, color-stop(0.25, #2c2c2d), color-stop(1, #1c1c1c));
  34. border-top: 1px inset #1c1c1c;
  35. }
  36. .title {
  37. color: #ffffff;
  38. text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
  39. }
  40. article {
  41. background-color: #f9f9f9;
  42. }
  43. article .title {
  44. color: #797979;
  45. text-shadow: 0px 1px 0px #fff;
  46. }
  47. /* @end */
  48. /* @group <nav> */
  49. nav a {
  50. color: rgba(255, 255, 255, 0.5);
  51. }
  52. nav a.current, nav a:active {
  53. color: #ffffff;
  54. }
  55. .toolbar a {
  56. color: rgba(255, 255, 255, 0.2);
  57. }
  58. .toolbar a.current, .toolbar a:active {
  59. background: #1c1c1c;
  60. box-shadow: inset 0px 0px 8px #101010;
  61. text-shadow: 0px 1px 4px #000;
  62. }
  63. /* @end */
  64. /* @group <aside> */
  65. aside {
  66. background: #252525;
  67. }
  68. aside a {
  69. color: #fff;
  70. text-shadow: 0px 1px 0px #000;
  71. border-bottom: 1px inset #101010;
  72. border-top: 1px inset #868686;
  73. }
  74. aside a.current {
  75. background: #1c1c1c;
  76. box-shadow: inset 0px 0px 8px #101010;
  77. border-top: 1px inset #1c1c1c;
  78. }
  79. aside a .icon {
  80. text-shadow: none;
  81. color: #7a7a7a;
  82. }
  83. aside .anchor {
  84. background: #101010;
  85. color: #7a7a7a;
  86. }
  87. aside ~ article {
  88. box-shadow: -1px 0px 4px #000000;
  89. }
  90. /* @end */
  91. /* @group .list */
  92. .list, .list li:not(.toolbar) a {
  93. color: #2a2a2a;
  94. }
  95. .list li {
  96. background: #fff;
  97. border-bottom: 1px inset #e1e1e1;
  98. }
  99. .list li:last-child {
  100. border-bottom: none;
  101. }
  102. .list li.selectable:active {
  103. background: #c1de6a;
  104. color: #5d7b03;
  105. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  106. }
  107. .list li.selectable:active small, .list li.selectable:active .onright:not(.bubble) {
  108. color: #ffffff;
  109. text-shadow: none;
  110. }
  111. .list li small, .list li .onright:not(.bubble) {
  112. color: #888;
  113. }
  114. .list .indented ul {
  115. border: 1px solid #e1e1e1;
  116. }
  117. .list .anchor {
  118. background: #c1de6a;
  119. color: #5d7b03;
  120. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  121. border: none;
  122. }
  123. .list .tip {
  124. color: #7a7a7a;
  125. }
  126. .list .tip.darker {
  127. background-color: #2c2c2d;
  128. color: #fff;
  129. text-shadow: 0px 1px 0px #000;
  130. }
  131. .list .tip.darker a {
  132. color: #fff !important;
  133. }
  134. .list .tip.dark {
  135. background-color: #f4f4f4;
  136. box-shadow: inset 0px 1px 0px #fff;
  137. text-shadow: 0px 1px 0px #fff;
  138. }
  139. .list .toolbar {
  140. border-bottom-color: rgba(0, 0, 0, 0.2);
  141. }
  142. .list .toolbar .toolbar a {
  143. box-shadow: 1px 0px 0px #d9d9d9;
  144. }
  145. .list .toolbar .toolbar a:last-child {
  146. box-shadow: none;
  147. }
  148. .list .toolbar .toolbar a.current {
  149. background: transparent;
  150. color: #333;
  151. text-shadow: none !important;
  152. }
  153. /* @end */
  154. /* @group widgets */
  155. .splash {
  156. background: #91bd09;
  157. color: #fff;
  158. text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
  159. }
  160. /* @group .button */
  161. a.button {
  162. box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.3), inset 0 2px 0px rgba(255, 255, 255, 0.2), inset 1px 0 0 rgba(0, 0, 0, 0.2), inset -1px 0 0 rgba(0, 0, 0, 0.2), inset 0 -1px 0 rgba(0, 0, 0, 0.2), 0 1px 1px rgba(0, 0, 0, 0.1);
  163. }
  164. a.button:active {
  165. box-shadow: inset 0 0 8px rgba(0, 0, 0, 0.4);
  166. }
  167. /* @end */
  168. /* @group <inputs> */
  169. input, textarea, select {
  170. border: 1px solid #e1e1e1;
  171. color: #858585;
  172. font-family: 'Roboto', Helvetica, Arial, sans-serif;
  173. }
  174. input:focus, textarea:focus, select:focus {
  175. border-color: #91bd09;
  176. color: #91bd09;
  177. }
  178. label {
  179. color: #91bd09;
  180. text-transform: uppercase;
  181. font-weight: bold;
  182. }
  183. .select:after {
  184. background: #858585;
  185. color: white;
  186. }
  187. input[type="checkbox"] + span, input[type="radio"] + span {
  188. color: #fff;
  189. background: #a0a0a0;
  190. }
  191. input[type="checkbox"] + span::before, input[type="radio"] + span::before {
  192. background: #c1c1c1;
  193. }
  194. input[type="checkbox"]:checked + span, input[type="radio"]:checked + span {
  195. background: #758e29;
  196. }
  197. /* @end */
  198. .bubble {
  199. color: #fff;
  200. -webkit-border-radius: 2px;
  201. border-radius: 2px;
  202. -webkit-background-clip: padding-box;
  203. background-clip: padding-box;
  204. text-shadow: none;
  205. font-weight: bold !important;
  206. }
  207. header .bubble.count {
  208. background: #2c2c2d;
  209. }
  210. .bubble.count {
  211. background: #91bd09;
  212. }
  213. /* @end */