-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathmain.css
More file actions
56 lines (54 loc) · 883 Bytes
/
main.css
File metadata and controls
56 lines (54 loc) · 883 Bytes
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
.header {
width: 100%;
display: inline-block;
margin: 0 auto;
text-align: center;
}
.video-contianer {
width: 100%;
display: inline-block;
margin: 0 auto;
text-align: center;
height: 300px;
}
.video-contianer video {
width: 50%;
height: 100%;
}
.buttons {
width: 100%;
margin-top: 20px;
display: flex;
justify-content: space-evenly;
}
.buttons button {
padding: 5px;
}
.log-container {
width: 100%;
display: flex;
flex-direction: column;
text-align: center;
justify-content: center;
align-items: center;
}
.log-container pre {
text-align: left;
background-color: #eee;
display: none;
font-family: 'Inconsolata', 'Courier New', monospace;
font-size: 0.9em;
padding: 10px 10px 10px 25px;
position: relative;
top: 10px;
white-space: pre;
}
.error {
color: red;
}
.warn {
color: orange;
}
.info {
color: darkgreen;
}