Lungo.theme.default.css 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405
  1. /**
  2. * Stylesheet
  3. *
  4. * @namespace Lungo.Theme
  5. * @class Default
  6. *
  7. * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
  8. */
  9. .app {
  10. background: #000;
  11. font-family: Helvetica, Arial, sans-serif;
  12. }
  13. .theme,
  14. li.theme,
  15. a.theme {
  16. background: #25aeeb;
  17. }
  18. .theme:active,
  19. li.theme:active,
  20. a.theme:active {
  21. background: #2a95d3;
  22. }
  23. /* @group <header> & <footer> & <article> */
  24. section > header {
  25. background-color: #2a95d3;
  26. -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(255,255,255,0.1), inset 0 -1px 0 rgba(0,0,0,0.5);
  27. -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(255,255,255,0.1), inset 0 -1px 0 rgba(0,0,0,0.5);
  28. box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), inset 0 -2px 0 rgba(255,255,255,0.1), inset 0 -1px 0 rgba(0,0,0,0.5);
  29. }
  30. section > header .title {
  31. color: #fff;
  32. text-shadow: 0 1px 0 rgba(0, 0, 0, 0.2);
  33. }
  34. section > header .subtitle {
  35. color: #fff;
  36. opacity: 0.7;
  37. }
  38. section > footer {
  39. background-color: #222222;
  40. -webkit-box-shadow: inset 0 3px 0 #333333;
  41. -moz-box-shadow: inset 0 3px 0 #333333;
  42. box-shadow: inset 0 3px 0 #333333;
  43. }
  44. section > footer > nav a {
  45. -webkit-box-shadow: 1px 0 0 #151515;
  46. -moz-box-shadow: 1px 0 0 #151515;
  47. box-shadow: 1px 0 0 #151515;
  48. }
  49. section > footer > nav a.current {
  50. color: #ffffff;
  51. background: #111111;
  52. -webkit-box-shadow: -1px 0 0 #252525, 1px 0 0 #252525, inset 0 3px 0 #2A95D3;
  53. -moz-box-shadow: -1px 0 0 #252525, 1px 0 0 #252525, inset 0 3px 0 #2A95D3;
  54. box-shadow: -1px 0 0 #252525, 1px 0 0 #252525, inset 0 3px 0 #2A95D3;
  55. }
  56. section > article,
  57. section > [data-control="pull"] {
  58. background: #f4f5f5;
  59. }
  60. [data-control="pull"] {
  61. color: #666;
  62. text-shadow: 0 1px 0 white;
  63. }
  64. aside {
  65. color: #fff;
  66. background: #191919;
  67. }
  68. aside header,
  69. aside footer {
  70. background: #111111;
  71. text-shadow: none;
  72. }
  73. aside header {
  74. -webkit-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  75. -moz-box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  76. box-shadow: inset 0 -1px 0 rgba(0, 0, 0, 0.2);
  77. }
  78. aside article {
  79. background: none;
  80. }
  81. aside nav .icon {
  82. color: white;
  83. }
  84. aside .list li {
  85. background: none;
  86. border-bottom-color: #222222;
  87. }
  88. aside .list li.current {
  89. background: #2a95d3;
  90. border-bottom-color: #2a95d3;
  91. }
  92. aside .list li.current strong,
  93. aside .list li.current small,
  94. aside .list li.current .icon {
  95. color: #fff;
  96. }
  97. aside .list li strong,
  98. aside .list li small,
  99. aside .list li .icon {
  100. color: #888888;
  101. }
  102. section.aside {
  103. -webkit-box-shadow: -1px 0 0 rgba(0,0,0,0.2);
  104. -moz-box-shadow: -1px 0 0 rgba(0,0,0,0.2);
  105. box-shadow: -1px 0 0 rgba(0,0,0,0.2);
  106. }
  107. section.aside.right {
  108. -webkit-box-shadow: 4px 0 8px rgba(0,0,0,0.5);
  109. -moz-box-shadow: 4px 0 8px rgba(0,0,0,0.5);
  110. box-shadow: 4px 0 8px rgba(0,0,0,0.5);
  111. }
  112. /* @end */
  113. /* @group <nav> */
  114. header nav a {
  115. color: #fff;
  116. }
  117. header nav.box:not(.right) a {
  118. -webkit-box-shadow: 1px 0 0 rgba(255,255,255,0.2), inset -1px 0 0 rgba(0,0,0,0.2);
  119. -moz-box-shadow: 1px 0 0 rgba(255,255,255,0.2), inset -1px 0 0 rgba(0,0,0,0.2);
  120. box-shadow: 1px 0 0 rgba(255,255,255,0.2), inset -1px 0 0 rgba(0,0,0,0.2);
  121. }
  122. header nav.box.right a {
  123. -webkit-box-shadow: -1px 0 0 rgba(255,255,255,0.2), inset 1px 0 0 rgba(0,0,0,0.2);
  124. -moz-box-shadow: -1px 0 0 rgba(255,255,255,0.2), inset 1px 0 0 rgba(0,0,0,0.2);
  125. box-shadow: -1px 0 0 rgba(255,255,255,0.2), inset 1px 0 0 rgba(0,0,0,0.2);
  126. }
  127. header nav.box a:active {
  128. background: rgba(0, 0, 0, 0.1);
  129. }
  130. header nav.button a {
  131. border-radius: 1px;
  132. background-image: -webkit-linear-gradient(top , rgba(0, 0, 0, 0) , rgba(0, 0, 0, 0.1));
  133. background-image: -moz-linear-gradient(top , rgba(0, 0, 0, 0) , rgba(0, 0, 0, 0.1));
  134. background-image: -ms-linear-gradient(top , rgba(0, 0, 0, 0) , rgba(0, 0, 0, 0.1));
  135. background-image: -o-linear-gradient(top , rgba(0, 0, 0, 0) , rgba(0, 0, 0, 0.1));
  136. background-image: linear-gradient(top , rgba(0, 0, 0, 0) , rgba(0, 0, 0, 0.1));
  137. box-shadow: 0 1px 0 rgba(255, 255, 255, 0.2), inset 0 0 3px rgba(0, 0, 0, 0.3), inset 0 1px 1px rgba(0, 0, 0, 0.5);
  138. }
  139. header nav.button a:active {
  140. background: rgba(0, 0, 0, 0.2);
  141. }
  142. section > nav.groupbar {
  143. background-color: #222222;
  144. }
  145. section > nav.groupbar > a.current {
  146. -webkit-box-shadow: inset 0 -3px 0 #2a95d3;
  147. -moz-box-shadow: inset 0 -3px 0 #2a95d3;
  148. box-shadow: inset 0 -3px 0 #2a95d3;
  149. }
  150. footer > nav > a,
  151. nav.groupbar > a {
  152. color: #888888;
  153. }
  154. footer > nav > a.current,
  155. nav.groupbar > a.current {
  156. color: #ffffff;
  157. }
  158. /* @end */
  159. /* @group <aside> */
  160. /* @group .list */
  161. .list li {
  162. background: #fff;
  163. border-bottom: inset 1px #dddddd;
  164. }
  165. .list li,
  166. .list li a {
  167. color: #2a2a2a;
  168. }
  169. .list li.dark {
  170. background: #444444;
  171. }
  172. .list li.dark,
  173. .list li.dark a {
  174. color: #fff;
  175. }
  176. .list li.selectable:active,
  177. .list li.theme {
  178. background: #25aeeb;
  179. }
  180. .list li.selectable:active,
  181. .list li.theme,
  182. .list li.selectable:active a,
  183. .list li.theme a {
  184. color: #fff;
  185. }
  186. .list li.light {
  187. background: #dddddd;
  188. text-shadow: 0 1px 0 #eee;
  189. }
  190. .list li.light,
  191. .list li.light a {
  192. color: #888888;
  193. }
  194. .list li.anchor {
  195. background: #222222;
  196. border-bottom: none;
  197. }
  198. .list li.anchor,
  199. .list li.anchor a {
  200. color: #fff !important;
  201. }
  202. .list li small,
  203. .list li .right:not(.bubble) {
  204. opacity: 0.8;
  205. }
  206. .list:not(.indented) li.dark,
  207. .list:not(.indented) li.theme,
  208. .list:not(.indented) li.light {
  209. border-bottom-color: rgba(0, 0, 0, 0.1);
  210. }
  211. /* @end */
  212. /* @group widgets */
  213. .splash {
  214. background: #222222;
  215. color: #fff;
  216. text-shadow: 0 1px 0px rgba(0, 0, 0, 0.2);
  217. }
  218. /* @group .button */
  219. a.button {
  220. -webkit-border-radius: 1px;
  221. -moz-border-radius: 1px;
  222. border-radius: 1px;
  223. -webkit-background-clip: padding-box;
  224. -moz-background-clip: padding;
  225. background-clip: padding-box;
  226. -webkit-box-shadow: inset 0 2px 0 rgba(255,255,255, 0.2);
  227. -moz-box-shadow: inset 0 2px 0 rgba(255,255,255, 0.2);
  228. box-shadow: inset 0 2px 0 rgba(255,255,255, 0.2);
  229. font-weight: bold;
  230. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  231. }
  232. a.button:active {
  233. -webkit-box-shadow: inset 0 10px 30px rgba(0,0,0,0.2), inset 0 -2px 4px rgba(0,0,0,0.3);
  234. -moz-box-shadow: inset 0 10px 30px rgba(0,0,0,0.2), inset 0 -2px 4px rgba(0,0,0,0.3);
  235. box-shadow: inset 0 10px 30px rgba(0,0,0,0.2), inset 0 -2px 4px rgba(0,0,0,0.3);
  236. }
  237. /* @end */
  238. /* @group <form> */
  239. label {
  240. color: #999;
  241. }
  242. input:not([type=range]),
  243. textarea,
  244. select {
  245. border: 1px solid #d0d4c6;
  246. -webkit-border-radius: 1px;
  247. -moz-border-radius: 1px;
  248. border-radius: 1px;
  249. -webkit-background-clip: padding-box;
  250. -moz-background-clip: padding;
  251. background-clip: padding-box;
  252. color: #858585;
  253. font-family: Helvetica, Arial, sans-serif;
  254. background: #fff;
  255. }
  256. input:not([type=range]):focus,
  257. textarea:focus,
  258. select:focus {
  259. color: #484a49;
  260. border-color: #2a95d3;
  261. -webkit-box-shadow: 0 0 1px #25aeeb;
  262. -moz-box-shadow: 0 0 1px #25aeeb;
  263. box-shadow: 0 0 1px #25aeeb;
  264. }
  265. input:not([type=range])[disabled],
  266. textarea[disabled],
  267. select[disabled] {
  268. background: #ddd;
  269. border-color: #999;
  270. color: #999;
  271. }
  272. .select:after {
  273. background: #d0d4c6;
  274. color: white;
  275. border-top-right-radius: 1px;
  276. border-bottom-right-radius: 1px;
  277. }
  278. /* @group range */
  279. input[type=range] {
  280. -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  281. -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  282. box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  283. -webkit-border-radius: 1px;
  284. -moz-border-radius: 1px;
  285. border-radius: 1px;
  286. -webkit-background-clip: padding-box;
  287. -moz-background-clip: padding;
  288. background-clip: padding-box;
  289. }
  290. input[type=range]:not(.checkbox) {
  291. background-color: #c7c7c7;
  292. }
  293. input[type=range]:not(.checkbox):active {
  294. background-color: #25aeeb;
  295. }
  296. input[type=range].checkbox {
  297. background-color: #aaaaaa;
  298. color: rgba(255, 255, 255, 0.6);
  299. }
  300. input[type=range].checkbox.active {
  301. background-color: #25aeeb;
  302. }
  303. input[type=range]::-webkit-slider-thumb {
  304. border-radius: 1px;
  305. box-shadow: 0px 1px 2px 1px rgba(0, 0, 0, 0.3);
  306. background: #fff;
  307. }
  308. input[type=range]::-webkit-slider-thumb::after {
  309. background: #ddd;
  310. }
  311. /* @end */
  312. /* @group .progress */
  313. .progress .labels {
  314. font-size: 12px;
  315. font-weight: bold;
  316. line-height: 18px;
  317. color: #858585;
  318. }
  319. .progress .bar {
  320. -webkit-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  321. -moz-box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  322. box-shadow: inset 0 1px 2px rgba(0,0,0,0.1);
  323. background: #c7c7c7;
  324. -webkit-border-radius: 1px;
  325. -moz-border-radius: 1px;
  326. border-radius: 1px;
  327. -webkit-background-clip: padding-box;
  328. -moz-background-clip: padding;
  329. background-clip: padding-box;
  330. }
  331. .progress .bar .value {
  332. background-color: #25aeeb;
  333. -webkit-border-radius: 1px;
  334. -moz-border-radius: 1px;
  335. border-radius: 1px;
  336. -webkit-background-clip: padding-box;
  337. -moz-background-clip: padding;
  338. background-clip: padding-box;
  339. }
  340. .progress .bar .value .label {
  341. float: right;
  342. margin-right: 3px;
  343. font-weight: bold;
  344. color: rgba(0, 0, 0, 0.6);
  345. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  346. font-size: 12px;
  347. }
  348. /* @end */
  349. /* @group .bubble */
  350. .bubble {
  351. color: #fff;
  352. -webkit-border-radius: 2px;
  353. -moz-border-radius: 2px;
  354. border-radius: 2px;
  355. -webkit-background-clip: padding-box;
  356. -moz-background-clip: padding;
  357. background-clip: padding-box;
  358. }
  359. .bubble.count {
  360. background: #2a95d3;
  361. }
  362. header .count {
  363. background: #222222 !important;
  364. }
  365. footer .bubble {
  366. -webkit-box-shadow: inset 0 1px 1px rgba(255,255,255,0.3), 0 1px 2px rgba(0,0,0,0.5);
  367. -moz-box-shadow: inset 0 1px 1px rgba(255,255,255,0.3), 0 1px 2px rgba(0,0,0,0.5);
  368. box-shadow: inset 0 1px 1px rgba(255,255,255,0.3), 0 1px 2px rgba(0,0,0,0.5);
  369. }
  370. article .list .bubble {
  371. -webkit-box-shadow: inset 1px 0 0 rgba(0,0,0,0.3), inset 0 1px 0 rgba(0,0,0,0.3), inset -1px 0 0 rgba(0,0,0,0.3), inset 0 -1px 0 rgba(0,0,0,0.3);
  372. -moz-box-shadow: inset 1px 0 0 rgba(0,0,0,0.3), inset 0 1px 0 rgba(0,0,0,0.3), inset -1px 0 0 rgba(0,0,0,0.3), inset 0 -1px 0 rgba(0,0,0,0.3);
  373. box-shadow: inset 1px 0 0 rgba(0,0,0,0.3), inset 0 1px 0 rgba(0,0,0,0.3), inset -1px 0 0 rgba(0,0,0,0.3), inset 0 -1px 0 rgba(0,0,0,0.3);
  374. }
  375. aside .list .bubble {
  376. background: rgba(0, 0, 0, 0.25);
  377. }
  378. /* @end */
  379. /* @group .bubble */
  380. .notification {
  381. color: #fff;
  382. }
  383. .notification .window.confirm {
  384. background: #333;
  385. }
  386. .notification .window.notify {
  387. text-shadow: 0 1px 0px rgba(0, 0, 0, 0.1);
  388. -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), inset 0 -1px 0 rgba(0,0,0,0.2), 0px 1px 2px rgba(0,0,0,0.25);
  389. -moz-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), inset 0 -1px 0 rgba(0,0,0,0.2), 0px 1px 2px rgba(0,0,0,0.25);
  390. box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), inset 0 -1px 0 rgba(0,0,0,0.2), 0px 1px 2px rgba(0,0,0,0.25);
  391. }
  392. .notification .window.notify.error {
  393. background: #e33100;
  394. }
  395. .notification .window.notify.alert {
  396. background: #ffb515;
  397. }
  398. .notification .window.notify.success {
  399. background: #009600;
  400. }
  401. .notification .window.url .close {
  402. background: #000;
  403. border: solid 2px #fff;
  404. box-shadow: 0 0 4px black;
  405. }