504 lines
12 KiB
CSS
504 lines
12 KiB
CSS
/*
|
|
Created on : Jun 3, 2015, 9:33:11 AM
|
|
Author : Fornax
|
|
*/
|
|
|
|
:root {
|
|
--highlight_border: inset 0px 0px 5px 1px var(--highlight_color), 0px 0px 1px 0px var(--highlight_color);
|
|
}
|
|
|
|
/* Fonts */
|
|
|
|
@font-face {
|
|
font-family: 'Ubuntu';
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-display: fallback;
|
|
text-rendering: optimizeLegibility;
|
|
src:
|
|
local('Ubuntu'),
|
|
local('Ubuntu Regular'),
|
|
local('Ubuntu, Regular'),
|
|
local('Ubuntu-Regular'),
|
|
url(/res/misc/Ubuntu-R.ttf) format('truetype');
|
|
}
|
|
@font-face {
|
|
font-family: 'Lato Thin';
|
|
font-display: fallback;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
text-rendering: optimizeLegibility;
|
|
src:
|
|
local('Lato Thin'),
|
|
local('Lato, Thin'),
|
|
local('Lato-Thin'),
|
|
local('Lato Hairline'),
|
|
local('Lato, Hairline'),
|
|
local('Lato-Hairline'),
|
|
url(/res/misc/LatoLatin-Thin.ttf) format('truetype');
|
|
}
|
|
@font-face {
|
|
font-family: 'Lato';
|
|
font-display: fallback;
|
|
font-style: normal;
|
|
font-weight: normal;
|
|
text-rendering: optimizeLegibility;
|
|
src:
|
|
local('Lato Regular'),
|
|
local('Lato, Regular'),
|
|
local('Lato-Regular'),
|
|
url(/res/misc/Lato-Regular.ttf) format('truetype');
|
|
}
|
|
|
|
/* Page rendering configuration */
|
|
|
|
html{height: 100%;}
|
|
|
|
body{
|
|
background-color: #0d0d0d; /* Fallback */
|
|
background-color: var(--body_color);
|
|
background-repeat: repeat;
|
|
font-family: 'Ubuntu';
|
|
margin: 0;
|
|
line-height: 1.5em;
|
|
overflow-x: hidden;
|
|
color: #bfbfbf; /* Fallback */
|
|
color: var(--text_color);
|
|
box-sizing: border-box;
|
|
padding: 0;
|
|
}
|
|
|
|
/* Page layout elements */
|
|
|
|
.page_wrapper {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.button_toggle_navigation {
|
|
position: absolute;
|
|
z-index: 300;
|
|
top: 0;
|
|
left: 0;
|
|
padding: 10px 20px 15px 10px;
|
|
font-size: 2em;
|
|
margin: 0;
|
|
background: var(--input_color);
|
|
border-radius: 0;
|
|
border-bottom-right-radius: 90%;
|
|
box-shadow: 2px 2px 8px -3px var(--shadow_color);
|
|
}
|
|
.page_wrapper > .page_navigation {
|
|
position: absolute;
|
|
z-index: 100;
|
|
width: 250px;
|
|
float: left;
|
|
background-color: var(--layer_1_color);
|
|
left: 0;
|
|
bottom: 0;
|
|
top: 0;
|
|
padding: 20px 0 0.5em 0;
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
text-align: left;
|
|
box-shadow: inset -10px 0px 10px -10px var(--shadow_color);
|
|
transition: left 0.5s;
|
|
}
|
|
.page_wrapper > .page_body {
|
|
position: absolute;
|
|
z-index: 200;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 250px;
|
|
min-width: 300px;
|
|
display: inline-block;
|
|
text-align: center; /* Center the header and body */
|
|
overflow-y: auto;
|
|
overflow-x: hidden;
|
|
z-index: 50;
|
|
transition: left 0.5s;
|
|
padding-top: 40px;
|
|
background-image: var(--background_pattern);
|
|
background-attachment: local;
|
|
}
|
|
@media (max-width: 600px) {
|
|
.page_wrapper > .page_navigation {
|
|
left: -250px;
|
|
}
|
|
.page_wrapper > .page_body {
|
|
left: 0;
|
|
}
|
|
}
|
|
|
|
.page_wrapper > .page_body > .page_content {
|
|
position: relative;
|
|
display: inline-block;
|
|
width: 100%;
|
|
height: auto;
|
|
padding: 20px 0 20px 0;
|
|
background-color: var(--layer_2_color);
|
|
box-shadow: 1px 1px 20px 0 var(--shadow_color);
|
|
box-sizing: border-box;
|
|
clear: both;
|
|
}
|
|
.page_wrapper > .page_body > .page_content > .limit_width {
|
|
position: relative;
|
|
display: inline-block;
|
|
max-width: 1000px;
|
|
width: 100%;
|
|
height: auto;
|
|
padding: 0;
|
|
box-sizing: border-box;
|
|
text-align: left;
|
|
word-break: break-word;
|
|
clear: both;
|
|
}
|
|
.page_wrapper > .page_body > h1 {
|
|
text-shadow: 1px 1px 25px #000000;
|
|
}
|
|
|
|
/* Page contents */
|
|
|
|
.header_image{
|
|
width: 100%;
|
|
max-width: 1000px;
|
|
margin-top: 30px;
|
|
margin-bottom: 30px;
|
|
}
|
|
|
|
.page_wrapper > .page_navigation a {
|
|
float: none;
|
|
display: block;
|
|
box-sizing: border-box;
|
|
color: #bfbfbf; /* Fallback */
|
|
color: var(--text_color);
|
|
text-align: center;
|
|
padding: 4px 6px;
|
|
margin: 0.3em 15px 0.3em 15px;
|
|
font-family: "Lato Thin", sans-serif;
|
|
font-weight: bold;
|
|
font-size: 1.5em;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
transition: background-color 0.5s;
|
|
border-radius: 5px;
|
|
}
|
|
.page_wrapper > .page_navigation a:hover {
|
|
background-color: var(--input_color);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.inset {
|
|
box-shadow: inset 1px 1px 20px 0 var(--shadow_color);
|
|
}
|
|
.checkers {
|
|
text-shadow: 0 0 20px #000000;
|
|
padding: 30px 10px 30px 10px;
|
|
}
|
|
|
|
.highlight_dark,
|
|
.highlight_middle,
|
|
.highlight_light,
|
|
.highlight_headerbar,
|
|
.highlight_green,
|
|
.highlight_blue,
|
|
.highlight_red {
|
|
position: relative;
|
|
width: auto;
|
|
height: auto;
|
|
/* margin: 0; */
|
|
box-sizing: border-box;
|
|
overflow: hidden;
|
|
text-align: center;
|
|
padding: .5em;
|
|
}
|
|
.highlight_dark {
|
|
background-color: var(--layer_1_color);
|
|
box-shadow: 1px 1px var(--layer_1_shadow) 0 var(--shadow_color);}
|
|
.highlight_middle {
|
|
background-color: var(--layer_2_color);
|
|
box-shadow: 1px 1px var(--layer_2_shadow) 0 var(--shadow_color);}
|
|
.highlight_light {
|
|
background-color: var(--layer_3_color);
|
|
box-shadow: 1px 1px var(--layer_3_shadow) 0 var(--shadow_color);}
|
|
.highlight_headerbar {
|
|
background-color: var(--layer_4_color);
|
|
box-shadow: 1px 1px var(--layer_4_shadow) 0 var(--shadow_color);}
|
|
.highlight_green {
|
|
background-color: rgba(0, 255, 0, 0.05);
|
|
border-color: #00d000;}
|
|
.highlight_blue {
|
|
background-color: rgba(32, 32, 255, 0.2);
|
|
border-color: rgb(54, 54, 255);}
|
|
.highlight_red {
|
|
background-color: rgba(255, 0, 0, 0.1);
|
|
border-color: #B00000;}
|
|
|
|
.highlight_green,
|
|
.highlight_blue,
|
|
.highlight_red {
|
|
border-top-width: 1px;
|
|
border-top-style: solid;
|
|
border-bottom-width: 1px;
|
|
border-bottom-style: solid;
|
|
}
|
|
|
|
/* Common elements */
|
|
|
|
h1, h2, h3, h4, h5, h6 {
|
|
line-height: 1em;
|
|
margin-left: 10px;
|
|
margin-right: 10px;
|
|
}
|
|
h1{font-size: 2em; font-family: "Lato Thin";}
|
|
h2{font-size: 1.75em; font-family: "Lato Thin";}
|
|
h3{font-size: 1.5em; font-family: "Lato Thin";}
|
|
h4{font-size: 1.25em; font-family: "Lato";}
|
|
h5{font-size: 1em; font-family: "Lato";}
|
|
h6{font-size: .75em; font-family: "Lato";}
|
|
h3, h2{border-bottom: 1px var(--layer_3_color_border) solid;} /* Differentiate it a bit, else it just looks like bold text */
|
|
|
|
p, .indent {
|
|
margin: 10px;
|
|
}
|
|
|
|
hr{
|
|
height: 1px;
|
|
border: none;
|
|
background-color: var(--input_color);
|
|
margin: 16px 16px 16px 16px;
|
|
}
|
|
|
|
::-webkit-scrollbar{
|
|
width: 1em; /* for vertical scrollbars */
|
|
height: 1em; /* for horizontal scrollbars */
|
|
}
|
|
::-webkit-scrollbar-track {
|
|
background: var(--scrollbar_background_color);
|
|
}
|
|
::-webkit-scrollbar-thumb {
|
|
background-color: var(--scrollbar_foreground_color);
|
|
border-radius: 0.5em;
|
|
border: 0.22em solid var(--scrollbar_background_color);
|
|
}
|
|
::-webkit-scrollbar-corner{background: var(--scrollbar_background_color);}
|
|
|
|
a {color: var(--highlight_color); text-decoration: none;}
|
|
a:hover {color: var(--highlight_color); text-decoration: underline;}
|
|
|
|
.form{
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
text-align: left;
|
|
max-width: 40em;
|
|
}
|
|
table:not(.form) {border-collapse: collapse; width: 100%;}
|
|
tr:not(.form) {border-bottom: 1px var(--layer_2_color_border) solid;}
|
|
tr > td {padding: 0.5em;}
|
|
@media(max-width: 30em) {
|
|
tr > td {
|
|
box-sizing: border-box;
|
|
float: left;
|
|
width: 100%;
|
|
padding: 0.5em;
|
|
}
|
|
}
|
|
|
|
pre{
|
|
padding: 2px;
|
|
border-bottom: 1px var(--layer_2_color_border) solid;
|
|
overflow-x: scroll;
|
|
}
|
|
|
|
.big_button{
|
|
width: 40%;
|
|
min-width: 200px;
|
|
max-width: 400px;
|
|
margin: 10px !important;
|
|
border-radius: 5px;
|
|
font-size: 1.8em;
|
|
font-weight: normal;
|
|
}
|
|
|
|
.progress_bar{
|
|
position: relative;
|
|
width: 100%;
|
|
height: 0;
|
|
background-color: #555;
|
|
overflow: hidden;
|
|
color: #eeeeee;
|
|
text-align: left;
|
|
white-space: nowrap;
|
|
}
|
|
.progressbar_inner{
|
|
position: absolute;
|
|
top: 0;
|
|
width: 0%;
|
|
left: 0;
|
|
height: 100%;
|
|
background-color: var(--highlight_color);;
|
|
overflow: hidden;
|
|
color: #000;
|
|
white-space: nowrap;
|
|
}
|
|
.progress_text{
|
|
overflow: hidden;
|
|
width: 100%;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.file_button{
|
|
position: relative;
|
|
box-sizing: border-box;
|
|
width: 300px;
|
|
max-width: 90%;
|
|
height: 3.6em;
|
|
margin: 10px;
|
|
padding: 0;
|
|
overflow: hidden;
|
|
border-radius: 2px;
|
|
box-shadow: 2px 2px 8px -3px var(--shadow_color);
|
|
background-color: var(--file_background_color);
|
|
color: #bfbfbf; /* Fallback */
|
|
color: var(--text_color);
|
|
word-break: break-all;
|
|
text-align: left;
|
|
line-height: 1.2em;
|
|
display: inline-block;
|
|
transition: box-shadow 0.3s, opacity 2s;
|
|
white-space: normal;
|
|
text-overflow: ellipsis;
|
|
vertical-align: top;
|
|
}
|
|
.file_button:hover,
|
|
.file_button_selected {
|
|
box-shadow: 0px 0px 3px 3px var(--highlight_color);
|
|
text-decoration: none;
|
|
color: #bfbfbf; /* Fallback */
|
|
color: var(--text_color);
|
|
}
|
|
.file_button > img{
|
|
max-height: 100%;
|
|
max-width: 25%;
|
|
margin-right: 5px;
|
|
float: left;
|
|
display: block;
|
|
}
|
|
|
|
/* Form fields */
|
|
|
|
.form_input {width: 100%;}
|
|
|
|
/* BUTTONS */
|
|
button,
|
|
.button,
|
|
input[type="submit"],
|
|
input[type="button"],
|
|
input[type="color"],
|
|
select{
|
|
display: inline-block;
|
|
box-sizing: border-box;
|
|
border-radius: 2px;
|
|
border: none;
|
|
margin: 3px;
|
|
background: linear-gradient(var(--input_color), var(--input_color_dark));
|
|
padding: .4em .5em .4em .5em;
|
|
box-shadow: 2px 2px 6px -3px var(--shadow_color);
|
|
font-size: 0.9em;
|
|
line-height: 1em;
|
|
overflow: hidden;
|
|
text-decoration: none;
|
|
font-family: inherit;
|
|
color: #bfbfbf; /* Fallback */
|
|
color: var(--input_text_color);
|
|
outline: 0;
|
|
vertical-align: middle;
|
|
cursor: pointer;
|
|
transition: padding 0.25s, box-shadow 0.25s;
|
|
}
|
|
button:hover,
|
|
.button:hover,
|
|
input[type="submit"]:hover,
|
|
input[type="button"]:hover,
|
|
input[type="color"]:hover,
|
|
select:hover,
|
|
button:focus,
|
|
.button:focus,
|
|
input[type="submit"]:focus,
|
|
input[type="button"]:focus,
|
|
input[type="color"]:focus,
|
|
select:focus{
|
|
color: #bfbfbf; /* Fallback */
|
|
color: var(--input_text_color);
|
|
text-decoration: none;
|
|
box-shadow: var(--highlight_border), 2px 2px 6px -3px var(--shadow_color);
|
|
}
|
|
button:active,
|
|
.button:active,
|
|
input[type="submit"]:active,
|
|
input[type="button"]:active,
|
|
input[type="color"]:active,
|
|
select:active{
|
|
background: linear-gradient(var(--input_color_dark), var(--input_color));
|
|
box-shadow: inset 4px 4px 8px var(--shadow_color);
|
|
padding: .6em .3em .2em .7em; /* Exactly .2em offset compared to the inactive padding to give a depth effect */
|
|
}
|
|
.button_full_width {width: calc(100% - 6px);}
|
|
.button_highlight {background: linear-gradient(var(--highlight_color), var(--highlight_color_dark)) !important; color: var(--highlight_text_color) !important;}
|
|
.button_highlight:active{background: linear-gradient(var(--highlight_color_dark), var(--highlight_color)) !important; color: var(--highlight_text_color) !important;}
|
|
.button_red {background: linear-gradient(var(--danger_color), var(--danger_color_dark)) !important; color: var(--highlight_text_color) !important;}
|
|
.button_red:active {background: linear-gradient(var(--danger_color_dark), var(--danger_color)) !important; color: var(--highlight_text_color) !important;}
|
|
|
|
/* Dropdown list of the select tag */
|
|
option{
|
|
background-color: var(--input_color_dark);
|
|
color: #bfbfbf; /* Fallback */
|
|
color: var(--text_color);
|
|
}
|
|
|
|
/* TEXT FIELDS */
|
|
textarea,
|
|
.groove,
|
|
input[type="text"],
|
|
input[type="password"],
|
|
input[type="email"],
|
|
input[type="number"]{
|
|
border: none;
|
|
box-sizing: border-box;
|
|
border-radius: 4px;
|
|
background: linear-gradient(var(--input_color_dark), var(--input_color));
|
|
box-shadow: inset 2px 2px 6px -3px var(--shadow_color);
|
|
padding: 3px 5px;
|
|
color: var(--input_text_color);
|
|
height: 26px;
|
|
font-family: 'Ubuntu', sans-serif;
|
|
font-size: 1em;
|
|
vertical-align: middle;
|
|
outline: 0;
|
|
transition: box-shadow 0.3s;
|
|
}
|
|
textarea:active,
|
|
input[type="text"]:active,
|
|
input[type="password"]:active,
|
|
input[type="email"]:active,
|
|
input[type="number"]:active,
|
|
textarea:focus,
|
|
input[type="text"]:focus,
|
|
input[type="password"]:focus,
|
|
input[type="email"]:focus,
|
|
input[type="number"]:focus{
|
|
box-shadow: var(--highlight_border), inset 3px 3px 6px -3px var(--shadow_color);
|
|
}
|
|
|
|
input[type=file]{
|
|
visibility: hidden;
|
|
position: static;
|
|
width: 0;
|
|
height: 0;
|
|
}
|