|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106 |
- html {
- font-size: 16px;
- font-family: sans-serif, Arial, Helvetica;
- background-color: #d4d4d4;
- height: 100%;
- background-image: url('Background.png');
- background-repeat: repeat;
- background-size: 150% 150%;
- }
-
- body {
- height: 100%;
- margin: 0 auto;
- border: none;
- border-radius: 3;
- }
-
- .topbar {
- padding: 1em;
- background-color: #1f1f1f;
- color: white;
- font-size: x-large;
- text-align: center;
- }
-
- .ueberschrift{
- color: #ffffff;
- font-size: 50px;
- width: 100%;
- text-align: center;
- }
-
- .regler{
-
- -webkit-appearance: none;
- height: 30px;
- width: 100%;
- border-radius: 20px;
- outline: black;
- background-color: rgb(176, 188, 228);
- }
- .regler::-webkit-slider-thumb{
- -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;
- height: 30px;
- width: 4%;
- border-radius: 30px;
- }
- .slider {
- width: 100%;
- }
-
- .kopfzeile{
- color: #1f1f1f;
- font-size: 50px;
- width: 100%;
- background-color: #8d8a8a;
- }
-
-
-
-
- /*-------------------------------------------------------*/
-
-
- /*Switch:
- .switch {
- position: relative;
- display: inline-block;
- width: 60px;
- height: 34px;
- }
-
- Hide default HTML checkbox
- .switch input {
- opacity: 0;
- width: 0;
- height: 0;
- }
- */
- /* The slider */
-
-
- /*input:checked + .slider {
- background-color: #04AA6D;
- }
-
- input:focus + .slider {
- box-shadow: 0 0 1px #04AA6D;
- }*/
- /*
- input:checked + .slider:before {
- -webkit-transform: translateX(26px);
- -ms-transform: translateX(26px);
- transform: translateX(26px);
- }
-
|