-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevs.html
More file actions
192 lines (184 loc) · 6.71 KB
/
devs.html
File metadata and controls
192 lines (184 loc) · 6.71 KB
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
<!DOCTYPE html>
<html lang="en">
<head>
<!--App is Live-->
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="theme-color" content="#535353" />
<meta name="mobile-web-app-capable" content="yes" />
<meta name="author" content="Spandan Saxena" />
<meta name="copyright" content="Spandan Saxena" />
<meta name="robots" content="follow" />
<meta property="og:type" content="website" />
<meta property="og:title" content="Take Notes" />
<title>Meet The Devs | Take Notes</title>
<link
rel="apple-touch-icon"
sizes="180x180"
href="images/apple-touch-icon.png"
/>
<link
rel="icon"
type="image/png"
sizes="32x32"
href="images/favicon-32x32.png"
/>
<link
rel="icon"
type="image/png"
sizes="16x16"
href="images/favicon-16x16.png"
/>
<link rel="manifest" href="./manifest.json" />
<link
rel="stylesheet"
href="https://fonts.googleapis.com/css?family=Homemade+Apple|Roboto|Caveat|Liu+Jian+Mao+Cao&display=swap"
/>
<link rel="stylesheet" href="https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css">
<link rel="stylesheet" href="./css/index.css" />
<link rel="stylesheet" href="./css/features.css" />
<style>
/* The flip card container - set the width and height to whatever you want. We have added the border property to demonstrate that the flip itself goes out of the box on hover (remove perspective if you don't want the 3D effect */
.flip-card {
background-color: transparent;
width: 300px;
height: 300px;
perspective: 1000px; /* Remove this if you don't want the 3D effect */
box-shadow: var(--box-shadow);
}
/* This container is needed to position the front and back side */
.flip-card-inner {
position: relative;
width: 100%;
height: 100%;
text-align: center;
transition: transform 0.8s;
transform-style: preserve-3d;
}
/* Do an horizontal flip when you move the mouse over the flip box container */
.flip-card:hover .flip-card-inner {
transform: rotateY(180deg);
}
/* Position the front and back side */
.flip-card-front, .flip-card-back {
position: absolute;
width: 100%;
height: 100%;
-webkit-backface-visibility: hidden; /* Safari */
backface-visibility: hidden;
}
/* Style the front side (fallback if image is missing) */
.flip-card-front {
/* background-color: #bbb; */
color: black;
}
/* Style the back side */
.flip-card-back {
background-color: #ffffff;
color: #000000;
transform: rotateY(180deg);
}
</style>
</head>
<body>
<main>
<button
aria-label="Activate Dark Mode"
title="Toggle Dark Mode"
aria-pressed="false"
onclick="toggleTheme(this)"
class="dark-mode-toggle"
>
<span class="sun">
<img
alt="sun icon that represents light mode"
width="35px"
src="images/bulb_on.svg"
/></span>
<span class="moon"
><img
alt="moon icon to represent dark mode "
width="25px"
src="images/bulb_off_white.svg"
/></span>
</button>
<h1>Meet The <br> Devs!</h1>
<section style="font-size: 1rem; padding: 20px 0px;">
<p>
<strong>Development is an Art! We tried to be as much abstract as possible.
Enjoy Take Notes! ❤ 🎊</strong>
<br /><br /><br />
</p>
</section>
<section style="font-size: 1rem; padding: 20px 0px;">
<center>
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="images/Spandan Saxena.jpg" alt="Avatar" style="width:300px;height:300px;">
</div>
<div class="flip-card-back">
<h1>Spandan Saxena</h1>
<br>
<a href="https://github.com/the-rebooted-coder"><i class="fa fa-github fa-2x"></i></a>
<a href="https://www.linkedin.com/in/spandn/"><i class="fa fa-linkedin fa-2x"></i></a>
<a href="https://spandansaxena.codes"><i class="fa fa-globe fa-2x"></i></a>
</div>
</div>
</div>
<br>
<div class="flip-card">
<div class="flip-card-inner">
<div class="flip-card-front">
<img src="images/Shady.jpeg" alt="Avatar" style="width:300px;height:300px;">
</div>
<div class="flip-card-back">
<h1>Shrish Sharma</h1>
<br>
<a href="https://github.com/shrish-sharma-git"><i class="fa fa-github fa-2x"></i></a>
<a href="https://www.linkedin.com/in/shrish-sharma"><i class="fa fa-linkedin fa-2x"></i></a>
<a href="https://shrishsharma.me/"><i class="fa fa-globe fa-2x"></i></a>
</div>
</div>
</div>
</center>
</section>
</main>
<script
src="./js/vendors/html2canvas.min.js"
crossorigin="anonymous"
></script>
<script type="module" src="js/app.mjs"></script>
<script defer src="https://unpkg.com/jspdf@^1/dist/jspdf.min.js"></script>
<script>
function toggleTheme(toggleButton) {
if (document.body.classList.contains('dark')) {
document.body.classList.add('fade-in-light');
document.body.classList.remove('dark');
document.body.classList.remove('fade-in-dark');
window.localStorage.setItem('prefers-theme', 'light');
if (toggleButton) {
toggleButton.setAttribute('aria-pressed', false);
toggleButton.setAttribute('aria-label', 'Activate Dark Mode');
}
} else {
document.body.classList.add('fade-in-dark');
document.body.classList.add('dark');
document.body.classList.remove('fade-in-light');
window.localStorage.setItem('prefers-theme', 'dark');
if (toggleButton) {
toggleButton.setAttribute('aria-pressed', true);
toggleButton.setAttribute('aria-label', 'Activate Light Mode');
}
}
}
const localPreference = window.localStorage.getItem('prefers-theme');
if (localPreference) {
if (localPreference === 'light') document.body.classList.remove('dark');
else document.body.classList.add('dark');
} else if (window.matchMedia('(prefers-color-scheme: dark)').matches) {
document.body.classList.add('dark');
}
</script>
</body>
</html>