-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
104 lines (92 loc) · 1.41 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: sans-serif;
}
#canvas {
display: block;
}
.corner-btn {
position: absolute;
margin: 20px;
padding: 20px;
font-size: 20px;
border-radius: 20px;
font-weight: bold;
}
#size-btn {
top: 0;
left: 0;
}
#color-btn {
top: 0;
right: 0;
}
#clear-btn {
bottom: 0;
left: 0;
}
#download-btn {
bottom: 0;
right: 0;
}
#clear-overlay,
#color-overlay,
#size-overlay {
display: none;
z-index: 10;
background-color: rgba(0, 0, 0, 0.5);
position: absolute;
width: 100%;
height: 100%;
top: 0;
/* display: flex; */
justify-content: center;
align-items: center;
flex-direction: column;
}
#clear-overlay button,
#clear-overlay p {
margin: 20px;
padding: 20px;
font-size: 30px;
border-radius: 20px;
}
#clear-overlay div {
text-align: center;
}
#color-overlay {
flex-direction: column;
justify-content: start;
align-items: flex-end;
padding-top: 100px;
padding-right: 50px;
overflow: hidden;
}
#color-overlay div {
max-height: 100%;
display: flex;
flex-direction: column;
flex-wrap: wrap;
}
.color-btn {
border-radius: 100px;
width: 75px;
height: 75px;
margin: 10px;
}
/* #size-overlay {
} */
.size-btn {
padding: 30px;
font-weight: bold;
font-size: 30px;
margin: 10px;
width: 187px;
}
@media only screen and (max-height: 860px) {
#color-overlay div {
margin-right: 50px;
}
}