-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
91 lines (80 loc) · 1.3 KB
/
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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html,
body {
background: #fff;
}
.site-logo {
position: fixed;
left: 50%;
transform: translateX(-50%);
font-family: "Grifinito L";
font-size: 2.4em;
text-transform: uppercase;
line-height: 100px;
}
.navbar {
position: fixed;
width: 100%;
height: 100px;
padding: 0 40px;
display: flex;
justify-content: space-between;
font-family: "Space Grotesk";
line-height: 100px;
}
.site-menu {
display: flex;
font-size: 1em;
}
.menu-item {
margin-left: 60px;
}
@media (max-width: 900px) {
.navbar {
display: none;
}
}
.header-container {
position: absolute;
width: 100%;
height: 100vh;
display: flex;
justify-content: center;
align-items: center;
}
.header > span {
font-family: "Maelstrom Sans";
font-size: 40vw;
position: relative;
}
.footer {
position: fixed;
bottom: 5em;
width: 100%;
display: flex;
justify-content: center;
}
.footer span {
position: relative;
top: 30px;
text-decoration: none;
font-family: "Space Grotesk", Helvetica, sans-serif;
font-weight: 400;
font-size: 1.4em;
transition: 1s;
}
.footer-wrapper:after {
content: "";
position: absolute;
top: 30px;
left: 0;
width: 110%;
height: 100%;
background: #fff;
margin: 0 auto;
transition: 1s;
}