-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
51 lines (46 loc) · 894 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
@font-face {
font-family: "KL1_ Monocase Serif";
src: url("./fonts/KL1MonocaseSerif.woff2") format("woff2"),
url("./fonts/KL1MonocaseSerif.woff") format("woff");
font-weight: normal;
font-style: normal;
font-display: swap;
}
html, body {
height: 100%;
}
body {
margin: 0 auto;
max-width: 650px;
line-height: 1.6;
font-size: 18px;
color: #979797;
padding: 0 10px;
background: #010101;
text-align: center;
font-family: 'KL1_ Monocase Serif', Didot, Garamond, serif;
display: flex;
align-items: center;
justify-content: center;
}
h1,
h2,
h3 {
line-height: 1.2;
font-weight: 100;
}
.container {
position: relative;
overflow: hidden;
width: 100%;
padding-top: 56.25%; /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}
.responsive-iframe {
position: absolute;
top: 0;
left: 0;
bottom: 0;
right: 0;
width: 100%;
height: 100%;
}