-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyles.css
196 lines (166 loc) · 3.16 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
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
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
body, html {
margin: 0;
padding: 0;
font-family: 'Arial', sans-serif;
background: rgb(0, 0, 0);
color: rgb(255, 255, 255);
overflow: auto;
position: relative;
height: 100%;
}
header {
text-align: center;
padding: 1em 0;
position: relative;
z-index: 2;
}
nav ul {
list-style: none;
padding: 0;
}
nav ul li {
display: inline;
margin-right: 20px;
}
nav ul li a {
color: #fff;
text-decoration: none;
font-size: 1.6em;
}
.logo-image {
max-width: 100%;
height: auto;
}
main {
text-align: center;
padding: 50px 20px;
flex: 1;
}
footer {
padding: 10px;
text-align: center;
position: relative;
z-index: 2;
}
video#background-video {
position: fixed;
right: 0;
bottom: 0;
min-width: 100%;
min-height: 100%;
z-index: 1;
object-fit: cover;
filter: brightness(50%);
}
.shows-list {
list-style-type: none; /* Remove default list styling */
padding: 0;
color: #fff; /* Set text color to white */
max-width: 800px;
margin: 0 auto;
}
.show {
display: flex; /* Use flexbox layout */
justify-content: space-between; /* This separates the left content and the button */
align-items: center; /* Center items vertically */
padding: 10px 20px;
border-bottom: 1px solid #fff; /* Make the horizontal rule white */
font-weight: bold; /* Make the text bold */
transition: background-color 0.3s ease;
}
.show:hover {
background-color: rgba(255, 255, 255, 0.1); /* Change background on hover */
}
.show-info {
text-align: left;
}
.show-info span {
display: block;
padding-right: 20px; /* Or any spacing you prefer */
color: #fff; /* Ensure the text within these elements is also white */
}
.date {
font-size: 1.2em;
}
.venue {
font-size: 1em;
color: #ccc; /* Slightly different color for venue */
}
.tickets-button {
color: #fff;
border: 1px solid #fff;
padding: 5px 10px;
text-decoration: none;
transition: background-color 0.3s ease, color 0.3s ease;
}
.tickets-button:hover {
background-color: #fff;
color: #000; /* Change text color on hover for visibility */
}
#shows h2 {
color: #fff; /* Set the text color to white */
text-align: center; /* Align the text to the center */
margin-bottom: 20px;
font-size: 2em;
}
.releases-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
}
.release {
margin: 20px;
text-align: center;
}
.album-art {
width: 300px;
height: 300px;
object-fit: cover;
}
.album-title {
margin-top: 10px;
font-size: 1.2em;
}
.release a {
color: #fff;
text-decoration: none;
}
.release a:hover .album-title {
text-decoration: underline;
}
form {
display: flex;
flex-direction: column;
align-items: center;
}
label {
font-size: 1.2em;
margin: 10px 0 5px;
}
input, textarea {
width: 100%;
max-width: 500px;
padding: 10px;
margin-bottom: 15px;
border: 1px solid #fff;
background: rgba(0, 0, 0, 0.8);
color: #fff;
font-size: 1em;
}
button {
padding: 10px 20px;
font-size: 1.2em;
color: #000;
background: #fff;
border: none;
cursor: pointer;
transition: background-color 0.3s ease;
}
button:hover {
background-color: #ccc;
}
@media (max-width: 768px) {
video#background-video {
left: -2;
}
}