-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
68 lines (58 loc) · 995 Bytes
/
styles.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
body.ui.container {
display: flex;
max-width: 1024px;
padding-top: 1rem;
padding-bottom: 1rem;
}
aside {
max-width: 25%;
margin-right: 1rem;
}
.fps-container {
display: flex;
flex-direction: column;
align-items: baseline;
}
main {
position: relative;
overflow: hidden;
flex-grow: 1;
display: grid;
background-color: #cfcfcf;
}
main:empty::after {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%);
font-size: 2rem;
text-align: center;
color: rgba(255, 255, 255, 0.8);
content: "Waiting for participants..."
}
h2 {
display: inline;
margin-bottom: 0;
font-size: 1.25rem;
}
.ui.button { margin: 0.25em; }
#effect-controls {
padding: 0.5rem;
display: flex;
align-items: center;
justify-content: space-between;
}
#effects {
display: flex;
flex-direction: column;
align-items: flex-start;
}
#webar {
position: relative;
line-height: 0
}
#sound {
position: absolute;
bottom: 0.5rem;
right: 0.5rem;
}