generated from CodeChefVIT/template
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathmakeChanges.html
218 lines (194 loc) · 5.27 KB
/
makeChanges.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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta
name="viewport"
content="width=device-width, initial-scale=1.0, viewport-fit=cover"
/>
<meta name="theme-color" content="#101D42" />
<meta property="og:locale" content="en, pt-br" />
<meta property="og:site_name" content="Maganez" />
<link
rel="shortcut icon"
href="https://maganezf-me.vercel.app/favicon.svg"
title="favicon"
/>
<link rel="stylesheet" href="admin.css" />
<title>Admin Dashboard</title>
</head>
<body>
<div id="particles-js"></div>
<div class="container">
<img
class="profile-picture"
src="bg.png"
loading="lazy"
/>
<button class="abc">
Log Out
</button>
<h2>Codechef</h2>
<p class="subtitle">A student technical chapter</p></br>
<p class="subtitle">
Keep connected with our work 👨💻
</p>
<div class="info-container">
<div class="content">
<h3>Main links below 👇🏼</h3>
<div class="checkbox">
<input type="checkbox" class="checkbox">
<a
target="_blank"
rel="noopener noreferrer"
href="#r"
class="link"
>
<ion-icon name="mail"></ion-icon>
My personal website
</a>
<ul>
<li class="li-hours">1000<span id="visits"></span> visits</li>
</ul>
</div>
<div class="checkbox">
<input type="checkbox" class="checkbox">
<a
target="_blank"
rel="noopener noreferrer"
href="#r"
class="link"
>
<ion-icon name="logo-github"></ion-icon>
My Github
</a>
<ul>
<li class="li-hours">1000<span id="visits"></span> visits</li>
</ul>
</div>
<div class="checkbox">
<input type="checkbox" class="checkbox">
<a
target="_blank"
rel="noopener noreferrer"
href="#r"
class="link"
>
<ion-icon name="logo-linkedin"></ion-icon>
My Linkedin
</a>
<ul>
<li class="li-hours">1000<span id="visits"></span> visits</li>
</ul>
</div>
<div class="checkbox">
<input type="checkbox" class="checkbox">
<a
target="_blank"
rel="noopener noreferrer"
href="#r"
class="link"
>
<ion-icon name="mail"></ion-icon>
My Personal email
</a>
<ul>
<li class="li-hours">1000<span id="visits"></span> visits</li>
</ul>
</div>
<div class="checkbox">
<input type="checkbox" class="checkbox">
<a
target="_blank"
rel="noopener noreferrer"
href="#r"
class="link"
>
<ion-icon name="mail"></ion-icon>
My Institutional email
</a>
<ul>
<li class="li-hours">1000<span id="visits"></span> visits</li>
</ul>
</div>
<div class="checkbox">
<a
target="_blank"
rel="noopener noreferrer"
href="#r"
class="link highlight"
>
Add Link
</a>
</div>
</div>
</div>
</div>
</body>
<script src="https://unpkg.com/ionicons@5.4.0/dist/ionicons.js"></script>
<script src="https://cdn.jsdelivr.net/particles.js/2.0.0/particles.min.js"></script>
<script>
particlesJS("particles-js", {
particles: {
number: { value: 1200, density: { enable: true, value_area: 790 } },
color: { value: "#ffffff" },
shape: {
type: "circle",
stroke: { width: 0, color: "#000000" },
polygon: { nb_sides: 5 },
image: { src: "img/github.svg", width: 100, height: 100 },
},
opacity: {
value: 0.5,
random: false,
anim: { enable: true, speed: 0.2, opacity_min: 0, sync: false },
},
size: {
value: 2,
random: true,
anim: { enable: true, speed: 2, size_min: 0.3, sync: false },
},
line_linked: {
enable: false,
distance: 150,
color: "#ffffff",
opacity: 0.4,
width: 1,
},
move: {
enable: true,
speed: 1,
direction: "top-right",
random: true,
straight: false,
out_mode: "out",
bounce: false,
attract: { enable: false, rotateX: 600, rotateY: 600 },
},
},
interactivity: {
detect_on: "canvas",
events: {
onhover: { enable: true, mode: "bubble" },
onclick: { enable: true, mode: "push" },
resize: true,
},
modes: {
grab: { distance: 400, line_linked: { opacity: 1 } },
bubble: {
distance: 83.91608391608392,
size: 1,
duration: 3,
opacity: 1,
speed: 3,
},
repulse: { distance: 200, duration: 0.4 },
push: { particles_nb: 4 },
remove: { particles_nb: 2 },
},
},
retina_detect: true,
});
</script>
</html>