-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
48 lines (44 loc) · 1.08 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
#main {
margin-top: 75px;
font-family: 'Montserrat', sans-serif;
font-size: 20px;
text-align:center;
}
#setSizeSlider {
-webkit-appearance: none;
width: 200px;
height: 15px;
border-radius: 5px;
background: #e2dfdf;
outline: none;
opacity: 0.6;
-webkit-transition: .2s;
transition: opacity .2s;
}
#setSizeSlider:hover {
opacity: 1; /* Fully shown on mouse-over */
}
#setSizeSlider::-webkit-slider-thumb {
-webkit-appearance: none; /* Override default look */
appearance: none;
width: 25px; /* Set a specific slider handle width */
height: 25px; /* Slider handle height */
border-radius: 50%;
background: #93b6f0; /* Green background */
cursor: pointer; /* Cursor on hover */
}
#canvas {
text-align: center;
}
button {
background-color: #e2dfdf;
border: none;
color: black;
text-align: center;
font-family: 'Montserrat', sans-serif;
font-size: 20px;
margin-bottom: 50px;
padding: 5px 10px;
border-radius: 4px;
opacity: 0.6;
}