-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.html
158 lines (138 loc) · 4.47 KB
/
events.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Events - 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;
text-align: center;
}
.logo {
margin-top: 50px; /* Add space between the top and the logo */
}
.logo img {
width: 300px;
border-radius: 15px;
cursor: pointer;
}
.event-content {
display: flex;
flex-wrap: wrap;
justify-content: center;
align-items: center;
padding: 50px 20px;
}
.event-image-container {
flex: 0 1 450px;
text-align: center;
margin: 30px;
}
.event-image-container img {
width: 450px;
height: 400px; /* Increased height */
border-radius: 15px;
box-shadow: 0 15px 25px rgba(0, 0, 0, 0.5);
}
.event-description {
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);
}
.event-description h2 {
font-size: 2.5rem;
margin-bottom: 20px;
color: #ffeabe;
text-shadow: 3px 3px 5px rgba(0, 0, 0, 0.6);
}
.event-description p {
font-size: 1.2rem;
line-height: 1.8;
color: #ffeabe;
text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
}
.join-button {
display: inline-block;
padding: 15px 30px;
background-color: #ada3da;
color: #fff;
font-size: 1.2rem;
font-weight: bold;
text-decoration: none;
border-radius: 10px;
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.3);
margin-top: 20px;
cursor: pointer;
transition: background-color 0.3s;
}
.join-button:hover {
background-color: #9b7dca;
}
@media (max-width: 768px) {
.header {
height: 200px;
}
.logo img {
width: 200px;
}
.event-content {
flex-direction: column;
}
.event-image-container img {
width: 300px;
height: auto;
}
.event-description {
text-align: center;
padding: 20px;
}
.event-description h2 {
font-size: 2rem;
}
.event-description 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">
<a href="index.html" class="logo">
<img src="imgs/events.png" alt="Lavender Lair Logo">
</a>
</div>
<div class="event-content">
<div class="event-image-container">
<img src="imgs/giveaway.png" alt="Event Image">
</div>
<div class="event-description">
<h2>100 Robux Giveaway!</h2>
<p>
Since the year is ending and the Holidays are approaching. Nori is holding a 100 Robux giveaway. A hundred Robux and one Winner! Only active members that are known by Nori are elligible to join. <br><br> Giveaway ends at Wednesday, 25 December 2024 7:00 pm
</p>
<a href="https://discord.gg/m526yz2Kj8" class="join-button">Join!</a>
</div>
</div>
</body>
</html>