-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathscribbly.css
58 lines (52 loc) · 1.04 KB
/
scribbly.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
/**
Styling for the toolbar
*/
#toolbarWrapper {
display: flex;
flex-direction: row;
background-color: darkkhaki;
position: relative;
}
.btn {
padding: 10px;
margin: 5px 0 5px 10px;
background-color: lavender;
border: 1px solid burlywood;
border-radius: 5px;
cursor: pointer;
user-select: none;
-webkit-user-select: none;
-moz-user-select: none;
}
.btn:hover {
background-color: burlywood;
}
#strokeSizeSlider {
-webkit-appearance: none;
height: 15px;
border-radius: 50px;
background: #827717;
outline: none;
opacity: 0.7;
-webkit-transition: .2s;
transition: opacity .2s;
align-self: center;
}
#strokeSizeSlider::-webkit-slider-thumb {
-webkit-appearance: none;
width: 25px;
height: 25px;
border-radius: 50%;
background: whitesmoke;
cursor: pointer;
}
#strokeSizeSlider::-moz-range-thumb {
width: 25px;
height: 25px;
border-radius: 50%;
background: whitesmoke;
cursor: pointer;
}
#colorPalette {
align-self: center;
}