lungo.theme.default.css 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  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.2
  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: inset 0px 1px 0px rgba(255, 255, 255, 0.25), inset 0px -1px rgba(0, 0, 0, 0.5), 0px 2px 2px rgba(0, 0, 0, 0.2);
  34. }
  35. footer {
  36. background: #2c2c2d -webkit-gradient(linear, left top, left bottom, color-stop(0.25, #2c2c2d), color-stop(1, #1c1d1d));
  37. -webkit-box-shadow: inset 0px 1px rgba(0, 0, 0, 0.5), 0px -1px 2px rgba(0, 0, 0, 0.4);
  38. }
  39. .title {
  40. color: #fff;
  41. text-shadow: rgba(0, 0, 0, 0.5) 0 -1px 1px;
  42. text-transform: uppercase;
  43. }
  44. /* @end */
  45. /* @group <nav> */
  46. nav a {
  47. background: none;
  48. color: rgba(0, 0, 0, 0.5);
  49. text-shadow: rgba(255, 255, 255, 0.35) 0 1px 1px;
  50. }
  51. header:not(.toolbar) nav a, footer:not(.toolbar) nav a {
  52. text-shadow: none;
  53. -webkit-box-shadow: inset 0px 1px rgba(255, 255, 255, 0.15), inset 1px 0px rgba(0, 0, 0, 0.75), inset 2px 0px rgba(255, 255, 255, 0.25);
  54. }
  55. nav a.current {
  56. background: rgba(255, 255, 255, 0.15);
  57. color: #fff;
  58. text-shadow: none;
  59. }
  60. .toolbar a:first-child {
  61. -webkit-box-shadow: none;
  62. }
  63. /* @end */
  64. /* @group .list */
  65. .list {
  66. background: #c5c5c5;
  67. }
  68. .list li:not(.info) {
  69. background: #fff;
  70. border-bottom: 1px inset #c3c4c6;
  71. color: #333;
  72. }
  73. .list li.toolbar {
  74. border-bottom-color: rgba(0, 0, 0, 0.2);
  75. }
  76. .list li:not(.toolbar) a {
  77. color: #333;
  78. text-shadow: #fff 0px 1px 1px;
  79. -webkit-tap-highlight-color: #242525;
  80. }
  81. .list strong {
  82. color: #2343be;
  83. }
  84. .list small {
  85. opacity: 0.75;
  86. }
  87. .list .bubble {
  88. border: 1px solid rgba(0, 0, 0, 0.15);
  89. -webkit-border-radius: 2px;
  90. -moz-border-radius: 2px;
  91. border-radius: 2px;
  92. -webkit-background-clip: padding-box;
  93. -moz-background-clip: padding;
  94. background-clip: padding-box;
  95. color: #fff;
  96. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  97. }
  98. .list .button {
  99. color: #fff;
  100. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  101. }
  102. .list .arrow:before {
  103. color: #a9a9a9;
  104. }
  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: inset 0px 1px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px rgba(0, 0, 0, 0.25);
  115. }
  116. /* @end */
  117. /* @group .info */
  118. .list li.info {
  119. border: none;
  120. -webkit-box-shadow: inset 0px 1px 0px rgba(255, 255, 255, 0.1), inset 0px -1px 0px rgba(0, 0, 0, 0.25);
  121. background: #cbcbcb;
  122. }
  123. .list .info strong {
  124. color: #333;
  125. }
  126. .list .info.contrast strong {
  127. color: #fff;
  128. }
  129. /* @end */
  130. /* @end */
  131. .list .contrast {
  132. background: #2c2c2d -webkit-gradient(linear, left top, left bottom, color-stop(0.25, #2c2c2d), color-stop(1, #1c1d1d)) !important;
  133. text-shadow: 0px 1px 1px rgba(0, 0, 0, 0.25);
  134. color: #fff;
  135. }
  136. .list .highlight {
  137. background: #499dc4 -webkit-gradient(linear, left top, left bottom, color-stop(0, #499dc4), color-stop(1, #0e8eb6)) !important;
  138. }
  139. /* @end */
  140. /* @group widgets */
  141. /* @group <section>.splash */
  142. .splash article {
  143. background: #2c2c2d -webkit-gradient(linear, left top, left bottom, color-stop(0.25, #2c2c2d), color-stop(1, #1c1d1d)) !important;
  144. color: #fff;
  145. text-shadow: rgba(0, 0, 0, 0.5) 0 1px 1px;
  146. }
  147. /* @end */
  148. /* @group <inputs> */
  149. input, textarea, select {
  150. border: 1px solid #ccc;
  151. -webkit-border-radius: 2px;
  152. -moz-border-radius: 2px;
  153. border-radius: 2px;
  154. -webkit-background-clip: padding-box;
  155. -moz-background-clip: padding;
  156. background-clip: padding-box;
  157. background: #ffffff -webkit-gradient(linear, left top, left bottom, color-stop(0, #dddddd), color-stop(0.15, #ffffff));
  158. }
  159. input:focus, textarea:focus, select:focus {
  160. border: 1px solid #058cf5;
  161. -webkit-box-shadow: 0 0 4px 1px #058cf5;
  162. -moz-box-shadow: 0 0 4px 1px #058cf5;
  163. box-shadow: 0 0 4px 1px #058cf5;
  164. background: #e8fefe;
  165. }
  166. .select:after {
  167. background: #ccc;
  168. color: white;
  169. -webkit-border-radius: 0 2px 2px 0;
  170. -moz-border-radius: 0 2px 2px 0;
  171. border-radius: 0 2px 2px 0;
  172. -webkit-background-clip: padding-box;
  173. -moz-background-clip: padding;
  174. background-clip: padding-box;
  175. }
  176. /* @end */
  177. /* @group .counter (BETA) */
  178. .counter {
  179. background: #ee2c23;
  180. -webkit-border-radius: 2px;
  181. -moz-border-radius: 2px;
  182. border-radius: 2px;
  183. -webkit-background-clip: padding-box;
  184. -moz-background-clip: padding;
  185. background-clip: padding-box;
  186. color: #fff;
  187. }
  188. /* @end */
  189. /* @end */