-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
86 lines (79 loc) · 1.54 KB
/
Copy pathstyle.css
File metadata and controls
86 lines (79 loc) · 1.54 KB
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
body{
height:100vh;
width: 100vw;
overflow: hidden;
}
.toolbox{
position: fixed;
top: 12px;
width: 60vw;
left: 20vw;
text-align: center;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: center;
justify-content: center;
align-items: center;
background-color: rgb(255, 255, 255);
border-radius: 50px;
box-shadow: 0px 0px 4px;
}
input{
height: 30px;
width: 30px;
overflow: hidden;
margin: 6px;
text-align: center;
border: none;
border-radius: 50%;
box-shadow: 0px 0px 3px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: center;
justify-content: center;
align-items: center;
}
input[type="color"]{
background-color: transparent;
padding: 0;
outline: none;
}
select {
height: 30px;
width: 30px;
overflow: hidden;
margin: 6px;
text-align: center;
border: none;
border-radius: 50%;
box-shadow: 0px 0px 3px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: center;
justify-content: center;
align-items: center;
}
button{
height: 30px;
width: 30px;
overflow: hidden;
margin: 6px;
text-align: center;
background-color: white;
border: none;
border-radius: 50%;
box-shadow: 0px 0px 2px;
display: flex;
flex-direction: row;
flex-wrap: wrap;
align-content: center;
justify-content: center;
align-items: center;
}
.toolbox > button > img{
width: 18px;
height: 18px;
}