-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
102 lines (94 loc) · 1.66 KB
/
Copy pathstyle.css
File metadata and controls
102 lines (94 loc) · 1.66 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
95
96
97
98
99
100
101
102
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
:root {
font-size: 16px;
}
body {
padding: 1rem;
background-color: beige;
}
.controls {
display: flex;
flex-flow: column nowrap;
gap: 10px;
align-items: center;
width: 400px;
align-self: stretch;
justify-content: space-around;
}
.controls video {
width: 100%;
}
.controls button {
padding: 0.5rem 1rem;
width: 90%;
background-color: hsl(16, 100%, 50%);
border: none;
color: white;
font-size: 1.25rem;
}
.controls button:hover {
background-color: hsl(16 100% 50%/0.8);
}
.filters {
width: 400px;
align-self: stretch;
display: flex;
flex-flow: column nowrap;
justify-content: space-between;
padding: 10px;
}
.filters label {
width: 100%;
display: flex;
justify-content: space-between;
background-color: hsl(0 0% 97%);
align-content: center;
font-size: 1.25rem;
padding: 0.5rem;
& * {
vertical-align: middle;
}
& input[type='checkbox'] {
width: 1rem;
height: 1rem;
}
}
canvas {
width: 400px;
flex: 1;
}
.main {
display: flex;
flex-flow: row wrap;
align-items: center;
justify-content: space-between;
gap: 10px;
background-color: white;
}
.main> * {
border: 1px solid red;
}
.download-area {
white-space: nowrap;
overflow: auto;
margin-top: 0.5rem;
background-color: hsl(0 0% 99%);
padding: 0.5rem;
}
.download-area img {
height: 150px;
margin-right: 1rem;
animation: appear 0.4s linear 0.1s forwards ;
}
@keyframes appear {
from {
opacity: 0;
}
to {
opacity :1;
}
}