blob: 607e8b5972180f92d1be804c3aeacbb30c80b07f (
plain)
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
|
@font-face {
font-family: Montserrat, sans-serif;
font-weight: 100;
src: url(../font/Montserrat/Montserrat-ExtraLight.ttf);
}
#site-title {
font-family: Montserrat;
font-size: 17vw;
font-weight: 100;
width: 100%;
margin: 0px auto;
text-align: center;
text-transform: uppercase;
}
@media screen and (min-width: 1200px) {
#site-title {
font-size: 10rem;
}
}
.links {
display: flex;
justify-content: space-between;
max-width: 320px;
margin: 10px auto 40px auto;
}
.links a.links-item {
display: block;
}
.links a.links-item img {
height: 30px;
width: 30px;
filter: grayscale(1) invert(1);
}
|