-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
106 lines (85 loc) · 1.11 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
ol,
li {
list-style: none;
}
* {
margin: 0;
padding: 0;
}
.icon {
width: 1em;
height: 1em;
vertical-align: -0.15em;
fill: currentColor;
overflow: hidden;
}
#xxx {
background: white;
display: block;
position: fixed;
top: 0;
left: 0;
}
body {
margin: 0;
}
.actions {
position: fixed;
top: 0;
left: 0;
padding: 20px;
}
.actions svg {
width: 1.5em;
height: 1.5em;
transition: all 0.3s;
margin: 0 10px;
}
.actions svg.active {
fill: red;
transform: scale(1.3)
}
.color {
position: fixed;
top: 60px;
left: 28px;
}
.color li {
width: 20px;
height: 20px;
margin: 10px 0;
border: 1px solid #ffffff;
border-radius: 50%;
transition: all 0.3s;
}
.color li.red {
background: red;
}
.color li.green {
background: green;
}
.color li.blue {
background: blue;
}
.color li.black {
background: black;
}
.color li.active {
transform: scale(1.3);
}
.size {
position: fixed;
top: 5px;
right: 20px;
}
.size li {
height: 20px;
width: 20px;
margin: 15px 0;
}
.size li.thin {
border-top: 3px solid black;
}
.size li.thick {
border-top: 6px solid black;
}