Browse Source

Html Änderung

tags/LEDFlickr
Pupsmuckel 2 years ago
parent
commit
3c186771fe
2 changed files with 4 additions and 37 deletions
  1. BIN
      data/Background.png
  2. 4
    37
      data/style.css

BIN
data/Background.png View File


+ 4
- 37
data/style.css View File

@@ -21,8 +21,7 @@ html {
color: #ffffff;
font-size: 50px;
width: 100%;
background-color: #5f5f5f;
opacity: 0.2;

text-align: center;
}

@@ -69,6 +68,9 @@ body {
margin: 0 auto;
border: none;
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%;
}


/* 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 */
}

Loading…
Cancel
Save