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