2019-09-21 16:54:48 +02:00
|
|
|
* {
|
2020-03-27 15:26:04 +01:00
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
2019-09-21 16:54:48 +02:00
|
|
|
}
|
|
|
|
|
2019-09-18 12:29:56 +02:00
|
|
|
body {
|
2020-03-27 15:26:04 +01:00
|
|
|
background-color: #333;
|
2019-09-21 16:54:48 +02:00
|
|
|
}
|
|
|
|
|
2019-09-21 18:56:46 +02:00
|
|
|
p {
|
2020-03-27 15:26:04 +01:00
|
|
|
padding: 3px 0;
|
2019-09-21 18:56:46 +02:00
|
|
|
}
|
|
|
|
|
2019-09-21 16:54:48 +02:00
|
|
|
#wrapper {
|
2020-03-27 15:26:04 +01:00
|
|
|
max-height: 100%;
|
|
|
|
min-height: 100%;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
2020-04-01 22:16:55 +02:00
|
|
|
display: flex;
|
2019-09-21 16:54:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
#main {
|
2020-04-01 22:16:55 +02:00
|
|
|
height: 100%;
|
|
|
|
flex-grow: 1;
|
2020-03-27 15:26:04 +01:00
|
|
|
position: relative;
|
2019-09-21 16:54:48 +02:00
|
|
|
}
|
|
|
|
|
2019-09-24 15:38:04 +02:00
|
|
|
#name {
|
2020-03-27 15:26:04 +01:00
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
left: 10px;
|
|
|
|
color: white;
|
2019-09-24 15:38:04 +02:00
|
|
|
}
|
|
|
|
|
2020-03-27 15:26:04 +01:00
|
|
|
#meta {
|
|
|
|
padding: 10px 2%;
|
|
|
|
color: white;
|
|
|
|
position: absolute;
|
|
|
|
bottom: 0;
|
|
|
|
width: 96%;
|
2019-09-21 16:54:48 +02:00
|
|
|
}
|
|
|
|
|
2020-03-27 18:35:56 +01:00
|
|
|
.options {
|
2020-04-01 22:16:55 +02:00
|
|
|
background-color: black;
|
|
|
|
max-width: 300px;
|
|
|
|
width: 20%;
|
|
|
|
min-width: 150px;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
overflow-y: auto;
|
2019-09-21 16:54:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.option {
|
2020-03-27 15:26:04 +01:00
|
|
|
color: white;
|
2020-04-01 22:16:55 +02:00
|
|
|
margin: 0 0 20px 0;
|
|
|
|
padding: 10px;
|
2020-04-10 13:51:19 +02:00
|
|
|
background-color: #333;
|
2020-04-01 22:16:55 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.option:last-child {
|
|
|
|
margin: 0;
|
2019-09-21 16:54:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.option:hover {
|
2020-03-27 15:26:04 +01:00
|
|
|
background-color: #777;
|
2019-09-21 16:54:48 +02:00
|
|
|
}
|
|
|
|
|
2020-04-01 22:16:55 +02:00
|
|
|
.lds-roller {
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
.loading>.lds-roller {
|
2019-09-17 20:19:04 +02:00
|
|
|
display: inline-block;
|
|
|
|
}
|
|
|
|
|
2020-04-01 22:16:55 +02:00
|
|
|
.lds-roller {
|
2019-09-17 20:19:04 +02:00
|
|
|
position: absolute;
|
|
|
|
left: 50%;
|
|
|
|
top: 50%;
|
|
|
|
transform: translate(-50%, -50%);
|
2020-04-01 22:16:55 +02:00
|
|
|
width: 80px;
|
|
|
|
height: 80px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lds-roller div {
|
|
|
|
animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
|
|
|
|
transform-origin: 40px 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lds-roller div:after {
|
|
|
|
content: " ";
|
|
|
|
display: block;
|
|
|
|
position: absolute;
|
|
|
|
width: 7px;
|
|
|
|
height: 7px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background: #fff;
|
|
|
|
margin: -4px 0 0 -4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lds-roller div:nth-child(1) {
|
|
|
|
animation-delay: -0.036s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lds-roller div:nth-child(1):after {
|
|
|
|
top: 63px;
|
|
|
|
left: 63px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lds-roller div:nth-child(2) {
|
|
|
|
animation-delay: -0.072s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lds-roller div:nth-child(2):after {
|
|
|
|
top: 68px;
|
|
|
|
left: 56px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lds-roller div:nth-child(3) {
|
|
|
|
animation-delay: -0.108s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lds-roller div:nth-child(3):after {
|
|
|
|
top: 71px;
|
|
|
|
left: 48px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lds-roller div:nth-child(4) {
|
|
|
|
animation-delay: -0.144s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lds-roller div:nth-child(4):after {
|
|
|
|
top: 72px;
|
|
|
|
left: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lds-roller div:nth-child(5) {
|
|
|
|
animation-delay: -0.18s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lds-roller div:nth-child(5):after {
|
|
|
|
top: 71px;
|
|
|
|
left: 32px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lds-roller div:nth-child(6) {
|
|
|
|
animation-delay: -0.216s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lds-roller div:nth-child(6):after {
|
|
|
|
top: 68px;
|
|
|
|
left: 24px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lds-roller div:nth-child(7) {
|
|
|
|
animation-delay: -0.252s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lds-roller div:nth-child(7):after {
|
|
|
|
top: 63px;
|
|
|
|
left: 17px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lds-roller div:nth-child(8) {
|
|
|
|
animation-delay: -0.288s;
|
|
|
|
}
|
|
|
|
|
|
|
|
.lds-roller div:nth-child(8):after {
|
|
|
|
top: 56px;
|
|
|
|
left: 12px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes lds-roller {
|
|
|
|
0% {
|
|
|
|
transform: rotate(0deg);
|
|
|
|
}
|
|
|
|
100% {
|
|
|
|
transform: rotate(360deg);
|
|
|
|
}
|
2020-03-27 15:26:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
#speed {
|
|
|
|
width: 100px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#c {
|
|
|
|
position: relative;
|
|
|
|
background-color: black;
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button {
|
|
|
|
position: absolute;
|
|
|
|
top: 10px;
|
|
|
|
right: 10px;
|
|
|
|
width: 40px;
|
|
|
|
height: 40px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button:before,
|
|
|
|
.button:after {
|
|
|
|
content: "";
|
|
|
|
position: absolute;
|
|
|
|
background-color: grey;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button:hover:before,
|
|
|
|
.button:hover:after {
|
|
|
|
background-color: white;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button:before {
|
|
|
|
top: 0;
|
|
|
|
left: 50%;
|
|
|
|
width: 6px;
|
|
|
|
height: 100%;
|
|
|
|
margin-left: -3px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.button:after {
|
|
|
|
top: 50%;
|
|
|
|
left: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: 6px;
|
|
|
|
margin-top: -3px;
|
|
|
|
}
|
|
|
|
|
2019-09-17 20:19:04 +02:00
|
|
|
|
|
|
|
/* ----------------------------------------------
|
|
|
|
* Generated by Animista on 2019-9-17 14:35:13
|
|
|
|
* Licensed under FreeBSD License.
|
|
|
|
* See http://animista.net/license for more info.
|
|
|
|
* w: http://animista.net, t: @cssanimista
|
|
|
|
* ---------------------------------------------- */
|
|
|
|
|
2020-03-27 15:26:04 +01:00
|
|
|
|
2019-09-17 20:19:04 +02:00
|
|
|
/**
|
|
|
|
* ----------------------------------------
|
|
|
|
* animation slide-top
|
|
|
|
* ----------------------------------------
|
|
|
|
*/
|
2020-03-27 15:26:04 +01:00
|
|
|
|
|
|
|
@-webkit-keyframes slide-top {
|
2019-09-17 20:19:04 +02:00
|
|
|
0% {
|
2020-03-27 15:26:04 +01:00
|
|
|
-webkit-transform: translate(-50%, 50%);
|
|
|
|
transform: translate(-50%, 50%);
|
2019-09-17 20:19:04 +02:00
|
|
|
}
|
|
|
|
100% {
|
2020-03-27 15:26:04 +01:00
|
|
|
-webkit-transform: translate(-50%, -150%);
|
|
|
|
transform: translate(-50%, -150%);
|
2019-09-17 20:19:04 +02:00
|
|
|
}
|
2020-03-27 15:26:04 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
@keyframes slide-top {
|
2019-09-17 20:19:04 +02:00
|
|
|
0% {
|
2020-03-27 15:26:04 +01:00
|
|
|
-webkit-transform: translate(-50%, 50%);
|
|
|
|
transform: translate(-50%, 50%);
|
2019-09-17 20:19:04 +02:00
|
|
|
}
|
|
|
|
100% {
|
2020-03-27 15:26:04 +01:00
|
|
|
-webkit-transform: translate(-50%, -150%);
|
|
|
|
transform: translate(-50%, -150%);
|
2019-09-17 20:19:04 +02:00
|
|
|
}
|
2020-03-27 15:26:04 +01:00
|
|
|
}
|
2019-09-21 10:43:03 +02:00
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
* ----------------------------------------
|
|
|
|
* Copy from https://www.w3schools.com/howto/howto_js_rangeslider.asp
|
|
|
|
* ----------------------------------------
|
|
|
|
*/
|
2020-03-27 15:26:04 +01:00
|
|
|
|
|
|
|
.slidecontainer {
|
|
|
|
margin-top: 10px;
|
|
|
|
width: 100%;
|
|
|
|
/* Width of the outside container */
|
2019-09-21 10:43:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.slider {
|
2020-03-27 15:26:04 +01:00
|
|
|
-webkit-appearance: none;
|
|
|
|
width: 100%;
|
|
|
|
height: 15px;
|
|
|
|
border-radius: 5px;
|
|
|
|
background: #d3d3d3;
|
|
|
|
outline: none;
|
|
|
|
opacity: 0.7;
|
|
|
|
-webkit-transition: .2s;
|
|
|
|
transition: opacity .2s;
|
2019-09-21 10:43:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.slider::-webkit-slider-thumb {
|
2020-03-27 15:26:04 +01:00
|
|
|
-webkit-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
width: 25px;
|
|
|
|
height: 25px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background: #ff7000;
|
|
|
|
cursor: pointer;
|
2019-09-21 10:43:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.slider::-moz-range-thumb {
|
2020-03-27 15:26:04 +01:00
|
|
|
width: 25px;
|
|
|
|
height: 25px;
|
|
|
|
border-radius: 50%;
|
|
|
|
background: #ff7000;
|
|
|
|
cursor: pointer;
|
2019-09-21 16:54:48 +02:00
|
|
|
}
|
|
|
|
|
2020-03-27 15:26:04 +01:00
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
-webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
|
|
|
|
box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
|
|
|
|
border-radius: 10px;
|
|
|
|
background-color: #444;
|
|
|
|
border-radius: 10px;
|
2019-09-21 16:54:48 +02:00
|
|
|
}
|
|
|
|
|
2020-03-27 15:26:04 +01:00
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 10px;
|
|
|
|
background-color: #444;
|
2019-09-21 16:54:48 +02:00
|
|
|
}
|
|
|
|
|
2020-03-27 15:26:04 +01:00
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
border-radius: 10px;
|
|
|
|
background-color: #F90;
|
|
|
|
background-image: -webkit-linear-gradient(45deg, rgba(255, 255, 255, .2) 25%, transparent 25%, transparent 50%, rgba(255, 255, 255, .2) 50%, rgba(255, 255, 255, .2) 75%, transparent 75%, transparent)
|
2020-04-01 22:16:55 +02:00
|
|
|
}
|