-
Notifications
You must be signed in to change notification settings - Fork 0
/
style.css
72 lines (61 loc) · 1.13 KB
/
style.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
69
70
71
72
@font-face {
/* @import url('https://fonts.googleapis.com/css2?family=EB+Garamond&display=swap&text=Stiller'); */
font-family: 'EB Garamond';
font-style: normal;
font-weight: 400;
font-display: swap;
src: url("/assets/fonts/font.woff2") format('woff2');
}
* {
box-sizing: border-box;
color : white;
}
html,
body {
height: 100%;
}
body {
display : flex;
flex-flow : column nowrap;
align-items : center;
justify-content : center;
background-color: black;
margin : 0;
}
body h1 {
margin : 0;
font-family: "EB Garamond", Georgia, serif;
font-weight: 300;
}
.social hr {
width: 100%;
border-top: none;
border-inline: none;
}
.social {
display : flex;
flex-flow: column;
}
.social nav {
display : flex;
font-size: 1.25em;
}
.social nav a {
padding: 0.5em;
}
.social nav a .icon {
filter: invert(1);
height: 1em;
}
video {
position: fixed;
height : 100%;
z-index : -1;
}
/* LG */
@media only screen and (min-width: 75rem) {
video {
width : 100%;
height: initial;
}
}