lungo.theme.default.css 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500
  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 */.app {
  14. background: #000000;
  15. font-family: 'Roboto', Helvetica, Arial, sans-serif;
  16. }
  17. /* @group <header> & <footer> & <article> */
  18. header {
  19. /*border-top-left-radius: 5px;
  20. border-top-right-radius: 5px;*/
  21. border-bottom: 1px solid #1a2838;
  22. background: #2c8bca -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2c8bca), color-stop(100%, #154f93));
  23. box-shadow: inset 0 1px 0 #64b9e2, inset 0 -1px 0 #2566a4;
  24. position: absolute;
  25. z-index: 2;
  26. }
  27. header .title {
  28. color: #ffffff;
  29. text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
  30. }
  31. header .subtitle {
  32. color: rgba(255, 255, 255, 0.6);
  33. text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.3);
  34. }
  35. footer {
  36. background: #353b42 -webkit-gradient(linear, left top, left bottom, color-stop(0%, #353b42), color-stop(50%, #272a2d));
  37. border-top: 1px inset #2A2A2A;
  38. color: #353b42;
  39. }
  40. article {
  41. background-color: #EBEBEB;
  42. }
  43. article .title {
  44. color: #797979;
  45. text-shadow: 0px 1px 0px #fff;
  46. }
  47. /* @end */
  48. /* @group <nav> */
  49. header nav a {
  50. color: #ffffff;
  51. text-shadow: 0 1px 0 rgba(0, 0, 0, 0.3);
  52. }
  53. header nav:not(.plain) a {
  54. box-shadow: 1px 0 0 rgba(255, 255, 255, 0.2), inset -1px 0 0 rgba(0, 0, 0, 0.2);
  55. }
  56. header nav:not(.plain) a.accept {
  57. background: rgba(0, 255, 0, 0.4);
  58. }
  59. header nav:not(.plain) a.cancel {
  60. background: rgba(255, 0, 0, 0.4);
  61. }
  62. header nav:not(.plain).onright a {
  63. box-shadow: -1px 0 0 rgba(255, 255, 255, 0.2), inset 1px 0 0 rgba(0, 0, 0, 0.2);
  64. }
  65. header nav:not(.plain) a:active {
  66. box-shadow: inset 1px 0 1px rgba(0, 0, 0, 0.1), inset -1px 0 0 rgba(0, 0, 0, 0.1), inset 0 0 42px rgba(0, 0, 0, 0.5);
  67. }
  68. header nav.plain a:active {
  69. text-shadow: 0 0 4px rgba(255, 255, 255, 0.5);
  70. }
  71. .toolbar a {
  72. color: #cdd9e3;
  73. -webkit-border-radius: 4px;
  74. -moz-border-radius: 4px;
  75. border-radius: 4px;
  76. -webkit-background-clip: padding-box;
  77. -moz-background-clip: padding;
  78. background-clip: padding-box;
  79. -webkit-border-radius: 4px;
  80. -moz-border-radius: 4px;
  81. border-radius: 4px;
  82. -webkit-background-clip: padding-box;
  83. -moz-background-clip: padding;
  84. background-clip: padding-box;
  85. font-weight: bold;
  86. }
  87. .toolbar a.current,
  88. .toolbar a.active {
  89. background: #111;
  90. box-shadow: inset 0 1px 1px #000000, -1px 0 0 rgba(255, 255, 255, 0.05), 1px 1px 0 rgba(255, 255, 255, 0.05);
  91. }
  92. .groupbar {
  93. background: #272a2d;
  94. border-bottom: solid 1px #000000;
  95. box-shadow: inset 0 1px 8px rgba(0, 0, 0, 0.3);
  96. }
  97. .groupbar a {
  98. color: #6e6e6e;
  99. }
  100. .groupbar a.current {
  101. color: #fff;
  102. border-bottom: solid 3px #2566a4;
  103. }
  104. /* @end */
  105. /* @group <aside> */
  106. aside {
  107. color: #9faab1;
  108. background-color: #2f353a;
  109. }
  110. aside .title {
  111. background: #252525;
  112. }
  113. aside a {
  114. color: #9faab1;
  115. text-shadow: 0px 1px 0px #000;
  116. }
  117. aside a.current,
  118. aside a.current .icon {
  119. color: #ffffff !important;
  120. }
  121. aside:not(.mini) a {
  122. border-bottom: 1px inset #222;
  123. border-top: 1px inset rgba(255, 255, 255, 0.1);
  124. }
  125. aside .anchor {
  126. background: #101010;
  127. color: #7a7a7a;
  128. }
  129. section.aside {
  130. box-shadow: -4px 0 8px rgba(0, 0, 0, 0.5);
  131. }
  132. section.aside.onright {
  133. box-shadow: 4px 0 8px rgba(0, 0, 0, 0.5);
  134. }
  135. @media handheld, only screen and (min-width: 768px) {
  136. section.current,
  137. section.show {
  138. box-shadow: -4px 0 8px rgba(0, 0, 0, 0.5);
  139. }
  140. section.current.onright,
  141. section.show.onright {
  142. box-shadow: 4px 0 8px rgba(0, 0, 0, 0.5);
  143. }
  144. }
  145. /* @end */
  146. /* @group .list */
  147. .list,
  148. .list li:not(.toolbar) a {
  149. color: #2a2a2a;
  150. }
  151. .list li {
  152. background: #fff;
  153. border-bottom: 1px inset #e1e1e1;
  154. }
  155. .list li:last-child {
  156. border-bottom: none;
  157. }
  158. .list li.selectable:active {
  159. background: #93d6e7;
  160. color: #1b6777;
  161. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
  162. }
  163. .list li.selectable:active small,
  164. .list li.selectable:active .onright:not(.bubble) {
  165. color: #ffffff;
  166. text-shadow: none;
  167. }
  168. .list li small,
  169. .list li .onright:not(.bubble) {
  170. color: #888;
  171. }
  172. .list.indented li {
  173. border-left: solid 1px #e1e1e1;
  174. border-right: solid 1px #e1e1e1;
  175. }
  176. .list.indented li:first-child {
  177. border-top: solid 1px #e1e1e1;
  178. }
  179. .list.indented li:last-child {
  180. border-bottom: solid 1px #e1e1e1;
  181. }
  182. .list .anchor {
  183. color: #ffffff;
  184. background: #2c8bca -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2c8bca), color-stop(100%, #154f93));
  185. border: none;
  186. }
  187. .list .tip {
  188. color: #7a7a7a;
  189. }
  190. .list .tip.theme {
  191. color: #fff;
  192. background: #2c8bca -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2c8bca), color-stop(100%, #154f93));
  193. }
  194. .list .tip.dark {
  195. background: #353b42 -webkit-gradient(linear, left top, left bottom, color-stop(0%, #353b42), color-stop(100%, #272a2d));
  196. color: #fff;
  197. text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.5);
  198. }
  199. .list .tip.dark a {
  200. color: #fff !important;
  201. }
  202. .list .toolbar {
  203. border-bottom-color: rgba(0, 0, 0, 0.2);
  204. }
  205. .list .toolbar .toolbar a {
  206. box-shadow: 1px 0px 0px #d9d9d9;
  207. }
  208. .list .toolbar .toolbar a:last-child {
  209. box-shadow: none;
  210. }
  211. .list .toolbar .toolbar a.current {
  212. background: transparent;
  213. color: #333;
  214. text-shadow: none !important;
  215. }
  216. /* @end */
  217. /* @group widgets */
  218. .splash {
  219. background: #07acd0;
  220. color: #fff;
  221. text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
  222. }
  223. .indented ul {
  224. -webkit-border-radius: 5px;
  225. -moz-border-radius: 5px;
  226. border-radius: 5px;
  227. -webkit-background-clip: padding-box;
  228. -moz-background-clip: padding;
  229. background-clip: padding-box;
  230. -webkit-border-radius: 5px;
  231. -moz-border-radius: 5px;
  232. border-radius: 5px;
  233. -webkit-background-clip: padding-box;
  234. -moz-background-clip: padding;
  235. background-clip: padding-box;
  236. }
  237. .indented li:first-child {
  238. -webkit-border-radius: 5px 5px 0px 0px;
  239. -moz-border-radius: 5px 5px 0px 0px;
  240. border-radius: 5px 5px 0px 0px;
  241. -webkit-background-clip: padding-box;
  242. -moz-background-clip: padding;
  243. background-clip: padding-box;
  244. -webkit-border-radius: 5px 5px 0px 0px;
  245. -moz-border-radius: 5px 5px 0px 0px;
  246. border-radius: 5px 5px 0px 0px;
  247. -webkit-background-clip: padding-box;
  248. -moz-background-clip: padding;
  249. background-clip: padding-box;
  250. }
  251. .indented li:last-child {
  252. -webkit-border-radius: 0px 0px 5px 5px;
  253. -moz-border-radius: 0px 0px 5px 5px;
  254. border-radius: 0px 0px 5px 5px;
  255. -webkit-background-clip: padding-box;
  256. -moz-background-clip: padding;
  257. background-clip: padding-box;
  258. -webkit-border-radius: 0px 0px 5px 5px;
  259. -moz-border-radius: 0px 0px 5px 5px;
  260. border-radius: 0px 0px 5px 5px;
  261. -webkit-background-clip: padding-box;
  262. -moz-background-clip: padding;
  263. background-clip: padding-box;
  264. box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
  265. }
  266. /* @group .button */
  267. .button {
  268. -webkit-border-radius: 3px;
  269. -moz-border-radius: 3px;
  270. border-radius: 3px;
  271. -webkit-background-clip: padding-box;
  272. -moz-background-clip: padding;
  273. background-clip: padding-box;
  274. -webkit-border-radius: 3px;
  275. -moz-border-radius: 3px;
  276. border-radius: 3px;
  277. -webkit-background-clip: padding-box;
  278. -moz-background-clip: padding;
  279. background-clip: padding-box;
  280. -webkit-box-shadow: inset 1px 0 0 rgba(0, 0, 0, 0.1), inset 0 1px 0 rgba(0, 0, 0, 0.1), inset -1px 0 0 rgba(0, 0, 0, 0.1), 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);
  281. font-weight: bold;
  282. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.3);
  283. }
  284. .button:active {
  285. -webkit-box-shadow: inset 0 10px 30px rgba(0, 0, 0, 0.2), inset 0 -2px 4px rgba(0, 0, 0, 0.3);
  286. }
  287. .button.default {
  288. background: #2c4579;
  289. }
  290. .button.default:active,
  291. .button.default.active {
  292. background: #213761;
  293. }
  294. /* @end */
  295. /* @group <form> */
  296. form,
  297. .form {
  298. font-weight: bold;
  299. }
  300. form li,
  301. .form li {
  302. min-height: 27px;
  303. }
  304. form label,
  305. .form label {
  306. color: #999;
  307. }
  308. input,
  309. textarea,
  310. select {
  311. border: 1px solid #e1e1e1;
  312. -webkit-border-radius: 3px;
  313. -moz-border-radius: 3px;
  314. border-radius: 3px;
  315. -webkit-background-clip: padding-box;
  316. -moz-background-clip: padding;
  317. background-clip: padding-box;
  318. -webkit-border-radius: 3px;
  319. -moz-border-radius: 3px;
  320. border-radius: 3px;
  321. -webkit-background-clip: padding-box;
  322. -moz-background-clip: padding;
  323. background-clip: padding-box;
  324. color: #858585;
  325. font-family: 'Roboto', Helvetica, Arial, sans-serif;
  326. box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.1);
  327. }
  328. input.underline,
  329. textarea.underline,
  330. select.underline {
  331. border: none;
  332. box-shadow: none;
  333. border-bottom: 2px solid #e1e1e1;
  334. }
  335. input:focus,
  336. textarea:focus,
  337. select:focus {
  338. color: #64b9e2;
  339. border-color: #64b9e2;
  340. }
  341. .select:after {
  342. background: #858585;
  343. color: white;
  344. border-top-right-radius: 3px;
  345. border-bottom-right-radius: 3px;
  346. }
  347. /* @group .range */
  348. input[type="checkbox"] + span,
  349. input[type="radio"] + span {
  350. color: #fff;
  351. background: #a0a0a0;
  352. -webkit-border-radius: 3px;
  353. -moz-border-radius: 3px;
  354. border-radius: 3px;
  355. -webkit-background-clip: padding-box;
  356. -moz-background-clip: padding;
  357. background-clip: padding-box;
  358. -webkit-border-radius: 3px;
  359. -moz-border-radius: 3px;
  360. border-radius: 3px;
  361. -webkit-background-clip: padding-box;
  362. -moz-background-clip: padding;
  363. background-clip: padding-box;
  364. }
  365. input[type="checkbox"] + span::before,
  366. input[type="radio"] + span::before {
  367. background: #c1c1c1;
  368. -webkit-border-radius: 3px;
  369. -moz-border-radius: 3px;
  370. border-radius: 3px;
  371. -webkit-background-clip: padding-box;
  372. -moz-background-clip: padding;
  373. background-clip: padding-box;
  374. -webkit-border-radius: 3px;
  375. -moz-border-radius: 3px;
  376. border-radius: 3px;
  377. -webkit-background-clip: padding-box;
  378. -moz-background-clip: padding;
  379. background-clip: padding-box;
  380. }
  381. input[type="checkbox"]:checked + span,
  382. input[type="radio"]:checked + span {
  383. background: #2c8bca -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2c8bca), color-stop(100%, #154f93));
  384. -webkit-border-radius: 3px;
  385. -moz-border-radius: 3px;
  386. border-radius: 3px;
  387. -webkit-background-clip: padding-box;
  388. -moz-background-clip: padding;
  389. background-clip: padding-box;
  390. -webkit-border-radius: 3px;
  391. -moz-border-radius: 3px;
  392. border-radius: 3px;
  393. -webkit-background-clip: padding-box;
  394. -moz-background-clip: padding;
  395. background-clip: padding-box;
  396. }
  397. /* @end */
  398. /* @group range */
  399. input[type="range"] {
  400. background-color: #c7c7c7;
  401. -webkit-border-radius: 3px;
  402. -moz-border-radius: 3px;
  403. border-radius: 3px;
  404. -webkit-background-clip: padding-box;
  405. -moz-background-clip: padding;
  406. background-clip: padding-box;
  407. -webkit-border-radius: 3px;
  408. -moz-border-radius: 3px;
  409. border-radius: 3px;
  410. -webkit-background-clip: padding-box;
  411. -moz-background-clip: padding;
  412. background-clip: padding-box;
  413. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  414. }
  415. input[type="range"]:active {
  416. box-shadow: none;
  417. background: #2c8bca -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2c8bca), color-stop(100%, #154f93));
  418. }
  419. input[type="range"]::-webkit-slider-thumb {
  420. box-shadow: 0 0 4px #333;
  421. background: #fff;
  422. }
  423. input[type="range"]:active::-webkit-slider-thumb {
  424. box-shadow: 0px 0px 4px #34b7dc;
  425. }
  426. /* @end */
  427. /* @group .progress */
  428. .progress .labels {
  429. font-size: 12px;
  430. font-weight: bold;
  431. line-height: 18px;
  432. color: #858585;
  433. }
  434. .progress .bar {
  435. background: #c7c7c7;
  436. box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2);
  437. -webkit-border-radius: 3px;
  438. -moz-border-radius: 3px;
  439. border-radius: 3px;
  440. -webkit-background-clip: padding-box;
  441. -moz-background-clip: padding;
  442. background-clip: padding-box;
  443. -webkit-border-radius: 3px;
  444. -moz-border-radius: 3px;
  445. border-radius: 3px;
  446. -webkit-background-clip: padding-box;
  447. -moz-background-clip: padding;
  448. background-clip: padding-box;
  449. }
  450. .progress .bar .value {
  451. background: #2c8bca -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2c8bca), color-stop(100%, #154f93));
  452. -webkit-border-radius: 3px;
  453. -moz-border-radius: 3px;
  454. border-radius: 3px;
  455. -webkit-background-clip: padding-box;
  456. -moz-background-clip: padding;
  457. background-clip: padding-box;
  458. -webkit-border-radius: 3px;
  459. -moz-border-radius: 3px;
  460. border-radius: 3px;
  461. -webkit-background-clip: padding-box;
  462. -moz-background-clip: padding;
  463. background-clip: padding-box;
  464. }
  465. .progress .bar .value .label {
  466. float: right;
  467. margin-right: 3px;
  468. font-weight: bold;
  469. color: rgba(0, 0, 0, 0.6);
  470. text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2) !important;
  471. font-size: 12px;
  472. }
  473. /* @end */
  474. /* @end */
  475. .bubble {
  476. color: #fff;
  477. -webkit-border-radius: 7px;
  478. -moz-border-radius: 7px;
  479. border-radius: 7px;
  480. -webkit-background-clip: padding-box;
  481. -moz-background-clip: padding;
  482. background-clip: padding-box;
  483. -webkit-border-radius: 7px;
  484. -moz-border-radius: 7px;
  485. border-radius: 7px;
  486. -webkit-background-clip: padding-box;
  487. -moz-background-clip: padding;
  488. background-clip: padding-box;
  489. text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.2);
  490. font-weight: bold !important;
  491. box-shadow: 0 0 6px #000;
  492. }
  493. .bubble.count {
  494. background: #2c8bca -webkit-gradient(linear, left top, left bottom, color-stop(0%, #2c8bca), color-stop(100%, #154f93));
  495. }
  496. header .bubble.count {
  497. background: #2c2c2d;
  498. }
  499. /* @end */