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