|
@@ -0,0 +1,294 @@
|
|
|
|
|
+/**
|
|
|
|
|
+ * Stylesheet
|
|
|
|
|
+ *
|
|
|
|
|
+ * @namespace LUNGO.Theme
|
|
|
|
|
+ * @class Default
|
|
|
|
|
+ *
|
|
|
|
|
+ * @author Javier Jimenez Villar <javi@tapquo.com> || @soyjavi
|
|
|
|
|
+ */
|
|
|
|
|
+
|
|
|
|
|
+@import "lungo.theme.default.font.css";
|
|
|
|
|
+
|
|
|
|
|
+.app {
|
|
|
|
|
+ background: #000000;
|
|
|
|
|
+ font-family: 'Roboto', Helvetica, Arial, sans-serif;
|
|
|
|
|
+}
|
|
|
|
|
+/* @group <header> & <footer> & <article> */
|
|
|
|
|
+header {
|
|
|
|
|
+ background-color: #05b8e2;
|
|
|
|
|
+ border-top: 1px solid #05bde9;
|
|
|
|
|
+ border-bottom: 1px solid #07acd0;
|
|
|
|
|
+ box-shadow: 0 1px 0 rgba(0, 0, 0, 0.1);
|
|
|
|
|
+}
|
|
|
|
|
+footer {
|
|
|
|
|
+ background: #2c2c2d -webkit-gradient(linear, left top, left bottom, color-stop(0.25, #2c2c2d), color-stop(1, #1c1c1c));
|
|
|
|
|
+ border-top: 1px inset #1c1c1c;
|
|
|
|
|
+}
|
|
|
|
|
+.title {
|
|
|
|
|
+ color: #ffffff;
|
|
|
|
|
+ text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
|
|
|
|
|
+}
|
|
|
|
|
+article {
|
|
|
|
|
+ background-color: #ededed;
|
|
|
|
|
+}
|
|
|
|
|
+article .title {
|
|
|
|
|
+ color: #797979;
|
|
|
|
|
+ text-shadow: 0px 1px 0px #fff;
|
|
|
|
|
+}
|
|
|
|
|
+/* @end */
|
|
|
|
|
+/* @group <nav> */
|
|
|
|
|
+nav a {
|
|
|
|
|
+ color: rgba(255, 255, 255, 0.5);
|
|
|
|
|
+}
|
|
|
|
|
+nav a.current, nav a.active {
|
|
|
|
|
+ color: #ffffff;
|
|
|
|
|
+}
|
|
|
|
|
+.toolbar a {
|
|
|
|
|
+ color: rgba(255, 255, 255, 0.2);
|
|
|
|
|
+}
|
|
|
|
|
+.toolbar a.current, .toolbar a.active {
|
|
|
|
|
+ background: #1c1c1c;
|
|
|
|
|
+ box-shadow: inset 0px 0px 8px #101010;
|
|
|
|
|
+ text-shadow: 0px 1px 4px #000;
|
|
|
|
|
+}
|
|
|
|
|
+.groupbar {
|
|
|
|
|
+ background: #ededed;
|
|
|
|
|
+ border-bottom: solid 1px rgba(0, 0, 0, 0.1);
|
|
|
|
|
+}
|
|
|
|
|
+.groupbar a {
|
|
|
|
|
+ color: #6e6e6e;
|
|
|
|
|
+}
|
|
|
|
|
+.groupbar a.current {
|
|
|
|
|
+ color: #6e6e6e;
|
|
|
|
|
+ border-bottom: solid 3px #05bde9;
|
|
|
|
|
+}
|
|
|
|
|
+/* @end */
|
|
|
|
|
+/* @group <aside> */
|
|
|
|
|
+aside {
|
|
|
|
|
+ background: #252525;
|
|
|
|
|
+}
|
|
|
|
|
+aside .title {
|
|
|
|
|
+ background: #101010;
|
|
|
|
|
+ border: none;
|
|
|
|
|
+}
|
|
|
|
|
+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;
|
|
|
|
|
+}
|
|
|
|
|
+section.aside {
|
|
|
|
|
+ box-shadow: -4px 0 8px rgba(0, 0, 0, 0.5);
|
|
|
|
|
+}
|
|
|
|
|
+section.aside.onright {
|
|
|
|
|
+ box-shadow: 4px 0 8px rgba(0, 0, 0, 0.5);
|
|
|
|
|
+}
|
|
|
|
|
+@media handheld, only screen and (min-width: 768px) {
|
|
|
|
|
+ section.current, section.show {
|
|
|
|
|
+ box-shadow: -4px 0 8px rgba(0, 0, 0, 0.5);
|
|
|
|
|
+ }
|
|
|
|
|
+ section.current.onright, section.show.onright {
|
|
|
|
|
+ box-shadow: 4px 0 8px rgba(0, 0, 0, 0.5);
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+/* @end */
|
|
|
|
|
+/* @group .list */
|
|
|
|
|
+.list, .list li:not(.toolbar) a {
|
|
|
|
|
+ color: #2a2a2a;
|
|
|
|
|
+}
|
|
|
|
|
+.list li {
|
|
|
|
|
+ background: #fff;
|
|
|
|
|
+ border-bottom: 1px inset #e1e1e1;
|
|
|
|
|
+}
|
|
|
|
|
+.list li:last-child {
|
|
|
|
|
+ border-bottom: none;
|
|
|
|
|
+}
|
|
|
|
|
+.list li.selectable:active {
|
|
|
|
|
+ background: #93d6e7;
|
|
|
|
|
+ color: #1b6777;
|
|
|
|
|
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
|
|
|
|
|
+}
|
|
|
|
|
+.list li.selectable:active small, .list li.selectable:active .onright:not(.bubble) {
|
|
|
|
|
+ color: #ffffff;
|
|
|
|
|
+ text-shadow: none;
|
|
|
|
|
+}
|
|
|
|
|
+.list li small, .list li .onright:not(.bubble) {
|
|
|
|
|
+ color: #888;
|
|
|
|
|
+}
|
|
|
|
|
+.list.indented li {
|
|
|
|
|
+ border-left: solid 1px #e1e1e1;
|
|
|
|
|
+ border-right: solid 1px #e1e1e1;
|
|
|
|
|
+}
|
|
|
|
|
+.list.indented li:first-child {
|
|
|
|
|
+ border-top: solid 1px #e1e1e1;
|
|
|
|
|
+}
|
|
|
|
|
+.list.indented li:last-child {
|
|
|
|
|
+ border-bottom: solid 1px #e1e1e1;
|
|
|
|
|
+}
|
|
|
|
|
+.list .anchor {
|
|
|
|
|
+ background: #93d6e7;
|
|
|
|
|
+ color: #1b6777;
|
|
|
|
|
+ text-shadow: 0 1px 0 rgba(255, 255, 255, 0.2);
|
|
|
|
|
+ border: none;
|
|
|
|
|
+}
|
|
|
|
|
+.list .tip {
|
|
|
|
|
+ color: #7a7a7a;
|
|
|
|
|
+}
|
|
|
|
|
+.list .tip.darker {
|
|
|
|
|
+ background-color: #2c2c2d;
|
|
|
|
|
+ color: #fff;
|
|
|
|
|
+ text-shadow: 0px 1px 0px #000;
|
|
|
|
|
+}
|
|
|
|
|
+.list .tip.darker a {
|
|
|
|
|
+ color: #fff !important;
|
|
|
|
|
+}
|
|
|
|
|
+.list .tip.dark {
|
|
|
|
|
+ background-color: #f4f4f4;
|
|
|
|
|
+ box-shadow: inset 0px 1px 0px #fff;
|
|
|
|
|
+ text-shadow: 0px 1px 0px #fff;
|
|
|
|
|
+}
|
|
|
|
|
+.list .toolbar {
|
|
|
|
|
+ border-bottom-color: rgba(0, 0, 0, 0.2);
|
|
|
|
|
+}
|
|
|
|
|
+.list .toolbar .toolbar a {
|
|
|
|
|
+ box-shadow: 1px 0px 0px #d9d9d9;
|
|
|
|
|
+}
|
|
|
|
|
+.list .toolbar .toolbar a:last-child {
|
|
|
|
|
+ box-shadow: none;
|
|
|
|
|
+}
|
|
|
|
|
+.list .toolbar .toolbar a.current {
|
|
|
|
|
+ background: transparent;
|
|
|
|
|
+ color: #333;
|
|
|
|
|
+ text-shadow: none !important;
|
|
|
|
|
+}
|
|
|
|
|
+/* @end */
|
|
|
|
|
+/* @group widgets */
|
|
|
|
|
+.splash {
|
|
|
|
|
+ background: #07acd0;
|
|
|
|
|
+ color: #fff;
|
|
|
|
|
+ text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.2);
|
|
|
|
|
+}
|
|
|
|
|
+/* @group .button */
|
|
|
|
|
+.button {
|
|
|
|
|
+ border-bottom: 1px inset rgba(0, 0, 0, 0.2);
|
|
|
|
|
+ -webkit-border-radius: 2px;
|
|
|
|
|
+ -moz-border-radius: 2px;
|
|
|
|
|
+ border-radius: 2px;
|
|
|
|
|
+ -webkit-background-clip: padding-box;
|
|
|
|
|
+ -moz-background-clip: padding;
|
|
|
|
|
+ background-clip: padding-box;
|
|
|
|
|
+ -webkit-box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2), 0 1px 3px rgba(0, 0, 0, 0.2);
|
|
|
|
|
+}
|
|
|
|
|
+.button:active, .button.active {
|
|
|
|
|
+ -webkit-box-shadow: inset 0 1px 0 rgba(0, 0, 0, 0.1), inset 0 0 2px rgba(0, 0, 0, 0.2);
|
|
|
|
|
+ border-bottom-color: rgba(0, 0, 0, 0);
|
|
|
|
|
+}
|
|
|
|
|
+header .button:active,
|
|
|
|
|
+footer .button:active,
|
|
|
|
|
+header .button:active,
|
|
|
|
|
+footer .button:active {
|
|
|
|
|
+ height: 29px;
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+ top: 1px;
|
|
|
|
|
+}
|
|
|
|
|
+.button.default {
|
|
|
|
|
+ background: #5a5a5a;
|
|
|
|
|
+}
|
|
|
|
|
+.button.default:active, .button.default.active {
|
|
|
|
|
+ background: #4b4b4b;
|
|
|
|
|
+}
|
|
|
|
|
+/* @end */
|
|
|
|
|
+/* @group <inputs> */
|
|
|
|
|
+input, textarea, select {
|
|
|
|
|
+ border: 1px solid #e1e1e1;
|
|
|
|
|
+ color: #858585;
|
|
|
|
|
+ font-family: 'Roboto', Helvetica, Arial, sans-serif;
|
|
|
|
|
+}
|
|
|
|
|
+input:focus, textarea:focus, select:focus {
|
|
|
|
|
+ border-color: #05b8e2;
|
|
|
|
|
+ color: #05b8e2;
|
|
|
|
|
+}
|
|
|
|
|
+label {
|
|
|
|
|
+ color: #05b8e2;
|
|
|
|
|
+ text-transform: uppercase;
|
|
|
|
|
+ font-weight: bold;
|
|
|
|
|
+}
|
|
|
|
|
+.select:after {
|
|
|
|
|
+ background: #858585;
|
|
|
|
|
+ color: white;
|
|
|
|
|
+}
|
|
|
|
|
+input[type="checkbox"] + span, input[type="radio"] + span {
|
|
|
|
|
+ color: #fff;
|
|
|
|
|
+ background: #a0a0a0;
|
|
|
|
|
+}
|
|
|
|
|
+input[type="checkbox"] + span::before, input[type="radio"] + span::before {
|
|
|
|
|
+ background: #c1c1c1;
|
|
|
|
|
+}
|
|
|
|
|
+input[type="checkbox"]:checked + span, input[type="radio"]:checked + span {
|
|
|
|
|
+ background: #07acd0;
|
|
|
|
|
+}
|
|
|
|
|
+/* @group range */
|
|
|
|
|
+input[type="range"] {
|
|
|
|
|
+ background-color: #c7c7c7;
|
|
|
|
|
+}
|
|
|
|
|
+input[type="range"]:active {
|
|
|
|
|
+ background-color: #34b7dc;
|
|
|
|
|
+}
|
|
|
|
|
+input[type="range"]::-webkit-slider-thumb {
|
|
|
|
|
+ border: solid 7px rgba(255, 255, 255, 0.5);
|
|
|
|
|
+ background: #34b7dc;
|
|
|
|
|
+}
|
|
|
|
|
+input[type="range"]:active::-webkit-slider-thumb {
|
|
|
|
|
+ box-shadow: 0px 0px 4px #34b7dc;
|
|
|
|
|
+}
|
|
|
|
|
+/* @end */
|
|
|
|
|
+/* @group .progress */
|
|
|
|
|
+.progress .labels {
|
|
|
|
|
+ font-size: 12px;
|
|
|
|
|
+ font-weight: bold;
|
|
|
|
|
+ line-height: 18px;
|
|
|
|
|
+ color: #858585;
|
|
|
|
|
+}
|
|
|
|
|
+.progress .bar {
|
|
|
|
|
+ background: #c7c7c7;
|
|
|
|
|
+}
|
|
|
|
|
+.progress .bar .value {
|
|
|
|
|
+ background: #34b7dc;
|
|
|
|
|
+}
|
|
|
|
|
+.progress .bar .value .glow {
|
|
|
|
|
+ background-color: rgba(255, 255, 255, 0.25);
|
|
|
|
|
+ box-shadow: 0px 0px 3px #34b7dc;
|
|
|
|
|
+}
|
|
|
|
|
+/* @end */
|
|
|
|
|
+/* @end */
|
|
|
|
|
+.bubble {
|
|
|
|
|
+ color: #fff;
|
|
|
|
|
+ -webkit-border-radius: 2px;
|
|
|
|
|
+ -moz-border-radius: 2px;
|
|
|
|
|
+ border-radius: 2px;
|
|
|
|
|
+ -webkit-background-clip: padding-box;
|
|
|
|
|
+ -moz-background-clip: padding;
|
|
|
|
|
+ background-clip: padding-box;
|
|
|
|
|
+ text-shadow: none;
|
|
|
|
|
+ font-weight: bold !important;
|
|
|
|
|
+}
|
|
|
|
|
+header .bubble.count {
|
|
|
|
|
+ background: #2c2c2d;
|
|
|
|
|
+}
|
|
|
|
|
+.bubble.count {
|
|
|
|
|
+ background: #05b8e2;
|
|
|
|
|
+}
|
|
|
|
|
+/* @end */
|