-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmembers.html
239 lines (214 loc) · 9.01 KB
/
members.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
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Members - 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;
}
.description {
text-align: center;
margin: 20px 0;
font-size: 14px;
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.7);
}
.inbox {
background-color: rgba(255, 255, 255, 0.8);
width: 600px; /* Increased width */
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
padding: 20px;
margin: 20px auto;
}
.profile {
display: flex;
align-items: center;
padding: 10px 0;
border-bottom: 1px solid rgba(0, 0, 0, 0.1);
text-decoration: none;
color: inherit;
transition: background-color 0.3s ease;
cursor: pointer;
}
.profile:last-child {
border-bottom: none;
}
.profile:hover {
background-color: rgba(0, 0, 0, 0.1);
}
.profile img {
width: 70px; /* Increased size */
height: 70px;
border-radius: 50%;
background-color: #ddd;
margin-right: 20px; /* Increased margin */
}
.profile .details {
flex: 1;
}
.profile .details .username {
font-size: 18px; /* Larger font size */
font-weight: bold;
margin: 0;
color: #ada3da;
}
.profile .details .status {
font-size: 16px; /* Adjusted font size */
color: #99d995;
margin: 0;
}
.extra-info {
display: none;
padding: 15px; /* Increased padding */
background-color: rgba(0, 0, 0, 0.05);
margin-top: 15px; /* Increased margin */
border-radius: 5px;
color: #333;
font-size: 14px; /* Increased font size */
}
.extra-info img {
width: 100%;
border-radius: 5px;
margin-bottom: 15px; /* Added margin */
}
@media (max-width: 768px) {
.logo img {
width: 200px;
}
.inbox {
width: 100%;
margin: 10px;
box-shadow: none;
}
}
</style>
<link href="https://fonts.googleapis.com/css2?family=Press+Start+2P&display=swap" rel="stylesheet">
</head>
<body>
<div class="header">
<a href="index.html" class="logo">
<img src="imgs/members.png" alt="Logo">
</a>
</div>
<div class="description">
Here are some of our important members! Click on a member to know more about them!
</div>
<div class="inbox">
<div class="profile" onclick="toggleInfo('carlito-info')">
<img src="imgs/carlicon.png" alt="Profile Picture">
<div class="details">
<p class="username">Carlito</p>
<p class="status">"Fueled by milk"</p>
</div>
</div>
<div id="carlito-info" class="extra-info">
<img src="imgs/carlprofile.png" alt="Carlito's Fun Image">
Username: carlitooo <br><br> Mother of all. the creator of the server. A legend an Icon and he is the moment. If you're ever lost, let him guide you. Bringing people together is what he's good at. His words are as comforting as a mother's embrace.
</div>
<div class="profile" onclick="toggleInfo('paul-info')">
<img src="imgs/neilicon.png" alt="Profile Picture">
<div class="details">
<p class="username">Paul McDuckney</p>
<p class="status">"neowwwwwwwwwwwww✈️"</p>
</div>
</div>
<div id="paul-info" class="extra-info">
<img src="imgs/neilprofile.png" alt="Paul's Fun Image">
Username: darkyducky <br><br> Trusted Admin and friend, Ducky or Neil, is Carl's player 2. A wise and mature person and a good listener. He's always down for whatever and here to look out for you.
</div>
<div class="profile" onclick="toggleInfo('rebel-info')">
<img src="imgs/rebelicon.png" alt="Profile Picture">
<div class="details">
<p class="username">RebelEllis</p>
<p class="status">"Let's give it the benefit of the drought"</p>
</div>
</div>
<div id="rebel-info" class="extra-info">
<img src="imgs/rebelprofile.png" alt="Rebel's Fun Image">
Username: rebelellis <br><br> Carl's bestest friend, Co-owner of the server. Rebel radiates with energy, with flamboyance and style! Bold and energetic, whatever situation you may face, you can count on him to get the party started and get everyone talking!
</div>
<div class="profile" onclick="toggleInfo('tabby-info')">
<img src="imgs/tabbyicon.png" alt="Profile Picture">
<div class="details">
<p class="username">Tabby</p>
<p class="status">"Queen never cry."</p>
</div>
</div>
<div id="tabby-info" class="extra-info">
<img src="imgs/tabbyprofile.png" alt="Tabby's Fun Image">
Timid at first, Tabby is a young one with lots of energy. If you ever need a good companion, Tabby will never fail to hype you up.
</div>
<div class="profile" onclick="toggleInfo('cakey-info')">
<img src="imgs/cakeyicon.png" alt="Profile Picture">
<div class="details">
<p class="username">Cakey</p>
<p class="status">"Simple is what simply makes me the best."</p>
</div>
</div>
<div id="cakey-info" class="extra-info">
<img src="imgs/cakeyprofile.png" alt="Cakey's Fun Image">
Username: .yowgi. <br><br> A trusted admin and friend. Cakey is also a flamboyant one, but gentle on the inside. Guaranteed to make you laugh, as well as pick you up when you need it.
</div>
<div class="profile" onclick="toggleInfo('nori-info')">
<img src="imgs/noriicon.png" alt="Profile Picture">
<div class="details">
<p class="username">Nori</p>
<p class="status">"Just Meowing around🐱"</p>
</div>
</div>
<div id="nori-info" class="extra-info">
<img src="imgs/noriprofile.png" alt="Nori's Fun Image">
Username: meowy_inori <br><br> Our resident cat person Nori, is a trusted admin, the master behind our server emoticons! A good teacher radiating with kindness, knowledgable in roblox and other skills. So if you ever need a helping hand she'll be happy to walk with you!
</div>
<div class="profile" onclick="toggleInfo('reverie-info')">
<img src="imgs/reverieicon.png" alt="Profile Picture">
<div class="details">
<p class="username">Reverie</p>
<p class="status">"Money can't buy happiness, but guaranteed I'm worth the price 💋 "</p>
</div>
</div>
<div id="reverie-info" class="extra-info">
<img src="imgs/reverieprofile.png" alt="Milo's Fun Image">
Username: reverieeunoia <br><br> One of our most active members. Young and full of charm, Reverie's exterior is pretty intimidating at first. But once you pass the vibe check, you'll find out there's a lot more to her. She's kind, she's righteous, and knows her worth. A good and honest friend.
</div>
</div>
<script>
function toggleInfo(id) {
const info = document.getElementById(id);
if (info.style.display === "none" || !info.style.display) {
info.style.display = "block";
} else {
info.style.display = "none";
}
}
</script>
</body>
</html>