Html Änderung

This commit is contained in:
Pupsmuckel 2021-06-24 11:42:12 +02:00
parent c40e7f80e5
commit 3c186771fe
2 changed files with 4 additions and 37 deletions

BIN
data/Background.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 209 KiB

View File

@ -21,8 +21,7 @@ html {
color: #ffffff; color: #ffffff;
font-size: 50px; font-size: 50px;
width: 100%; width: 100%;
background-color: #5f5f5f;
opacity: 0.2;
text-align: center; text-align: center;
} }
@ -69,6 +68,9 @@ body {
margin: 0 auto; margin: 0 auto;
border: none; border: none;
border-radius: 3; border-radius: 3;
background-image: url('Background.png');
background-repeat: no-repeat;
background-size: 100% 100%;
} }
@ -126,38 +128,3 @@ input:checked + .slider:before {
border-radius: 50%; border-radius: 50%;
} }
/* The slider itself */
.rangeslider {
-webkit-appearance: none; /* Override default CSS styles */
appearance: none;
width: 50%; /* Full-width */
height: 34px; /* Specified height */
border-radius: 34px; /* range round corners */
background: #d3d3d3; /* Grey background */
outline: none; /* Remove outline */
opacity: 0.7; /* Set transparency (for mouse-over effects on hover) */
-webkit-transition: .2s; /* 0.2 seconds transition on hover */
transition: opacity .2s;
}
/* Mouse-over effects */
.rangeslider:hover {
opacity: 1; /* Fully shown on mouse-over */
}
/* The slider handle (use -webkit- (Chrome, Opera, Safari, Edge) and -moz- (Firefox) to override default look) */
.rangeslider::-webkit-slider-thumb {
-webkit-appearance: none; /* Override default look */
appearance: none;
width: 26px; /* Set a specific slider handle width */
height: 26px; /* Slider handle height */
border-radius: 50%; /* Round Element */
background: #04AA6D; /* Green background */
cursor: pointer; /* Cursor on hover */
}
.rangeslider::-moz-range-thumb {
width: 26px; /* Set a specific slider handle width */
height: 26px; /* Slider handle height */
background: #04AA6D; /* Green background */
cursor: pointer; /* Cursor on hover */
}