This repository has been archived by the owner on Jun 25, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontent_welcome.html
244 lines (184 loc) · 8.31 KB
/
content_welcome.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
240
241
242
243
244
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" lang="" xml:lang="">
<head>
<meta charset="utf-8" />
<meta name="generator" content="pandoc" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, user-scalable=yes" />
<title>Welcome to Club Enigma!</title>
<style>
code {
white-space: pre-wrap;
}
span.smallcaps {
font-variant: small-caps;
}
span.underline {
text-decoration: underline;
}
div.column {
display: inline-block;
vertical-align: top;
width: 50%;
}
div.hanging-indent {
margin-left: 1.5em;
text-indent: -1.5em;
}
ul.task-list {
list-style: none;
}
.display.math {
display: block;
text-align: center;
margin: 0.5rem auto;
}
</style>
<link rel="stylesheet" href="blog.css" />
<!--[if lt IE 9]>
<script src="//cdnjs.cloudflare.com/ajax/libs/html5shiv/3.7.3/html5shiv-printshiv.min.js"></script>
<![endif]-->
</head>
<body>
<header id="title-block-header">
<h1 class="title">Welcome to Club Enigma!</h1>
</header>
<h1>
CLUB ENIGMA
</h1>
<div class="contents">
<p><a class='home' href=index.html>PROJECTS</a>
<button id="btn" onclick="setTheme()">THEME</button>
</p>
<hr />
<h2 id="about">ABOUT US</h2>
<div>
<p>
"ENIGMA" is the he distinguished technical club at the Indian Institute of Information Technology (IIIT)
that is dedicated to pushing the boundaries of technology through practical, hands-on projects.
At Enigma, we believe in the power of doing, and our primary focus is on Computer Graphics,
Cybersecurity, Distributed systems, and System software. </p>
<h3 style="font-size: larger;">Team Lead : Arka Mondal</h3>
<h3>Team Co-Lead : Kalyan</h3>
</div>
<div class="our mission">
<h2>OUR MISSION</h2>
<ul>
<li>
<div class="cybersecurity">
<h3>CYBER SECURITY: </h3>
<h4>Domain Lead : Hruthik </h4>
<p>
This domain is a multifaceted discipline that adapts to the evolving digital landscape.
It combines advanced technologies and comprehensive strategies.
Exploring and protecting your digital world is its vision.
</p>
</div>
</li>
<li>
<div class="distributed systems">
<h3>DISTRIBUTED SYSTEMS:
</h3>
<h4>Domain Lead:Aahnik Daw </h4>
<p>
With the advancement in technology becoming more distributed and interconnected,this domain has become crucial. It delves into cloud computing ,network protocols,and blockchain to build more scalable and efficient systems.
</p>
</div>
</li>
<li>
<div class="system software">
<h3>SYSTEM SOFTWARE:
</h3>
<h4>Domain Lead:Saurabh Pal </h4>
<p>
System software being the backbone of modern computing,inspires the tech enthusiasts to explore and have hands on
experience on developing and optimizing the computer systems like operating systems,utility programs etc.
</p>
</div>
</li>
<li>
<div class="computer graphics">
<h3>COMPUTER GRAPHICS:
</h3>
<h4>Domain Lead:Urjasvi Suthar</h4>
<p>
Computer Graphics is a fascinating and dynamic field that encompasses a wide range of cross domain projects and applications.
This multidisciplinary field leverages GPU acceleration using many advanced techniques.
It ranges from building cross-platform GUI frameworks to exploring fractal patterns and simulating intricate forces, encompassing a broad spectrum of projects,each pushing the boundaries of visual computing.
</p>
</div>
</li>
</ul>
</div>
<script src="highlight.min.js"></script>
<script>hljs.highlightAll();</script>
<script>const stylesheet = document.documentElement.style;
const darkThemeMq = window.matchMedia("(prefers-color-scheme: dark)");
if (!localStorage.getItem("theme")) {
localStorage.setItem("theme", "system");
}
if (localStorage.getItem("theme") == "system") setSystemTheme();
else if (localStorage.getItem("theme") == "light") setLightTheme();
else if (localStorage.getItem("theme") == "dark") setDarkTheme();
setButtonText();
function setSystemTheme() {
if (darkThemeMq.matches) {
setDarkTheme();
} else {
setLightTheme();
}
setButtonText();
}
function setDarkTheme() {
const darkBg = getComputedStyle(document.documentElement).getPropertyValue("--dark-bg");
const darkAccent = getComputedStyle(document.documentElement).getPropertyValue("--dark-accent");
const darkAccent2 = getComputedStyle(document.documentElement).getPropertyValue("--dark-accent-2");
const darkAccent3 = getComputedStyle(document.documentElement).getPropertyValue("--dark-accent-3");
stylesheet.setProperty("--theme-bg", darkBg);
stylesheet.setProperty("--theme-accent", darkAccent);
stylesheet.setProperty("--theme-accent-2", darkAccent2);
stylesheet.setProperty("--theme-accent-3", darkAccent3);
setButtonText();
}
function setLightTheme() {
const lightBg = getComputedStyle(document.documentElement).getPropertyValue("--light-bg");
const lightAccent = getComputedStyle(document.documentElement).getPropertyValue("--light-accent");
const lightAccent2 = getComputedStyle(document.documentElement).getPropertyValue("--light-accent-2");
const lightAccent3 = getComputedStyle(document.documentElement).getPropertyValue("--light-accent-3");
stylesheet.setProperty("--theme-bg", lightBg);
stylesheet.setProperty("--theme-accent", lightAccent);
stylesheet.setProperty("--theme-accent-2", lightAccent2);
stylesheet.setProperty("--theme-accent-3", lightAccent3);
setButtonText();
}
function setButtonText() {
const theme = localStorage.getItem("theme");
var text = theme.toUpperCase() + ' THEME';
document.getElementById("btn").innerHTML = text;
}
darkThemeMq.addListener(e => {
if (localStorage.getItem("theme") == "system") {
if (e.matches) {
setDarkTheme();
} else {
setLightTheme();
}
}
});
function setTheme() {
if (localStorage.getItem("theme") == "system") {
localStorage.setItem("theme", "light");
setLightTheme();
} else if (localStorage.getItem("theme") == "light") {
localStorage.setItem("theme", "dark");
setDarkTheme();
} else {
localStorage.setItem("theme", "system");
setSystemTheme();
}
}</script>
</div>
<footer>
© 2023 Club Enigma
</footer>
</body>
</html>