-
Notifications
You must be signed in to change notification settings - Fork 0
/
main.css
102 lines (83 loc) · 1.36 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
:root {
font-size: 16px;
}
body {
padding-right: 20px;
padding-left: 20px;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
gap: 20px;
}
input {
}
#info-message {
max-width: 500px;
font-size: 0.9rem;
text-align: center;
}
#canvas-container {
width: 100%;
max-width: 750px;
margin-bottom: 20px;
display: flex;
justify-content: center;
align-items: center;
}
canvas {
width: 100%;
}
#results-container {
display: flex;
flex-direction: row;
justify-content: center;
align-items: flex-start;
flex-wrap: wrap;
row-gap: 30px;
column-gap: 20px;
}
#template-video-container,
#segment-template {
display: none;
}
.video-container {
width: 300px;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
}
.video-title {
font-size: 1.1rem;
text-decoration: none;
color: black;
height: 45px;
display: inline-block;
overflow: hidden;
}
.upload-date {
font-size: 0.8rem;
}
.segments-container {
height: 200px;
width: 100%;
max-height: 500px;
padding: 5px 10px;
box-sizing: border-box;
overflow: auto;
border: 1px solid burlywood;
display: flex;
flex-direction: column;
justify-content: flex-start;
align-items: flex-start;
gap: 15px;
}
.segments-container p {
margin: 0;
font-size: 0.9rem;
}
.segments-container a {
color: burlywood;
text-decoration: none;
}