blob: 7b986bbe4288b5b23f7c7749a28154e12e28c09c (
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
39
40
41
42
43
44
|
html {
font-family: Helvetica, sans-serif;
text-align: center;
font-size: 18px;
width: 100%;
}
body {
max-width: 900px;
padding: 0 20px;
margin: 0 auto;
}
.logo {
width: 100%;
height: auto;
max-width: 400px;
margin: auto;
}
.links {
display: flex;
flex-flow: row nowrap;
justify-content: center;
align-items: center;
}
.links a {
display: flex;
}
.links img {
height: 100%;
margin: 0 20px;
}
.instagram img {
width: 40px;
}
.soundcloud img {
width: 53px;
}
|