Lungo.theme.default.css 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312
  1. @import "lungo.theme.default.font.css";
  2. /**
  3. * Stylesheet
  4. *
  5. * @namespace LUNGO.Theme
  6. * @class Default
  7. *
  8. * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  9. */
  10. /* @group DIMENSIONS */
  11. /* @end */
  12. /* @group COLORS */
  13. /* @end */
  14. .app {
  15. background: #000000;
  16. font-family: 'Roboto', Helvetica, Arial, sans-serif;
  17. }
  18. /* @group <header> & <footer> & <article> */
  19. header {
  20. border-top-left-radius: 5px;
  21. border-top-right-radius: 5px;
  22. -webkit-border-top-left-radius: 5px;
  23. -webkit-border-top-right-radius: 5px;
  24. -moz-border-radius-topleft: 5px;
  25. -moz-border-radius-topright: 5px;
  26. background: #2c8bca;
  27. background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2c8bca), color-stop(100%, #154f93));
  28. background: -webkit-linear-gradient(top, #2c8bca 0%, #154f93 100%);
  29. -webkit-box-shadow: inset 0 1px 0 #64b9e2, inset 0 -1px 0 #2566a4;
  30. box-shadow: inset 0 1px 0 #64b9e2, inset 0 -1px 0 #2566a4;
  31. border-bottom: 1px solid #1a2838;
  32. overflow: hidden;
  33. position: absolute;
  34. z-index: 2;
  35. }
  36. footer {
  37. background: #2c2c2d -webkit-gradient(linear, left top, left bottom, color-stop(0.25, #2c2c2d), color-stop(1, #1c1c1c));
  38. border-top: 1px inset #1c1c1c;
  39. }
  40. .title {
  41. color: #ffffff;
  42. text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
  43. }
  44. article {
  45. background-color: #EBEBEB;
  46. }
  47. article .title {
  48. color: #797979;
  49. text-shadow: 0px 1px 0px #fff;
  50. }
  51. /* @end */
  52. /* @group <nav> */
  53. nav a {
  54. color: rgba(255, 255, 255, 0.5);
  55. }
  56. nav a.current, nav a.active {
  57. color: #ffffff;
  58. }
  59. .toolbar a {
  60. color: rgba(255, 255, 255, 0.2);
  61. }
  62. .toolbar a.current, .toolbar a.active {
  63. background: #1c1c1c;
  64. box-shadow: inset 0px 0px 8px #101010;
  65. text-shadow: 0px 1px 4px #000;
  66. }
  67. .groupbar {
  68. background: #ededed;
  69. border-bottom: solid 1px rgba(0, 0, 0, 0.1);
  70. }
  71. .groupbar a {
  72. color: #6e6e6e;
  73. }
  74. .groupbar a.current {
  75. color: #6e6e6e;
  76. border-bottom: solid 3px #05bde9;
  77. }
  78. /* @end */
  79. /* @group <aside> */
  80. aside {
  81. background: #252525;
  82. }
  83. aside .title {
  84. background: #101010;
  85. border: none;
  86. }
  87. aside a {
  88. color: #fff;
  89. text-shadow: 0px 1px 0px #000;
  90. border-bottom: 1px inset #101010;
  91. border-top: 1px inset #868686;
  92. }
  93. aside a.current {
  94. background: #1c1c1c;
  95. box-shadow: inset 0px 0px 8px #101010;
  96. border-top: 1px inset #1c1c1c;
  97. }
  98. aside a .icon {
  99. text-shadow: none;
  100. color: #7a7a7a;
  101. }
  102. aside .anchor {
  103. background: #101010;
  104. color: #7a7a7a;
  105. }
  106. section.aside {
  107. box-shadow: -4px 0 8px rgba(0, 0, 0, 0.5);
  108. }
  109. section.aside.onright {
  110. box-shadow: 4px 0 8px rgba(0, 0, 0, 0.5);
  111. }
  112. @media handheld, only screen and (min-width: 768px) {
  113. section.current, section.show {
  114. box-shadow: -4px 0 8px rgba(0, 0, 0, 0.5);
  115. }
  116. section.current.onright, section.show.onright {
  117. box-shadow: 4px 0 8px rgba(0, 0, 0, 0.5);
  118. }
  119. }
  120. /* @end */
  121. /* @group .list */
  122. .list, .list li:not(.toolbar) a {
  123. color: #2a2a2a;
  124. }
  125. .list li {
  126. background: #fff;
  127. border-bottom: 1px inset #e1e1e1;
  128. }
  129. .list li:last-child {
  130. border-bottom: none;
  131. }
  132. .list li.selectable:active {
  133. background: #93d6e7;
  134. color: #1b6777;
  135. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  136. }
  137. .list li.selectable:active small, .list li.selectable:active .onright:not(.bubble) {
  138. color: #ffffff;
  139. text-shadow: none;
  140. }
  141. .list li small, .list li .onright:not(.bubble) {
  142. color: #888;
  143. }
  144. .list.indented li {
  145. border-left: solid 1px #e1e1e1;
  146. border-right: solid 1px #e1e1e1;
  147. }
  148. .list.indented li:first-child {
  149. border-top: solid 1px #e1e1e1;
  150. }
  151. .list.indented li:last-child {
  152. border-bottom: solid 1px #e1e1e1;
  153. }
  154. .list .anchor {
  155. background: #93d6e7;
  156. color: #1b6777;
  157. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  158. border: none;
  159. }
  160. .list .tip {
  161. color: #7a7a7a;
  162. }
  163. .list .tip.darker {
  164. background-color: #2c2c2d;
  165. color: #fff;
  166. text-shadow: 0px 1px 0px #000;
  167. }
  168. .list .tip.darker a {
  169. color: #fff !important;
  170. }
  171. .list .tip.dark {
  172. background-color: #f4f4f4;
  173. box-shadow: inset 0px 1px 0px #fff;
  174. text-shadow: 0px 1px 0px #fff;
  175. }
  176. .list .toolbar {
  177. border-bottom-color: rgba(0, 0, 0, 0.2);
  178. }
  179. .list .toolbar .toolbar a {
  180. box-shadow: 1px 0px 0px #d9d9d9;
  181. }
  182. .list .toolbar .toolbar a:last-child {
  183. box-shadow: none;
  184. }
  185. .list .toolbar .toolbar a.current {
  186. background: transparent;
  187. color: #333;
  188. text-shadow: none !important;
  189. }
  190. /* @end */
  191. /* @group widgets */
  192. .splash {
  193. background: #07acd0;
  194. color: #fff;
  195. text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
  196. }
  197. /* @group .button */
  198. .button {
  199. -webkit-border-radius: 2px;
  200. -moz-border-radius: 2px;
  201. border-radius: 2px;
  202. -webkit-background-clip: padding-box;
  203. -moz-background-clip: padding;
  204. background-clip: padding-box;
  205. -webkit-border-radius: 2px;
  206. -moz-border-radius: 2px;
  207. border-radius: 2px;
  208. -webkit-background-clip: padding-box;
  209. -moz-background-clip: padding;
  210. background-clip: padding-box;
  211. -webkit-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.25), inset 0 -3px 0 rgba(255, 255, 255, 0.05);
  212. }
  213. .button.big {
  214. -webkit-box-shadow: inset 0 -2px 0 rgba(0, 0, 0, 0.25), inset 0 -3px 0 rgba(255, 255, 255, 0.05), 0 1px 2px rgba(0, 0, 0, 0.3);
  215. }
  216. .button:active, .button.active {
  217. -webkit-box-shadow: inset 0 29px 8px rgba(0, 0, 0, 0.1);
  218. }
  219. .button.default {
  220. background: #5a5a5a;
  221. }
  222. .button.default:active, .button.default.active {
  223. background: #4b4b4b;
  224. }
  225. /* @end */
  226. /* @group <inputs> */
  227. input, textarea, select {
  228. border: 1px solid #e1e1e1;
  229. color: #858585;
  230. font-family: 'Roboto', Helvetica, Arial, sans-serif;
  231. }
  232. input:focus, textarea:focus, select:focus {
  233. border-color: #05b8e2;
  234. color: #05b8e2;
  235. }
  236. label {
  237. color: #05b8e2;
  238. text-transform: uppercase;
  239. font-weight: bold;
  240. }
  241. .select:after {
  242. background: #858585;
  243. color: white;
  244. }
  245. input[type="checkbox"] + span, input[type="radio"] + span {
  246. color: #fff;
  247. background: #a0a0a0;
  248. }
  249. input[type="checkbox"] + span::before, input[type="radio"] + span::before {
  250. background: #c1c1c1;
  251. }
  252. input[type="checkbox"]:checked + span, input[type="radio"]:checked + span {
  253. background: #07acd0;
  254. }
  255. /* @group range */
  256. input[type="range"] {
  257. background-color: #c7c7c7;
  258. }
  259. input[type="range"]:active {
  260. background-color: #34b7dc;
  261. }
  262. input[type="range"]::-webkit-slider-thumb {
  263. border: solid 7px rgba(255, 255, 255, 0.5);
  264. background: #34b7dc;
  265. }
  266. input[type="range"]:active::-webkit-slider-thumb {
  267. box-shadow: 0px 0px 4px #34b7dc;
  268. }
  269. /* @end */
  270. /* @group .progress */
  271. .progress .labels {
  272. font-size: 12px;
  273. font-weight: bold;
  274. line-height: 18px;
  275. color: #858585;
  276. }
  277. .progress .bar {
  278. background: #c7c7c7;
  279. }
  280. .progress .bar .value {
  281. background: #34b7dc;
  282. }
  283. .progress .bar .value .glow {
  284. background-color: rgba(255, 255, 255, 0.25);
  285. box-shadow: 0px 0px 3px #34b7dc;
  286. }
  287. /* @end */
  288. /* @end */
  289. .bubble {
  290. color: #fff;
  291. -webkit-border-radius: 2px;
  292. -moz-border-radius: 2px;
  293. border-radius: 2px;
  294. -webkit-background-clip: padding-box;
  295. -moz-background-clip: padding;
  296. background-clip: padding-box;
  297. -webkit-border-radius: 2px;
  298. -moz-border-radius: 2px;
  299. border-radius: 2px;
  300. -webkit-background-clip: padding-box;
  301. -moz-background-clip: padding;
  302. background-clip: padding-box;
  303. text-shadow: none;
  304. font-weight: bold !important;
  305. }
  306. header .bubble.count {
  307. background: #2c2c2d;
  308. }
  309. .bubble.count {
  310. background: #05b8e2;
  311. }
  312. /* @end */