-
Notifications
You must be signed in to change notification settings - Fork 2.6k
Expand file tree
/
Copy pathstyles.css
More file actions
127 lines (105 loc) · 2.06 KB
/
styles.css
File metadata and controls
127 lines (105 loc) · 2.06 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
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
@import url('https://fonts.googleapis.com/css?family=Raleway:300,400');
@import url("https://fonts.googleapis.com/css?family=Metal+Mania");
@font-face {
font-family: "Booter - Zero Zero";
src: url("Fonts/Booter - Zero Zero.woff") format("woff"),
url("Fonts/Booter - Zero Zero.woff2") format("woff2");
font-weight: normal;
font-style: normal;
}
* {
box-sizing: border-box;
font-family: Raleway;
color: #777;
}
html, body {
margin: 0;
padding: 0;
}
.nav ul {
margin: 0;
}
.nav li {
display: inline;
}
.nav a {
display: inline-block;
padding: .5em;
color: white;
text-decoration: none;
}
.main-nav {
text-align: center;
font-size: 1.1em;
font-weight: lighter;
border-bottom: 1px solid rgba(255, 255, 255, .3)
}
.main-nav li {
padding: 0 5%;
}
.nav a:hover {
background-color: rgba(255, 255, 255, .3)
}
.main-header {
background-color: rgba(0, 0, 0, .6);
background-image: url("Images/Header Background.jpg");
background-blend-mode: multiply;
background-size: cover;
padding-bottom: 30px;
text-decoration: none;
}
.band-name {
text-align: center;
margin: 0;
font-size: 4em;
font-family: "Booter - Zero Zero";
font-weight: normal;
color: rgb(66, 53, 53);
text-decoration: none;
}
.band-name-large {
font-size: 8em;
}
.content-section {
margin: 1em;
}
.container {
max-width: 900px;
margin: 0 auto;
padding: 0 1.5em;
}
.section-header {
font-family: "Metal Mania";
font-weight: normal;
color: #333;
text-align: center;
font-size: 2.5em;
text-decoration: none;
}
.about-band-image {
float: left;
height: 200px;
width: 200px;
margin: 15px;
border-radius: 50%;
}
.main-footer {
background-color: #56CCF2;
color: white;
padding: .25em 0;
}
.main-footer-container {
display: flex;
align-items: center;
}
.main-footer-container ul {
flex-grow: 1;
text-align: end;
}
.footer-nav li {
padding: 0 .5em;
}
.footer-nav img {
width: 30px;
height: 30px;
}