-
Notifications
You must be signed in to change notification settings - Fork 12
/
style.css
93 lines (81 loc) · 1.69 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
body{
font-family: 'Courier New', Courier, monospace;
padding: 20px;
background-color: rgb(12, 12, 12);
}
.container{
display: flex;
justify-content: center;
align-content: flex-start;
align-items: flex-start;
}
.instructions{
border-style: solid;
border-width: 5px;
border-color: rgb(223, 0, 0);
border-radius: 25px;
padding: 20px;
margin: 30px;
margin-top: 0;
max-width: 300px;
}
.title{
background-color: rgb(0, 0, 0);
border-style: solid none;
border-width: 5px;
border-color: rgb(223, 0, 0);
text-align: center;
margin: 10px 0;
color: rgb(255, 255, 255);
margin-bottom: 30px;
}
.btn {
cursor: pointer;
height: 40px;
width: 100%;
background: rgb(218, 0, 0);
border-radius: 5px;
color: white;
font-family: monospace;
font-size: 14px;
margin-bottom: 5px;
border-style: solid;
border-color: rgb(255, 216, 206);
}
button:hover {
background: rgb(129, 0, 0);
color: rgb(216, 216, 216);
}
.slidecontainer{
width: 100%;
text-align: center;
margin-top: 30px;
}
.slider {
-webkit-appearance: none;
width: 100%;
height: 15px;
border-radius: 5px;
background: #d3d3d3;
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
margin-top: 10px;
}
.slider::-webkit-slider-thumb {
-webkit-appearance: none;
appearance: none;
width: 25px;
height: 25px;
border-radius: 50%;
background: rgb(223, 0, 0);
cursor: pointer;
}
.slider::-moz-range-thumb {
width: 25px;
height: 25px;
border-radius: 50%;
background: rgb(255, 0, 0);
cursor: pointer;
}