|
@@ -1,6 +1,6 @@
|
|
|
-/**
|
|
|
|
|
|
|
+/**
|
|
|
* Stylesheet
|
|
* Stylesheet
|
|
|
- *
|
|
|
|
|
|
|
+ *
|
|
|
* @namespace LUNGO.Theme
|
|
* @namespace LUNGO.Theme
|
|
|
* @class Default
|
|
* @class Default
|
|
|
*
|
|
*
|
|
@@ -8,30 +8,32 @@
|
|
|
*/
|
|
*/
|
|
|
|
|
|
|
|
@import "mixins.less";
|
|
@import "mixins.less";
|
|
|
|
|
+@import "Lungo.theme.pro.font.css";
|
|
|
|
|
|
|
|
-@theme: #91bd09;
|
|
|
|
|
- @theme-light: #B7DE3F;
|
|
|
|
|
- @theme-dark: #758E29;
|
|
|
|
|
- @theme-highlight: #C1DE6A;
|
|
|
|
|
- @theme-highlight-color: #5D7B03;
|
|
|
|
|
|
|
+@theme: #05b8e2;
|
|
|
|
|
+ @theme-light: #05bde9;
|
|
|
|
|
+ @theme-dark: #07acd0;
|
|
|
|
|
+ @theme-highlight: #93d6e7;
|
|
|
|
|
+ @theme-highlight-color: #1b6777;
|
|
|
@theme-highlight-text-shadow: 0 1px 0 rgba(255,255,255,0.2);
|
|
@theme-highlight-text-shadow: 0 1px 0 rgba(255,255,255,0.2);
|
|
|
@theme-secondary: #2c2c2d;
|
|
@theme-secondary: #2c2c2d;
|
|
|
@theme-secondary-dark: #1c1c1c;
|
|
@theme-secondary-dark: #1c1c1c;
|
|
|
|
|
|
|
|
.app {
|
|
.app {
|
|
|
background: @black;
|
|
background: @black;
|
|
|
|
|
+ font-family: 'Roboto', Helvetica, Arial, sans-serif;
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
/* @group <header> & <footer> & <article> */
|
|
/* @group <header> & <footer> & <article> */
|
|
|
header {
|
|
header {
|
|
|
background-color: @theme;
|
|
background-color: @theme;
|
|
|
- border-top: 1px solid @theme-light;
|
|
|
|
|
|
|
+ border-top: 1px solid @theme-light;
|
|
|
border-bottom: 1px solid @theme-dark;
|
|
border-bottom: 1px solid @theme-dark;
|
|
|
- box-shadow: 0 1px 0 rgba(0,0,0,0.2);
|
|
|
|
|
|
|
+ box-shadow: 0 1px 0 rgba(0,0,0,0.1);
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
footer {
|
|
footer {
|
|
|
- background: @theme-secondary -webkit-gradient(linear, left top, left bottom, color-stop(0.25, @theme-secondary), color-stop(1, @theme-secondary-dark));
|
|
|
|
|
|
|
+ background: @theme-secondary -webkit-gradient(linear, left top, left bottom, color-stop(0.25, @theme-secondary), color-stop(1, @theme-secondary-dark));
|
|
|
border-top: 1px inset @theme-secondary-dark;
|
|
border-top: 1px inset @theme-secondary-dark;
|
|
|
}
|
|
}
|
|
|
|
|
|
|
@@ -40,9 +42,8 @@ footer {
|
|
|
text-shadow: 0px 1px 0px rgba(0,0,0,0.2);
|
|
text-shadow: 0px 1px 0px rgba(0,0,0,0.2);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-article {
|
|
|
|
|
- background-color: #ededed;
|
|
|
|
|
-
|
|
|
|
|
|
|
+article {
|
|
|
|
|
+ background-color: #ededed;
|
|
|
& .title {
|
|
& .title {
|
|
|
color: #797979;
|
|
color: #797979;
|
|
|
text-shadow: 0px 1px 0px #fff;
|
|
text-shadow: 0px 1px 0px #fff;
|
|
@@ -51,110 +52,143 @@ article {
|
|
|
/* @end */
|
|
/* @end */
|
|
|
|
|
|
|
|
/* @group <nav> */
|
|
/* @group <nav> */
|
|
|
-nav a {
|
|
|
|
|
- color: rgba(255,255,255,0.5);
|
|
|
|
|
|
|
+nav a {
|
|
|
|
|
+ color: rgba(255,255,255,0.5);
|
|
|
|
|
|
|
|
- &.current, &.active { color: @white; }
|
|
|
|
|
|
|
+ &.current, &.active { color: @white; }
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
-.toolbar a {
|
|
|
|
|
- color: rgba(255,255,255,0.2);
|
|
|
|
|
-
|
|
|
|
|
|
|
+.toolbar a {
|
|
|
|
|
+ color: rgba(255,255,255,0.2);
|
|
|
&.current, &.active {
|
|
&.current, &.active {
|
|
|
background: #1c1c1c;
|
|
background: #1c1c1c;
|
|
|
box-shadow: inset 0px 0px 8px #101010;
|
|
box-shadow: inset 0px 0px 8px #101010;
|
|
|
text-shadow: 0px 1px 4px #000;
|
|
text-shadow: 0px 1px 4px #000;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+.groupbar {
|
|
|
|
|
+ background: #ededed;
|
|
|
|
|
+ border-bottom: solid 1px rgba(0,0,0,0.1);
|
|
|
|
|
+
|
|
|
|
|
+ & a {
|
|
|
|
|
+ color: #6e6e6e;
|
|
|
|
|
+ &.current {
|
|
|
|
|
+ color: #6e6e6e;
|
|
|
|
|
+ border-bottom: solid 3px @theme-light;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
/* @end */
|
|
/* @end */
|
|
|
|
|
|
|
|
/* @group <aside> */
|
|
/* @group <aside> */
|
|
|
aside {
|
|
aside {
|
|
|
background: #252525;
|
|
background: #252525;
|
|
|
- box-shadow: inset -1px 0 4px rgba(0,0,0,0.2);
|
|
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
|
|
+ & .title {
|
|
|
|
|
+ background: #101010;
|
|
|
|
|
+ border: none;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
& a {
|
|
& a {
|
|
|
color: #fff;
|
|
color: #fff;
|
|
|
- text-shadow: 0px 1px 0px #000;
|
|
|
|
|
|
|
+ text-shadow: 0px 1px 0px #000;
|
|
|
border-bottom: 1px inset #101010;
|
|
border-bottom: 1px inset #101010;
|
|
|
border-top: 1px inset #868686;
|
|
border-top: 1px inset #868686;
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
&.current {
|
|
&.current {
|
|
|
background: #1c1c1c;
|
|
background: #1c1c1c;
|
|
|
box-shadow: inset 0px 0px 8px #101010;
|
|
box-shadow: inset 0px 0px 8px #101010;
|
|
|
border-top: 1px inset #1c1c1c;
|
|
border-top: 1px inset #1c1c1c;
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
& .icon {
|
|
& .icon {
|
|
|
- text-shadow: none;
|
|
|
|
|
|
|
+ text-shadow: none;
|
|
|
color: #7a7a7a;
|
|
color: #7a7a7a;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
& .anchor {
|
|
& .anchor {
|
|
|
background: #101010;
|
|
background: #101010;
|
|
|
color: #7a7a7a;
|
|
color: #7a7a7a;
|
|
|
}
|
|
}
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+section.aside {
|
|
|
|
|
+ box-shadow: -4px 0 8px rgba(0,0,0,0.5);
|
|
|
|
|
+ &.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);
|
|
|
|
|
+ &.onright { box-shadow: 4px 0 8px rgba(0,0,0,0.5); }
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+
|
|
|
/* @end */
|
|
/* @end */
|
|
|
|
|
|
|
|
/* @group .list */
|
|
/* @group .list */
|
|
|
|
|
+.list, .list li:not(.toolbar) a { color: #2a2a2a; }
|
|
|
|
|
+
|
|
|
.list {
|
|
.list {
|
|
|
- &, & li:not(.toolbar) a {
|
|
|
|
|
- color: #2a2a2a;
|
|
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
& li {
|
|
& li {
|
|
|
background: #fff;
|
|
background: #fff;
|
|
|
border-bottom: 1px inset #e1e1e1;
|
|
border-bottom: 1px inset #e1e1e1;
|
|
|
|
|
|
|
|
&:last-child { border-bottom: none; }
|
|
&:last-child { border-bottom: none; }
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
&.selectable:active {
|
|
&.selectable:active {
|
|
|
background: @theme-highlight;
|
|
background: @theme-highlight;
|
|
|
color: @theme-highlight-color;
|
|
color: @theme-highlight-color;
|
|
|
text-shadow: @theme-highlight-text-shadow;
|
|
text-shadow: @theme-highlight-text-shadow;
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
& small, & .onright:not(.bubble) {
|
|
& small, & .onright:not(.bubble) {
|
|
|
color: @white;
|
|
color: @white;
|
|
|
text-shadow: none;
|
|
text-shadow: none;
|
|
|
- }
|
|
|
|
|
|
|
+ }
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
& small, & .onright:not(.bubble) { color: #888; }
|
|
& small, & .onright:not(.bubble) { color: #888; }
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ &.indented li {
|
|
|
|
|
+ border-left: solid 1px #e1e1e1;
|
|
|
|
|
+ border-right: solid 1px #e1e1e1;
|
|
|
|
|
+
|
|
|
|
|
+ &:first-child { border-top: solid 1px #e1e1e1; }
|
|
|
|
|
+ &:last-child { border-bottom: solid 1px #e1e1e1; }
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
- & .indented ul { border: 1px solid #e1e1e1; }
|
|
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
& .anchor {
|
|
& .anchor {
|
|
|
background: @theme-highlight;
|
|
background: @theme-highlight;
|
|
|
color: @theme-highlight-color;
|
|
color: @theme-highlight-color;
|
|
|
text-shadow: @theme-highlight-text-shadow;
|
|
text-shadow: @theme-highlight-text-shadow;
|
|
|
border: none;
|
|
border: none;
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
- & .tip { color: #7a7a7a;
|
|
|
|
|
|
|
+
|
|
|
|
|
+ & .tip { color: #7a7a7a;
|
|
|
&.darker {
|
|
&.darker {
|
|
|
- background-color: #2c2c2d;
|
|
|
|
|
|
|
+ background-color: #2c2c2d;
|
|
|
color: #fff;
|
|
color: #fff;
|
|
|
text-shadow: 0px 1px 0px #000;
|
|
text-shadow: 0px 1px 0px #000;
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
& a { color: #fff !important; }
|
|
& a { color: #fff !important; }
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
&.dark {
|
|
&.dark {
|
|
|
background-color: #f4f4f4;
|
|
background-color: #f4f4f4;
|
|
|
- box-shadow: inset 0px 1px 0px #fff;
|
|
|
|
|
|
|
+ box-shadow: inset 0px 1px 0px #fff;
|
|
|
text-shadow: 0px 1px 0px #fff;
|
|
text-shadow: 0px 1px 0px #fff;
|
|
|
}
|
|
}
|
|
|
- }
|
|
|
|
|
-
|
|
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
& .toolbar {
|
|
& .toolbar {
|
|
|
border-bottom-color: rgba(0,0,0,0.2);
|
|
border-bottom-color: rgba(0,0,0,0.2);
|
|
|
-
|
|
|
|
|
- & .toolbar a {
|
|
|
|
|
- box-shadow: 1px 0px 0px #d9d9d9;
|
|
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
|
|
+ & .toolbar a {
|
|
|
|
|
+ box-shadow: 1px 0px 0px #d9d9d9;
|
|
|
|
|
+
|
|
|
&:last-child { box-shadow: none; }
|
|
&:last-child { box-shadow: none; }
|
|
|
&.current {
|
|
&.current {
|
|
|
background: transparent;
|
|
background: transparent;
|
|
@@ -168,18 +202,19 @@ aside {
|
|
|
/* @end */
|
|
/* @end */
|
|
|
|
|
|
|
|
/* @group widgets */
|
|
/* @group widgets */
|
|
|
-.splash {
|
|
|
|
|
- background: @theme;
|
|
|
|
|
- color: #fff;
|
|
|
|
|
|
|
+.splash {
|
|
|
|
|
+ background: @theme-dark;
|
|
|
|
|
+ color: #fff;
|
|
|
text-shadow: 0px 1px 0px rgba(0,0,0,0.2);
|
|
text-shadow: 0px 1px 0px rgba(0,0,0,0.2);
|
|
|
}
|
|
}
|
|
|
|
|
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
/* @group .button */
|
|
/* @group .button */
|
|
|
.button {
|
|
.button {
|
|
|
border-bottom: 1px inset rgba(0,0,0,0.2);
|
|
border-bottom: 1px inset rgba(0,0,0,0.2);
|
|
|
- .border-radius(1px);
|
|
|
|
|
|
|
+ .border-radius(2px);
|
|
|
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 3px rgba(0,0,0,0.2);
|
|
-webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,0.2), 0 1px 3px rgba(0,0,0,0.2);
|
|
|
- font-weight: bold;
|
|
|
|
|
|
|
|
|
|
&:active, &.active {
|
|
&:active, &.active {
|
|
|
-webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.1), inset 0 0 2px rgba(0,0,0,0.2);
|
|
-webkit-box-shadow: inset 0 1px 0 rgba(0,0,0,0.1), inset 0 0 2px rgba(0,0,0,0.2);
|
|
@@ -206,8 +241,8 @@ input, textarea, select {
|
|
|
color: #858585;
|
|
color: #858585;
|
|
|
font-family: 'Roboto', Helvetica, Arial, sans-serif;
|
|
font-family: 'Roboto', Helvetica, Arial, sans-serif;
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
-input:focus, textarea:focus, select:focus {
|
|
|
|
|
|
|
+
|
|
|
|
|
+input:focus, textarea:focus, select:focus {
|
|
|
border-color: @theme;
|
|
border-color: @theme;
|
|
|
color: @theme;
|
|
color: @theme;
|
|
|
}
|
|
}
|
|
@@ -217,7 +252,7 @@ label {
|
|
|
text-transform: uppercase;
|
|
text-transform: uppercase;
|
|
|
font-weight: bold;
|
|
font-weight: bold;
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
|
|
+
|
|
|
.select:after {
|
|
.select:after {
|
|
|
background: #858585;
|
|
background: #858585;
|
|
|
color: white;
|
|
color: white;
|
|
@@ -227,15 +262,56 @@ input[type="checkbox"] + span, input[type="radio"] + span {
|
|
|
color: #fff;
|
|
color: #fff;
|
|
|
background: #a0a0a0;
|
|
background: #a0a0a0;
|
|
|
}
|
|
}
|
|
|
- input[type="checkbox"] + span::before,
|
|
|
|
|
|
|
+ input[type="checkbox"] + span::before,
|
|
|
input[type="radio"] + span::before {
|
|
input[type="radio"] + span::before {
|
|
|
background: #c1c1c1;
|
|
background: #c1c1c1;
|
|
|
}
|
|
}
|
|
|
-
|
|
|
|
|
- input[type="checkbox"]:checked + span,
|
|
|
|
|
|
|
+
|
|
|
|
|
+ input[type="checkbox"]:checked + span,
|
|
|
input[type="radio"]:checked + span {
|
|
input[type="radio"]:checked + span {
|
|
|
background: @theme-dark;
|
|
background: @theme-dark;
|
|
|
}
|
|
}
|
|
|
|
|
+
|
|
|
|
|
+/* @group range */
|
|
|
|
|
+input[type="range"] {
|
|
|
|
|
+ background-color: #c7c7c7;
|
|
|
|
|
+
|
|
|
|
|
+ &:active { background-color: #34b7dc; }
|
|
|
|
|
+ &::-webkit-slider-thumb {
|
|
|
|
|
+ border: solid 7px rgba(255,255,255, 0.5);
|
|
|
|
|
+ background: #34b7dc;
|
|
|
|
|
+ }
|
|
|
|
|
+ &: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;
|
|
|
|
|
+ }
|
|
|
|
|
+
|
|
|
|
|
+ & .bar {
|
|
|
|
|
+ background: #c7c7c7;
|
|
|
|
|
+
|
|
|
|
|
+ & .value {
|
|
|
|
|
+ background: #34b7dc;
|
|
|
|
|
+
|
|
|
|
|
+ & .glow {
|
|
|
|
|
+ background-color: rgba(255,255,255,0.25);
|
|
|
|
|
+ box-shadow: 0px 0px 3px #34b7dc;
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+ }
|
|
|
|
|
+}
|
|
|
|
|
+/* @end */
|
|
|
|
|
+
|
|
|
|
|
+
|
|
|
/* @end */
|
|
/* @end */
|
|
|
|
|
|
|
|
.bubble {
|
|
.bubble {
|
|
@@ -243,7 +319,7 @@ input[type="checkbox"] + span, input[type="radio"] + span {
|
|
|
.border-radius(2px);
|
|
.border-radius(2px);
|
|
|
text-shadow: none;
|
|
text-shadow: none;
|
|
|
font-weight: bold !important;
|
|
font-weight: bold !important;
|
|
|
-}
|
|
|
|
|
|
|
+}
|
|
|
header .bubble.count {background: @theme-secondary;}
|
|
header .bubble.count {background: @theme-secondary;}
|
|
|
.bubble.count { background: @theme; }
|
|
.bubble.count { background: @theme; }
|
|
|
/* @end */
|
|
/* @end */
|