-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
54 lines (48 loc) · 858 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
@import url('https://fonts.googleapis.com/css2?family=Open+Sans:wght@300&display=swap');
a > img, video {
height: 100%;
display: flex;
width: 100%;
margin: 0;
padding: 0;
}
a {
margin: 0;
padding: 0;
width: 471px;
height: calc(100% * (46 / 70));
}
@media (max-width:100vh) {
a {
width: 100vw;
height: auto;
}
}
#container {
width: 100%;
height: 100%;
display: flex;
padding: 0;
margin: 0;
flex-direction: column;
justify-content: stretch;
align-items: center;
}
body {
padding: 0;
margin: 0;
width: 100%;
overflow-x: hidden;
}
#options {
font-family: 'Open Sans', sans-serif;
position: fixed;
opacity: 0.85;
bottom: 0;
right: 0;
max-width: 50vh;
height: auto;
width: auto;
font-size: 3vh;
background-color: white;
}