-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
123 lines (100 loc) · 1.62 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
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
#xxx {
/* background: green; */
display: block;
position: fixed;
left: 0;
top: 0;
}
* {
margin: 0;
padding: 0;
}
ul,
ol {
list-style: none;
margin: 0;
padding: 0;
}
.icon {
width: 1em;
height: 1em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
.actions {
position: fixed;
left: 0;
top: 0;
padding: 15px;
}
.actions svg {
width: 1.5em;
height: 1.5em;
transition: all 0.2s;
margin: 0 5px;
}
.actions svg.active {
fill: red;
transform: scale(1.1);
}
.colors {
position: fixed;
top: 49px;
left: 18px;
}
.colors>li {
width: 20px;
height: 20px;
/* border: 1px solid red; */
border-radius: 50%;
box-shadow: 0px 0px 3px 0px rgba(0, 0, 0, 0.82);
margin: 10px 0;
transition: all 0.2s;
}
.colors>li.red {
background: red;
}
.colors>li.green {
background: green;
}
.colors>li.blue {
background: blue;
}
.colors>li.black {
background: black;
}
.colors>li.white {
background: white;
border: #666;
}
.colors>li.active {
transform: scale(1.2);
}
.sizes {
position: fixed;
right: 10px;
top: 20px;
}
.sizes>li {
margin: 20px 0;
}
.sizes>.thin {
height: 0;
width: 20px;
border-top: 4px solid black;
}
.sizes>.thick {
height: 0;
width: 20px;
border-top: 9px solid black;
}
/* .actions>#brush {
display: none;
}
.actions.x>#brush {
display: inline-block;
}
.actions.x>#eraser {
display: none;
} */