-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
77 lines (76 loc) · 1.27 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
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
body {
display: flex;
flex-direction: row;
flex-wrap: wrap;
}
#canvas {
max-width: 60vw;
max-height: 100vh;
}
@media only screen and (max-width: 640px) {
#canvas {
justify-items: center;
margin-left: auto;
margin-right: auto;
max-width: 100vw;
max-height: 60vh;
}
}
.panel {
padding-left: 1.5rem;
padding-right: 1.5rem;
padding-top: 1.5rem;
}
input[type="file"] {
position: absolute;
z-index: -1;
top: 10px;
left: 14px;
font-size: 17px;
color: #b8b8b8;
}
.button-wrap {
position: relative;
}
.button {
display: inline-block;
padding: 12px 18px;
cursor: pointer;
border-radius: 5px;
background-color: red;
font-size: 16px;
font-weight: bold;
color: #fff;
}
.range {
width: 20rem;
}
.setting {
display: flex;
flex-direction: column;
}
.setting div label{
display: block;
}
button {
border: none;
}
.button#reset, .button#download {
flex: none;
width: fit-content;
padding-top: 0.3rem;
padding-bottom: 0.3rem;
margin-top: 0.3rem;
margin-right: 0.3rem;
}
.button#reset {
background-color: rgb(85, 83, 83);
}
.button#download {
display: none;
}