Lungo.theme.default.css 5.0 KB

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