-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmain.css
114 lines (100 loc) · 1.75 KB
/
main.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
107
108
109
110
111
112
113
114
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@400;700&display=swap');
html,
body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
left: 0;
top: 0;
font-size: 100%;
font-family: 'Open Sans', sans-serif;
}
.main-container {
width: 100%;
height: 90%;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
background-color: #000000;
}
.audio-container {
width: 100%;
height: 10%;
display: flex;
justify-content: space-around;
align-items: center;
}
.file-box label {
display: inline-block;
padding: 0.5em 0.75em;
color: white;
font-size: inherit;
line-height: normal;
vertical-align: middle;
background-color: #47b8e0;
cursor: pointer;
border: 1px solid #47b8e0;
border-bottom-color: #47b8e0;
border-radius: 0.25em;
}
#exfile {
width: 1px;
height: 1px;
padding: 0;
overflow: hidden;
clip: rect(0, 0, 0, 0);
border: 0;
}
.color-container {
display:flex;
font-weight: 500;
align-items: center;
}
.color-container > p {
margin-right: 20px;
font-weight: 700;
}
.color-container > div {
display: flex;
align-items: center;
}
.color-container > div + div {
margin-left: 15px;
}
.color-box {
position: relative;
overflow: hidden;
width: 40px;
height: 40px;
border: solid 2px #ddd;
border-radius: 40px;
margin-left: 10px;
}
input[name="color"] {
position: absolute;
right: -8px;
top: -8px;
width: 56px;
height: 56px;
border: none;
cursor: pointer;
}
@media screen and (max-width: 1024px) {
.audio-container {
height: 30%;
flex-direction: column;
}
.main-container {
height: 70vh;
}
#canvas {
width: 600px;
}
}
@media screen and (max-width: 700px) {
#canvas {
width: 350px;
}
}