-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathevents.html
163 lines (150 loc) · 4.78 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
159
160
161
162
163
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<link
href="https://fonts.googleapis.com/css2?family=Questrial&display=swap"
rel="stylesheet"
/>
<link
rel="shortcut icon"
href="./assets/images/swo.png"
type="image/x-icon"
/>
<title>Events - Blossoms</title>
<link rel="stylesheet" href="./css/events.css" />
</head>
<body>
<nav class="navbar">
<img
src="./assets/images/swo-logo-tp.png"
alt="SWO Logo"
class="logo swo-logo"
/>
<button class="mobile-menu-btn" aria-label="Toggle menu">
<span></span>
<span></span>
<span></span>
</button>
<div class="nav-links">
<ul>
<li><a href="index.html">Home</a></li>
<li><a href="events.html" class="active">Events</a></li>
<li><a href="schedule.html">Schedule</a></li>
<li><a href="results.html">Results</a></li>
<!-- <li><a href="#gallery">Gallery</a></li> -->
</ul>
</div>
<img
src="./assets/images/cu-logo-tp.png"
alt="CHRIST Logo"
class="logo christ-logo"
/>
</nav>
<div class="main">
<h1 class="title">EVENTS</h1>
<p class="subtitle">View the rules and regulations, event wise!</p>
<div class="event-categories">
<a href="stage_events.html" class="category" data-category="stage">
<div class="category-header">
<h2>Stage Events</h2>
<span class="arrow">›</span>
</div>
</a>
</div>
<div class="event-categories">
<a href="theatre_events.html" class="category" data-category="stage">
<div class="category-header">
<h2>Theatre Events</h2>
<span class="arrow">›</span>
</div>
</a>
</div>
<div class="event-categories">
<a href="art_events.html" class="category" data-category="stage">
<div class="category-header">
<h2>Art Events</h2>
<span class="arrow">›</span>
</div>
</a>
</div>
<div class="event-categories">
<a href="literary_events.html" class="category" data-category="stage">
<div class="category-header">
<h2>Literary Events</h2>
<span class="arrow">›</span>
</div>
</a>
</div>
<a href="schedule.html" class="schedule-btn">Get Schedule</a>
<a
href="https://docs.google.com/document/d/1uGeT83qsmd3qlrMFb_icf4TZ7dHoR6IAkxD92xzTYtU/edit?usp=sharing"
class="rules-btn"
target="_blank"
>Detailed Rules & Regulations</a
>
</div>
<footer>
<div class="footer-content">
<div class="divider-line"></div>
<p>
In case of queries, please drop a mail to
</p>
<p>or visit the SWO Office on 7th Floor, Block C.</p>
<br />
<p>
Made with <span class="heart">❤</span> in CHRIST University,
Yeshwanthpur
</p>
<p>
Made by
<a
href="https://www.linkedin.com/in/adarshagupta/"
target="_blank"
rel="noopener noreferrer"
style="color: inherit; text-decoration: underline"
>Adarsh Gupta</a
>
&
<a
href="https://www.linkedin.com/in/shashwatk1956/"
target="_blank"
rel="noopener noreferrer"
style="color: inherit; text-decoration: underline"
>Shashwat</a
>
</p>
</div>
</footer>
<script>
document.addEventListener("DOMContentLoaded", function () {
const mobileMenuBtn = document.querySelector(".mobile-menu-btn");
const navLinks = document.querySelector(".nav-links");
const body = document.body;
mobileMenuBtn.addEventListener("click", function () {
// Toggle the active class on menu button
this.classList.toggle("active");
// Toggle the active class on navigation
navLinks.classList.toggle("active");
// Prevent body scrolling when menu is open
body.style.overflow = this.classList.contains("active")
? "hidden"
: "";
});
// Close menu when clicking outside
document.addEventListener("click", function (e) {
if (
!mobileMenuBtn.contains(e.target) &&
!navLinks.contains(e.target)
) {
mobileMenuBtn.classList.remove("active");
navLinks.classList.remove("active");
body.style.overflow = "";
}
});
});
</script>
</body>
</html>