-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
60 lines (59 loc) · 1.08 KB
/
style.css
File metadata and controls
60 lines (59 loc) · 1.08 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
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;700&display=swap');
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Montserrat', sans-serif;
}
:fullscreen {
overflow: scroll !important;
}
:-ms-fullscreen {
overflow: scroll !important;
}
:-webkit-full-screen {
overflow: scroll !important;
}
:-moz-full-screen {
overflow: scroll !important;
}
#container {
display: flex;
position: relative;
justify-content: center;
align-items: center;
width: 100vw;
height: 100vh;
}
#container .logo_img{
border-radius: 50%;
}
#container-config {
position: absolute;
bottom: 0;
width: 100%;
display: flex;
flex: 0 0 100%;
background-color: #f1f3f4;
}
#container-config #fullscreen{
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
}
#container-config #audio{
flex: 1;
}
.config{
background-color: white;
margin-top: 8px;
}
.config> div {
padding: 10px;
border-top: 1px solid black;
}
.config div label {
font-weight: 500 !important;
display: block;
}