lungo.theme.default.css 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217
  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.0.0
  18. * @link https://github.com/TapQuo/Lungo.js
  19. *
  20. * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  21. */
  22. /* @group layout */
  23. .app {
  24. font-size:13px;
  25. background: #000;
  26. }
  27. article{
  28. background: #fff;
  29. }
  30. /* @group <header> & <footer> */
  31. header{
  32. background: #42474d -webkit-gradient(linear, left top, left bottom, color-stop(0.25, #42474d), color-stop(1, #2c3137));
  33. -webkit-box-shadow:
  34. inset 0px 1px 0px rgba(255,255,255,0.25),
  35. inset 0px -1px rgba(0,0,0,0.5),
  36. 0px 2px 2px rgba(0,0,0,0.2);}
  37. footer{
  38. background: #2c2c2d -webkit-gradient(linear, left top, left bottom, color-stop(0.25, #2c2c2d), color-stop(1, #1c1d1d));
  39. -webkit-box-shadow:
  40. inset 0px 1px rgba(0,0,0,0.5),
  41. 0px -1px 2px rgba(0,0,0,0.4);}
  42. .title{
  43. color: #fff;
  44. text-shadow: rgba(0,0,0,0.5) 0 -1px 1px;
  45. text-transform: uppercase;}
  46. /* @end */
  47. /* @group <nav> */
  48. nav a {
  49. background: none;
  50. color: rgba(0,0,0,0.5);
  51. text-shadow: rgba(255,255,255,0.35) 0 1px 1px;}
  52. header:not(.toolbar) nav a, footer:not(.toolbar) nav a{
  53. text-shadow: none;
  54. -webkit-box-shadow:
  55. inset 0px 1px rgba(255,255,255,0.15),
  56. inset 1px 0px rgba(0,0,0,0.75),
  57. inset 2px 0px rgba(255,255,255,0.25);
  58. }
  59. nav a.current{
  60. background: rgba(255,255,255,0.15);
  61. color: #fff;
  62. text-shadow: rgba(0,0,0,1) 0 1px 1px;
  63. text-shadow: none;
  64. }
  65. //@ToDo: Change the colour for not .toolbar classed elements
  66. not(.toolbar) nav a.current{
  67. }
  68. .toolbar a:first-child{ -webkit-box-shadow: none; }
  69. /* @end */
  70. /* @group .list */
  71. .list {
  72. background: #c5c5c5;
  73. }
  74. .list li:not(.info){
  75. background: #fff;
  76. border-bottom: 1px inset #c3c4c6;
  77. color: #333;
  78. }
  79. .list li.toolbar{
  80. border-bottom-color: rgba(0,0,0,0.2);
  81. }
  82. .list li:not(.toolbar) a {
  83. color: #333;
  84. text-shadow: #fff 0px 1px 1px;
  85. -webkit-tap-highlight-color: #242525;
  86. }
  87. .list strong {
  88. color: #2343be;
  89. }
  90. .list small{
  91. opacity: 0.75;
  92. }
  93. .list .bubble{
  94. border: 1px solid rgba(0,0,0,0.15);
  95. -webkit-border-radius: 2px;
  96. color: #fff;
  97. text-shadow: 0 -1px 0 rgba(0,0,0,.3);
  98. }
  99. .list .button{
  100. color: #fff;
  101. text-shadow: 0 -1px 0 rgba(0,0,0,.3);
  102. }
  103. .list .arrow:before{
  104. color: #a9a9a9;}
  105. /* @group .anchor */
  106. .list li.anchor {
  107. background: #e1e1e1;
  108. color: #222;
  109. }
  110. /* @end */
  111. /* @group .anchor */
  112. .list li.search {
  113. border: none;
  114. -webkit-box-shadow:
  115. inset 0px 1px 0px rgba(255,255,255,0.1),
  116. inset 0px -1px 0px rgba(0,0,0,0.25);
  117. }
  118. /* @end */
  119. /* @group .info */
  120. .list li.info {
  121. border: none;
  122. -webkit-box-shadow:
  123. inset 0px 1px 0px rgba(255,255,255,0.1),
  124. inset 0px -1px 0px rgba(0,0,0,0.25);
  125. background: #cbcbcb;
  126. }
  127. .list .info strong{
  128. color: #333;
  129. }
  130. .list .info.contrast strong{
  131. color: #fff;
  132. }
  133. /* @end */
  134. /* @end */
  135. .list .contrast{
  136. background: #2c2c2d -webkit-gradient(linear, left top, left bottom, color-stop(0.25, #2c2c2d), color-stop(1, #1c1d1d)) !important;
  137. text-shadow: 0px 1px 1px rgba(0,0,0,0.25);
  138. color: #fff;
  139. }
  140. .list .highlight{
  141. background: #499dc4 -webkit-gradient(linear, left top, left bottom, color-stop(0, #499dc4), color-stop(1, #0e8eb6)) !important;
  142. }
  143. /* @end */
  144. /* @group .classes */
  145. /* @end */
  146. /* @group widgets */
  147. /* @group <section>.splash */
  148. .splash article {
  149. background: #2c2c2d -webkit-gradient(linear, left top, left bottom, color-stop(0.25, #2c2c2d), color-stop(1, #1c1d1d)) !important;
  150. color: #fff;
  151. text-shadow: rgba(0,0,0,0.5) 0 1px 1px;}
  152. /* @end */
  153. /* @group <inputs> */
  154. input, textarea, select {
  155. border: 1px solid #ccc;
  156. -webkit-border-radius: 2px;
  157. background: #fff -webkit-gradient(linear, left top, left bottom, color-stop(0, #ddd), color-stop(0.15, #fff));}
  158. input:focus, textarea:focus, select:focus {
  159. border: 1px solid #058cf5;
  160. -webkit-box-shadow: 0 0 4px 1px #058cf5;
  161. background: #e8fefe;}
  162. .select:after {
  163. background: #ccc;
  164. color: white;
  165. -webkit-border-radius: 0 2px 2px 0;}
  166. /* @end */
  167. /* @group .counter (BETA) */
  168. .counter{
  169. background: #ee2c23;
  170. -webkit-border-radius: 2px;
  171. -moz-border-radius: 2px;
  172. color: #fff;
  173. }
  174. /* @end */
  175. /* @end */