-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
59 lines (50 loc) · 823 Bytes
/
styles.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
h1 {
font-family: sans-serif;
color: #ccc;
}
button {
box-sizing: border-box;
min-width: 40px;
border-radius: 20px;
height: 40px;
font-size: 20px;
margin: 10px 10px;
padding: 5px 12px 7px 12px;
color: #ccc;
background-color: rgb(7, 7, 7);
}
button:hover {
background-color: rgb(50, 50, 50);
cursor: pointer;
}
button:focus {
outline: 0;
}
body {
background-color: rgb(7, 7, 7);
}
.Buttons {
display: flex;
justify-content: center;
}
#fire-decrease,
#fire-increase {
position: relative;
}
#fire-increase::before,
#fire-increase::after,
#fire-decrease::before {
content: "";
width: 15px;
height: 3px;
background-color: #ccc;
display: block;
position: absolute;
}
#fire-increase::after {
transform: rotate(90deg);
}
#fire-slider {
width: 280px;
margin: 15px 0;
}