-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
198 lines (171 loc) · 6 KB
/
about.html
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
197
198
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>About Us - Lavender Lair</title>
<link rel="icon" href="imgs/icon.png" type="image/x-icon">
<style>
body {
margin: 0;
padding: 0;
font-family: 'Press Start 2P', cursive;
background: url('imgs/homebg.png') no-repeat center center fixed;
background-size: cover;
color: #fff;
}
.header {
position: relative;
width: 100%;
height: 300px;
background-image: url('imgs/about-banner.jpg');
background-size: cover;
background-position: center;
}
.logo {
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
text-align: center;
}
.logo img {
width: 300px;
border-radius: 15px;
cursor: pointer;
}
.logo .tagline {
margin-top: 10px;
font-size: 1.2rem;
color: #fff; /* White text */
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.6);
text-decoration: none; /* No underline */
}
.main-content {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
padding: 50px 20px;
}
.image-container {
flex: 0 1 450px;
text-align: center;
margin: 30px;
}
.image-container img {
width: 450px;
height: 450px;
border-radius: 50%;
border: 8px solid #ada3da;
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
}
.content {
flex: 1;
max-width: 500px;
text-align: center;
background-color: rgba(153, 217, 149, 0.8);
border-radius: 15px;
padding: 30px;
margin: 30px;
box-shadow: 0 8px 15px rgba(0, 0, 0, 0.2);
}
.content h2 {
font-size: 2.5rem;
margin-bottom: 20px;
color: #ffeabe;
text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.6);
}
.content p {
font-size: 1.2rem;
line-height: 1.8;
color: #ffeabe;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.reversed-section {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
padding: 50px 20px;
}
.reversed-section .image-container {
order: 2; /* Moves the image to the right */
}
.reversed-section .image-container img {
width: 500px;
height: auto;
border-radius: 0; /* Removes the circular shape */
border: 8px solid #ada3da;
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
}
.reversed-section .content {
order: 1; /* Moves the text box to the left */
}
.main-content .content {
text-align: left; /* Aligns text to the left for the first content */
}
.reversed-section .content {
text-align: center; /* Aligns text to the right for the second content */
}
@media (max-width: 768px) {
.header {
height: 200px;
}
.logo img {
width: 200px;
}
.main-content, .reversed-section {
flex-direction: column;
}
.image-container img {
width: 300px;
height: auto;
}
.content {
text-align: center;
padding: 20px;
}
.content h2 {
font-size: 2rem;
}
.content p {
font-size: 1rem;
}
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<div class="header">
<div class="logo">
<a href="index.html">
<img src="imgs/about.png" alt="Lavender Lair Logo">
</a>
<div class="tagline">A fun community, just a click away!</div>
</div>
</div>
<div class="main-content">
<div class="image-container">
<img src="imgs/collage.jpg" alt="Lavender Lair Profile Image">
</div>
<div class="content">
<h2>About Us</h2>
<p>
Welcome to Lavender Lair, a place where chronically online gamers and users can come to and socialize! Come and take a look at our community! If you're looking for a party to play with or if you just need someone to talk to, you are very welcome in this safe place! We won't bite. :)
</p>
</div>
</div>
<div class="reversed-section">
<div class="content">
<h2>What we do</h2>
<p>
Some of the games we mainly play include, Hoyoverse games, VALORANT, Roblox, League of Legends, Overwatch 2, pick a game that suits your style and hop in! Feeling adventurous? We are always open to suggestions and try new games together, We are anything people! If you're itching for a gaming session or just good company, we've got you! There's many things we can do! We also sometimes server events and activities, like movie nights and tournaments with prizes. You'll never get bored during your stay at the Lair!
</p>
</div>
<div class="image-container">
<img src="imgs/games.png" alt="Lavender Lair Mission">
</div>
</div>
</body>
</html>