-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
70 lines (62 loc) · 1.28 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
@font-face {
font-family: 'AngryNerds';
src: url('https://cdn.rawgit.com/putty182/4bcee364e98f96f90400421c0d41ca67/raw/c50f7081cae7eeeab009ed0400b83b70c1111fd4/AngryNerds.ttf');
}
#main {
height: 100vh;
}
#main h1, h2, h3 {
font-family: 'AngryNerds', serif;
line-height: 0.8em;
}
#main a {
color: #333;
opacity: 1;
transition: opacity 0.2s;
}
#main a:hover {
color: #000;
opacity: 0.5;
text-decoration: none;
}
#band-logo:after {
display: block;
content: ' ';
height: 15vw;
width: 100%;
top: 0;
margin-top: 1rem;
background-image: url(the-shakeouts.svg);
background-repeat: no-repeat;
background-position: 50%;
filter: drop-shadow(1px 1px 0px #fff) drop-shadow(0px 0px 2px #999);
}
#social-links a img {
height: 20vw;
width: 20vw;
}
#facebook:before,
#unearthed:before,
#soundcloud:before,
#bandcamp:before {
content: " ";
display: block;
width: auto;
height: 20vh;
max-height: 140px;
background-repeat: no-repeat;
background-position: center;
background-size: contain;
}
#facebook:before {
background-image: url(facebook.svg);
}
#unearthed:before {
background-image: url(unearthedlogo.svg);
}
#soundcloud:before {
background-image: url(soundcloud.svg);
}
#bandcamp:before {
background-image: url(bandcamp.svg);
}