Skip to content

Commit 57ff060

Browse files
committed
minor fixes
1 parent 9c5388c commit 57ff060

File tree

2 files changed

+25
-0
lines changed

2 files changed

+25
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
<!DOCTYPE html>
2+
<link rel="stylesheet" href="style.css">
3+
4+
<div id="slider" class="slider">
5+
<div class="thumb"></div>
6+
</div>
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
.slider {
2+
border-radius: 5px;
3+
background: #E0E0E0;
4+
background: linear-gradient(left top, #E0E0E0, #EEEEEE);
5+
width: 310px;
6+
height: 15px;
7+
margin: 5px;
8+
}
9+
10+
.thumb {
11+
width: 10px;
12+
height: 25px;
13+
border-radius: 3px;
14+
position: relative;
15+
left: 10px;
16+
top: -5px;
17+
background: blue;
18+
cursor: pointer;
19+
}

0 commit comments

Comments
 (0)