| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- /**
- * Stylesheet
- *
- * @namespace LUNGO.Theme
- * @class Default
- *
- * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
- */
- .app {
- background: #000000;
- }
- /* @group <header> & <footer> & <article> */
- header {
- background: #019d5e -webkit-gradient(linear, left top, left bottom, color-stop(0.1, #019d5e), color-stop(1, #006b41));
- border-top: 1px solid #6dc0a1;
- border-bottom: 1px solid #063322;
- }
- footer {
- background: #2c2c2d -webkit-gradient(linear, left top, left bottom, color-stop(0.25, #2c2c2d), color-stop(1, #1c1d1d));
- border-top: 1px inset #1c1c1c;
- }
- .title {
- color: #fff;
- text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.5);
- }
- article {
- background-color: #e2e2e2;
- }
- article .title {
- color: #797979;
- text-shadow: 0px 1px 0px #fff;
- }
- /* @end */
- /* @group <nav> */
- nav a {
- color: rgba(0, 0, 0, 0.5);
- }
- nav a.current {
- color: #fff;
- }
- .toolbar a.current {
- background: #1c1c1c;
- box-shadow: inset 0px 0px 8px #101010;
- text-shadow: 0px 1px 4px #000;
- }
- /* @end */
- /* @group <aside> */
- aside {
- background: #252525;
- }
- aside a {
- color: #fff;
- text-shadow: 0px 1px 0px #000;
- border-bottom: 1px inset #101010;
- border-top: 1px inset #868686;
- }
- aside a.current {
- background: #1c1c1c;
- box-shadow: inset 0px 0px 8px #101010;
- border-top: 1px inset #1c1c1c;
- }
- aside a .icon {
- text-shadow: none;
- color: #7a7a7a;
- }
- aside .anchor {
- background: #101010;
- color: #7a7a7a;
- }
- aside ~ article {
- box-shadow: -1px 0px 4px #000000;
- }
- /* @end */
- /* @group .list */
- .list, .list li:not(.toolbar) a {
- color: #333;
- }
- .list li {
- background: #fff;
- border-bottom: 1px inset #e6e6e6;
- }
- .list li:last-child {
- border-bottom: none;
- }
- .indented ul {
- border: 1px solid #c5c5c5;
- }
- .list .darker {
- background-color: #2c2c2d;
- color: #fff;
- text-shadow: 0px 1px 0px #000;
- }
- .list li.darker a {
- color: #fff !important;
- }
- .list .dark {
- background-color: #f4f4f4;
- box-shadow: inset 0px 1px 0px #fff;
- text-shadow: 0px 1px 0px #fff;
- }
- .list small, .list .onright:not(.bubble) {
- color: #999;
- }
- .list .tip {
- color: #7a7a7a;
- }
- .list li.anchor {
- background: #f4f4f4;
- color: #222;
- }
- .list .toolbar {
- border-bottom-color: rgba(0, 0, 0, 0.2);
- }
- .list .arrow:before {
- color: #a9a9a9;
- }
- .list .toolbar a {
- box-shadow: 1px 0px 0px #d9d9d9;
- }
- .list .toolbar a:last-child {
- box-shadow: none;
- }
- .list .toolbar a.current {
- background: transparent;
- color: #333;
- text-shadow: none !important;
- }
- /* @end */
- /* @group widgets */
- .splash {
- background: #019d5e -webkit-gradient(linear, left top, left bottom, color-stop(0.1, #019d5e), color-stop(1, #006b41));
- color: #fff;
- text-shadow: 0px 1px 1px #000;
- }
- /* @group <inputs> */
- input, textarea, select {
- border: 1px solid #c5c5c5;
- background: #ffffff -webkit-gradient(linear, left top, left bottom, color-stop(0, #eeeeee), color-stop(0.25, #ffffff));
- }
- .rounded input, textarea, select {
- -webkit-border-radius: 2px;
- border-radius: 2px;
- -webkit-background-clip: padding-box;
- background-clip: padding-box;
- }
- input:focus, textarea:focus, select:focus {
- border: 1px solid #058cf5;
- -webkit-box-shadow: 0px 0px 4px 0px #058cf5;
- box-shadow: 0px 0px 4px 0px #058cf5;
- background: #e8fefe;
- }
- .select:after {
- background: #ccc;
- color: white;
- }
- /* @end */
- .bubble {
- color: #fff;
- text-shadow: none;
- box-shadow: inset 0px 0px 2px rgba(0, 0, 0, 0.7);
- }
- .bubble.count {
- background: #e33100;
- }
- /* @end */
|