minor fixes

This commit is contained in:
Ilya Kantor 2021-07-24 15:01:48 +03:00
parent 9c5388cd57
commit 57ff060c3c
2 changed files with 25 additions and 0 deletions

View file

@ -0,0 +1,6 @@
<!DOCTYPE html>
<link rel="stylesheet" href="style.css">
<div id="slider" class="slider">
<div class="thumb"></div>
</div>

View file

@ -0,0 +1,19 @@
.slider {
border-radius: 5px;
background: #E0E0E0;
background: linear-gradient(left top, #E0E0E0, #EEEEEE);
width: 310px;
height: 15px;
margin: 5px;
}
.thumb {
width: 10px;
height: 25px;
border-radius: 3px;
position: relative;
left: 10px;
top: -5px;
background: blue;
cursor: pointer;
}