-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
188 lines (159 loc) · 2.87 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
body {
display: flex;
flex-direction: column;
margin: 0px;
color: #FBFAF5;
font-family: sans-serif;
}
/* HEADER */
.header {
display: flex;
background-color: #1F1F36;
padding: 1em 5em;
}
.logo {
width: 50px;
height: 50px;
flex-shrink: 0;
}
.logo img {
width: 100%;
height: auto;
border-radius: 50%;
}
.right-links {
display: flex;
gap: 10px;
margin-left: auto;
list-style-type: none;
}
.right-links a {
text-decoration: none;
color: #ffffff;
}
.right-links a:hover {
color:#FE5163;
}
/*LAYER ONE*/
.layer-one {
display: flex;
flex-wrap: wrap;
background-color: #1F1F36;
gap: 100px;
padding: 0em 5em 2em 5em;
justify-content: space-evenly;
}
.welcome-container {
display: flex;
flex: 0 0 300px;
min-height: 200px;
flex-direction: column;
justify-content: start;
align-items: baseline;
}
h1 {
margin: 0px;
}
.welcome-container button {
margin-top: auto;
background-color: #FE5163;
border-color: #FE5163;
}
.welcome-container button:hover {
background-color: #ffffff;
border-color: #ffffff;
}
.image {
width: 400px;
height: 200px;
flex: 0 0 400px;
}
.image img {
width: 100%;
height: 100%;
}
/*LAYER TWO*/
.layer-two {
display: flex;
flex-direction: column;
background-color: #ffffff;
padding-top: 2em;
padding-bottom: 2em;
}
.layer-two h2 {
color:#1F1F36;
font-weight: bold;
text-align: center;
margin-bottom: 2em;
}
.music-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 15px;
}
.music-container iframe {
max-width: 300px;
min-width: 300px;
height: 352px;
flex-shrink: 0;
}
/*LAYER THREE*/
.layer-three {
background-image: url(./images/lofi-background.jpg);
background-size: cover;
object-fit: cover;
background-attachment: fixed;
display: flex;
justify-content: center;
align-items: center;
}
.quote {
padding:200px;
font-weight: bold;
font-size: 32px;
}
/*LAYER FOUR*/
.layer-four {
background-color: #1F1F36;
display: flex;
justify-content: center;
align-items: center;
padding: 100px 0px;
}
.registration-container {
display: flex;
background-color: #FE5163;
padding: 25px 10px;
gap: 10px;
border-radius: 8px;
}
.registration-text {
display: flex;
flex-direction: column;
color:#1F1F36
}
.registration-text h2 {
margin: 0;
}
.registration-container button {
align-self: center;
background-color: #FE5163;
border-color: #1F1F36;
color: #1F1F36;
align-self: flex-end;
}
.registration-container button:hover {
background-color: #1F1F36;
color: #ffffff;
}
/*FOOTER*/
.footer {
background-color: #FE5163;
color:#1F1F36;
text-align: center;
}
button {
padding: 5px 20px;
border-radius: 8px;
}