-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (56 loc) · 1.24 KB
/
Copy pathstyle.css
File metadata and controls
63 lines (56 loc) · 1.24 KB
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
@import url('https://fonts.googleapis.com/css2?family=Metal+Mania&display=swap');
body {
min-width: 850px;
background: url("https://upload.wikimedia.org/wikipedia/commons/thumb/6/6a/Metallica_at_The_O2_Arena_London_2008.jpg/1200px-Metallica_at_The_O2_Arena_London_2008.jpg") no-repeat center/cover;
color: white;
font-family: 'Metal Mania', cursive;
text-align: center;
margin: 0;
padding: 0;
background-color: black;
}
.container {
width: 500px;
margin: 50px auto;
padding: 20px;
background-color: rgba(20, 20, 20, 0.85);
border: 3px solid #bb0a1e;
box-shadow: 0 0 20px #bb0a1e;
border-radius: 10px;
}
h1 {
font-size: 48px;
text-transform: uppercase;
text-shadow: 2px 2px 10px red;
color: #bb0a1e;
}
h2 {
font-size: 30px;
color: white;
}
h3 {
font-size: 18px;
color: gray;
}
.album-cover {
width: 100%;
max-width: 300px;
border: 3px solid #bb0a1e;
box-shadow: 0 0 15px red;
margin-bottom: 15px;
}
a {
color: #bb0a1e;
text-decoration: none;
font-size: 20px;
font-weight: bold;
}
a:hover {
text-decoration: underline;
color: white;
}
p {
font-family: Arial, Helvetica, sans-serif;
text-transform: uppercase;
font-weight: 600;
}