lungo.theme.default.css 3.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166
  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: #000000;
  11. }
  12. /* @group <header> & <footer> & <article> */
  13. header {
  14. background: #019d5e -webkit-gradient(linear, left top, left bottom, color-stop(0.1, #019d5e), color-stop(1, #006b41));
  15. border-top: 1px solid #6dc0a1;
  16. border-bottom: 1px solid #063322;
  17. }
  18. footer {
  19. background: #2c2c2d -webkit-gradient(linear, left top, left bottom, color-stop(0.25, #2c2c2d), color-stop(1, #1c1d1d));
  20. border-top: 1px inset #1c1c1c;
  21. }
  22. .title {
  23. color: #fff;
  24. text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.5);
  25. }
  26. article {
  27. background-color: #e2e2e2;
  28. }
  29. article .title {
  30. color: #797979;
  31. text-shadow: 0px 1px 0px #fff;
  32. }
  33. /* @end */
  34. /* @group <nav> */
  35. nav a {
  36. color: rgba(0, 0, 0, 0.5);
  37. }
  38. nav a.current {
  39. color: #fff;
  40. }
  41. .toolbar a.current {
  42. background: #1c1c1c;
  43. box-shadow: inset 0px 0px 8px #101010;
  44. text-shadow: 0px 1px 4px #000;
  45. }
  46. /* @end */
  47. /* @group <aside> */
  48. aside {
  49. background: #252525;
  50. }
  51. aside a {
  52. color: #fff;
  53. text-shadow: 0px 1px 0px #000;
  54. border-bottom: 1px inset #101010;
  55. border-top: 1px inset #868686;
  56. }
  57. aside a.current {
  58. background: #1c1c1c;
  59. box-shadow: inset 0px 0px 8px #101010;
  60. border-top: 1px inset #1c1c1c;
  61. }
  62. aside a .icon {
  63. text-shadow: none;
  64. color: #7a7a7a;
  65. }
  66. aside .anchor {
  67. background: #101010;
  68. color: #7a7a7a;
  69. }
  70. aside ~ article {
  71. box-shadow: -1px 0px 4px #000000;
  72. }
  73. /* @end */
  74. /* @group .list */
  75. .list, .list li:not(.toolbar) a {
  76. color: #333;
  77. }
  78. .list li {
  79. background: #fff;
  80. border-bottom: 1px inset #e6e6e6;
  81. }
  82. .list li:last-child {
  83. border-bottom: none;
  84. }
  85. .indented ul {
  86. border: 1px solid #c5c5c5;
  87. }
  88. .list .darker {
  89. background-color: #2c2c2d;
  90. color: #fff;
  91. text-shadow: 0px 1px 0px #000;
  92. }
  93. .list li.darker a {
  94. color: #fff !important;
  95. }
  96. .list .dark {
  97. background-color: #f4f4f4;
  98. box-shadow: inset 0px 1px 0px #fff;
  99. text-shadow: 0px 1px 0px #fff;
  100. }
  101. .list small, .list .onright:not(.bubble) {
  102. color: #999;
  103. }
  104. .list .tip {
  105. color: #7a7a7a;
  106. }
  107. .list li.anchor {
  108. background: #f4f4f4;
  109. color: #222;
  110. }
  111. .list .toolbar {
  112. border-bottom-color: rgba(0, 0, 0, 0.2);
  113. }
  114. .list .arrow:before {
  115. color: #a9a9a9;
  116. }
  117. .list .toolbar a {
  118. box-shadow: 1px 0px 0px #d9d9d9;
  119. }
  120. .list .toolbar a:last-child {
  121. box-shadow: none;
  122. }
  123. .list .toolbar a.current {
  124. background: transparent;
  125. color: #333;
  126. text-shadow: none !important;
  127. }
  128. /* @end */
  129. /* @group widgets */
  130. .splash {
  131. background: #019d5e -webkit-gradient(linear, left top, left bottom, color-stop(0.1, #019d5e), color-stop(1, #006b41));
  132. color: #fff;
  133. text-shadow: 0px 1px 1px #000;
  134. }
  135. /* @group <inputs> */
  136. input, textarea, select {
  137. border: 1px solid #c5c5c5;
  138. background: #ffffff -webkit-gradient(linear, left top, left bottom, color-stop(0, #eeeeee), color-stop(0.25, #ffffff));
  139. }
  140. .rounded input, textarea, select {
  141. -webkit-border-radius: 2px;
  142. border-radius: 2px;
  143. -webkit-background-clip: padding-box;
  144. background-clip: padding-box;
  145. }
  146. input:focus, textarea:focus, select:focus {
  147. border: 1px solid #058cf5;
  148. -webkit-box-shadow: 0px 0px 4px 0px #058cf5;
  149. box-shadow: 0px 0px 4px 0px #058cf5;
  150. background: #e8fefe;
  151. }
  152. .select:after {
  153. background: #ccc;
  154. color: white;
  155. }
  156. /* @end */
  157. .bubble {
  158. color: #fff;
  159. text-shadow: none;
  160. box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.7);
  161. }
  162. .bubble.count {
  163. background: #e33100;
  164. }
  165. /* @end */