-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
89 lines (74 loc) · 1.6 KB
/
index.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
@font-face {
font-family:'Neue Haas Unica';
font-style:normal;
font-weight:300;
src:url(../fonts/NeueHaasUnica-Light.woff2) format("woff2"),
url(../fonts/NeueHaasUnica-Light.woff) format("woff")
}
@font-face {
font-family: 'Neue Haas Unica';
font-style: normal;
font-weight: 400;
src: url(../fonts/NeueHaasUnica-Regular.woff2) format("woff2"),
url(../fonts/NeueHaasUnica-Regular.woff) format("woff")
}
@font-face{
font-family: 'Neue Haas Unica';
font-style: normal;
font-weight: 500;
src: url(../fonts/NeueHaasUnica-Medium.woff2) format("woff2"),
url(../fonts/NeueHaasUnica-Medium.woff) format("woff")
}
@font-face {
font-family:'Neue Haas Unica';
font-style:normal;
font-weight:700;
src:url(../fonts/NeueHaasUnica-Bold.woff2) format("woff2"),
url(../fonts/NeueHaasUnica-Bold.woff) format("woff")
}
body {
font-family: "Neue Haas Unica", sans-serif !important;
}
#container {
padding-right: 40px;
padding-left: 40px;
}
header {
display: flex;
justify-content: space-between;
}
#logo {
padding-top: 40px;
}
#logo img {
width: clamp(10rem,10vw,15rem);
}
#languages {
padding-top: 50px;
}
#languages a {
text-decoration: none;
color: black;
}
#pageTitle {
text-align: center;
padding-top: 40px;
}
h1 {
font-size: 3rem;
font-weight: 500;
}
footer {
padding-top: 60px;
padding-bottom: 60px;
display: flex;
justify-content: space-between;
align-items: center;
}
footer div {
font-size: .875rem;
}
footer a {
text-decoration: none;
color: black;
}