-
Notifications
You must be signed in to change notification settings - Fork 11
/
style.css
93 lines (89 loc) · 1.65 KB
/
style.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
@import url("https://fonts.googleapis.com/css?family=Poppins:400,500,600,700&display=swap");
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: "Poppins", sans-serif;
color: white;
}
body {
background: #f2f2f2;
}
nav {
background: #1b1b1b;
width: 100%;
}
nav:after {
content: "";
clear: both;
display: table;
}
nav ul {
list-style: none;
position: relative;
align-items: center;
}
nav ul li {
display: inline-block;
margin: 0 5px;
color: #1b1b1b;
}
nav ul li a {
color: white;
text-decoration: none;
line-height: 70px;
font-size: 16px;
padding: 8px 15px;
text-align: center;
}
/* nav ul li a:hover {
border-radius: 5px;
border-bottom: 1px solid #33ffff;
} */
.clickable:hover {
border-radius: 5px;
border-bottom: 1px solid #33ffff;
cursor: pointer;
}
nav ul ul {
position: absolute;
top: 70px;
opacity: 0;
visibility: hidden;
}
nav ul :hover > ul {
opacity: 1;
visibility: visible;
}
nav ul ul li {
background-color: #1b1b1b;
position: relative;
margin: 0px;
width: 200px;
float: none;
display: list-item;
border-bottom: 1px solid;
}
.range-input {
background: teal;
-webkit-appearance: none;
height: 2px;
outline: none;
border-radius: 2px;
}
.range-input::-webkit-slider-thumb {
-webkit-appearance: none;
width: 15px;
height: 15px;
border-radius: 50%;
background: #33ffff;
cursor: pointer;
}
.range-input::-moz-range-thumb {
-webkit-appearance: none;
width: 15px;
height: 15px;
border-radius: 50%;
background: #33ffff;
cursor: pointer;
}