-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
94 lines (73 loc) · 1.28 KB
/
Copy pathstyle.css
File metadata and controls
94 lines (73 loc) · 1.28 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
87
88
89
90
91
92
93
94
@import -we
*{
padding: 0;
margin: 0;
box-sizing: border-box;
font-family: monospace;
}
body{
background-color: #43a047;
}
.wrapper{
width:80vmin;
background-color: #fff;
position: absolute;
transform: translate(-50%, -50%);
top: 50%;
left: 50%;
padding: 40px 20px;
border-radius: 8px
}
label{
display: block;
}
span{
position: relative;
font-size: 22px;
bottom: -1px;
}
.opt-wrapper{
display: flex;
justify-content: space-between;
margin-bottom: 20px;
gap: 10px;
}
button{
background-color: #43a047;
border: none;
border-radius: 5px;
padding: 5px;
color: #fff;
}
input[type="color"]{
-webkit-appearance: none;
-moz-appearance: none;
appearance: none;
background-color: transparent;
width: 70px;
height: 40px;
border: none;
cursor: pointer;
}
input[type="color"]::-webkit-color-swatch{
border-radius: 8px;
border: 4px solif #000;
}
input[type="color"]::-moz-color-swatch{
border-radius: 8px;
border: 4px solif #000;
}
.gridCol{
height: 1em;
width: 1em;
border: 1px solid #ddd;
}
.gridRow{
display: flex;
}
@media only screen and (max-width:768px){
.gridCol{
height: 0.8em;
width:0.8em;
}
}