2021-06-23 02:13:48 +02:00
|
|
|
html {
|
2021-06-23 16:30:27 +02:00
|
|
|
font-size: 16px;
|
2021-06-23 02:13:48 +02:00
|
|
|
font-family: sans-serif, Arial, Helvetica;
|
2021-06-23 16:30:27 +02:00
|
|
|
background-color: #d4d4d4;
|
2021-06-24 13:08:28 +02:00
|
|
|
height: 100%;
|
|
|
|
background-image: url('Background.png');
|
|
|
|
background-repeat: no-repeat;
|
|
|
|
background-size: 150% 150%;
|
2021-06-23 02:13:48 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
.topbar {
|
|
|
|
padding: 1em;
|
|
|
|
background-color: #1f1f1f;
|
|
|
|
color: white;
|
|
|
|
font-size: x-large;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
|
2021-06-23 16:30:27 +02:00
|
|
|
.ueberschrift{
|
|
|
|
color: #ffffff;
|
|
|
|
font-size: 50px;
|
2021-06-24 11:34:05 +02:00
|
|
|
width: 100%;
|
|
|
|
text-align: center;
|
2021-06-23 16:30:27 +02:00
|
|
|
}
|
|
|
|
|
2021-06-24 11:34:05 +02:00
|
|
|
.regler{
|
2021-06-23 16:30:27 +02:00
|
|
|
-webkit-appearance: none;
|
2021-06-23 17:01:47 +02:00
|
|
|
height: 30px;
|
2021-06-23 16:30:27 +02:00
|
|
|
width: 98%;
|
|
|
|
border-radius: 20px;
|
|
|
|
outline: black;
|
|
|
|
background-color: rgb(176, 188, 228);
|
|
|
|
}
|
2021-06-24 11:34:05 +02:00
|
|
|
.regler::-webkit-slider-thumb{
|
2021-06-23 16:30:27 +02:00
|
|
|
-webkit-appearance: none;
|
|
|
|
appearance: none;
|
|
|
|
width: 5%;
|
|
|
|
height: 20px;
|
|
|
|
border-radius: 10px;
|
|
|
|
background-color: rgb(107, 122, 192);
|
|
|
|
cursor:pointer;
|
|
|
|
}
|
|
|
|
input[type=range]::-webkit-slider-thumb{
|
|
|
|
-webkit-appearance: none;
|
|
|
|
border:none;
|
2021-06-23 17:01:47 +02:00
|
|
|
height: 30px;
|
|
|
|
width: 4%;
|
|
|
|
border-radius: 30px;
|
2021-06-23 16:30:27 +02:00
|
|
|
}
|
2021-06-24 13:08:28 +02:00
|
|
|
.slider {
|
|
|
|
width: 100%;
|
|
|
|
}
|
2021-06-23 16:30:27 +02:00
|
|
|
|
|
|
|
.kopfzeile{
|
|
|
|
color: #1f1f1f;
|
|
|
|
font-size: 50px;
|
|
|
|
width: 100%;
|
|
|
|
background-color: #8d8a8a;
|
|
|
|
}
|
2021-06-23 02:13:48 +02:00
|
|
|
|
|
|
|
body {
|
2021-06-24 13:08:28 +02:00
|
|
|
height: 100%;
|
2021-06-23 02:13:48 +02:00
|
|
|
margin: 0 auto;
|
2021-06-23 16:30:27 +02:00
|
|
|
border: none;
|
2021-06-23 02:13:48 +02:00
|
|
|
border-radius: 3;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2021-06-24 13:08:28 +02:00
|
|
|
/*-------------------------------------------------------*/
|
2021-06-23 02:13:48 +02:00
|
|
|
|
2021-06-24 13:08:28 +02:00
|
|
|
|
|
|
|
/*Switch:
|
2021-06-23 02:13:48 +02:00
|
|
|
.switch {
|
|
|
|
position: relative;
|
|
|
|
display: inline-block;
|
|
|
|
width: 60px;
|
|
|
|
height: 34px;
|
|
|
|
}
|
|
|
|
|
2021-06-24 13:08:28 +02:00
|
|
|
Hide default HTML checkbox
|
2021-06-23 02:13:48 +02:00
|
|
|
.switch input {
|
|
|
|
opacity: 0;
|
|
|
|
width: 0;
|
|
|
|
height: 0;
|
|
|
|
}
|
2021-06-24 13:08:28 +02:00
|
|
|
*/
|
2021-06-23 02:13:48 +02:00
|
|
|
/* The slider */
|
|
|
|
|
|
|
|
|
2021-06-24 13:08:28 +02:00
|
|
|
/*input:checked + .slider {
|
2021-06-23 02:13:48 +02:00
|
|
|
background-color: #04AA6D;
|
|
|
|
}
|
|
|
|
|
|
|
|
input:focus + .slider {
|
|
|
|
box-shadow: 0 0 1px #04AA6D;
|
2021-06-24 13:08:28 +02:00
|
|
|
}*/
|
|
|
|
/*
|
2021-06-23 02:13:48 +02:00
|
|
|
input:checked + .slider:before {
|
|
|
|
-webkit-transform: translateX(26px);
|
|
|
|
-ms-transform: translateX(26px);
|
|
|
|
transform: translateX(26px);
|
|
|
|
}
|
|
|
|
|