-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout.html
300 lines (268 loc) · 8.1 KB
/
about.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
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
<!DOCTYPE html>
<html>
<head>
<title>Card Effect</title>
<style>
::-webkit-scrollbar {
width: 8px;
height: 8px;
}
::-webkit-scrollbar-track {
background-color: #2c2c2c;
border-radius: 10px;
}
::-webkit-scrollbar-thumb {
background-color: #00bfff; /* Light Sky Blue */
border-radius: 10px;
border: 3px solid #121212;
transition: box-shadow 0.3s ease-in-out, transform 0.2s ease;
}
/* Hover state for glowing effect */
::-webkit-scrollbar-thumb:hover {
background-color: #00bfff;
box-shadow: 0 0 10px 4px #00bfff, 0 0 20px 6px rgba(0, 191, 255, 0.8),
0 0 30px 8px rgba(0, 191, 255, 0.6);
transform: scale(
1.1
); /* Optional: add a slight scale effect for extra emphasis */
}
body {
display: flex;
margin: 0;
padding: 0;
min-height: 100vh;
background: #444;
justify-content: center;
align-items: center;
font-family: arial;
position: relative;
flex-direction: column; /* Stack items vertically */
}
.top-box {
margin-top: 2%;
width: 80%;
background: #333;
color: white;
padding: 20px;
margin-bottom: 20px;
border-radius: 8px;
box-shadow: 0 10px 30px rgba(0, 0, 0, 0.8);
text-align: center;
position: relative;
/* animation: textColor 10s ease infinite; */
}
.top-box:after {
position: absolute;
content: "";
top: 5vw;
left: 0;
right: 0;
z-index: -1;
height: 100%;
width: 100%;
margin: 0 auto;
transform: scale(0.75);
filter: blur(5vw);
background: linear-gradient(270deg, #0fffc1, #7e0fff);
background-size: 200% 200%;
animation: animateGlow 10s ease infinite;
}
@keyframes animateGlow {
0% {
background-position: 0% 50%;
}
50% {
background-position: 100% 50%;
}
100% {
background-position: 0% 50%;
}
}
.top-box p {
font-size: 10pt;
line-height: 1.5;
}
.container {
width: 1000px;
position: relative;
display: flex;
justify-content: space-between;
flex-wrap: wrap;
}
.container .card {
position: relative;
}
.container .card .face {
width: 300px;
height: 200px;
transition: 0.4s;
}
.container .card .face.face1 {
position: relative;
background: #333;
display: flex;
justify-content: center;
align-content: center;
align-items: center;
z-index: 1;
transform: translateY(100px);
}
.container .card:hover .face.face1 {
transform: translateY(0);
box-shadow: inset 0 0 60px whitesmoke, inset 20px 0 80px #f0f,
inset -20px 0 80px #0ff, inset 20px 0 300px #f0f,
inset -20px 0 300px #0ff, 0 0 50px #fff, -10px 0 80px #f0f,
10px 0 80px #0ff;
}
.container .card .face.face1 .content {
opacity: 0.2;
transition: 0.5s;
text-align: center;
}
.container .card:hover .face.face1 .content {
opacity: 1;
}
.container .card .face.face1 .content i {
font-size: 3em;
color: white;
display: inline-block;
}
.container .card .face.face1 .content h3 {
font-size: 1em;
color: white;
text-align: center;
}
.container .card .face.face1 .content a {
transition: 0.5s;
}
.container .card .face.face2 {
position: relative;
background: whitesmoke;
display: flex;
align-items: center;
justify-content: center;
padding: 20px;
box-sizing: border-box;
box-shadow: 0 20px 50px rgba(0, 0, 0, 0.8);
transform: translateY(-100px);
}
.container .card:hover .face.face2 {
transform: translateY(0);
}
.container .card .face.face2 .content p,
a {
font-size: 10pt;
margin: 0;
padding: 0;
color: #333;
}
.container .card .face.face2 .content a {
text-decoration: none;
color: black;
box-sizing: border-box;
outline: 1px dashed #333;
padding: 10px;
margin: 15px 0 0;
display: inline-block;
}
.container .card .face.face2 .content a:hover {
background: #333;
color: whitesmoke;
box-shadow: inset 0px 0px 10px rgba(0, 0, 0, 0.5);
}
/* Back Button Styling */
.back-btn {
background-color: #00bfff;
color: white;
padding: 10px 10px;
border: none;
border-radius: 5px;
font-size: 1.2em;
cursor: pointer;
transition: background-color 0.3s ease, transform 0.2s ease;
position: relative; /* Relative position to allow the card content to be above it */
left: 46%;
transform: translateX(-50%);
margin-top: 20px; /* Space between the button and the card */
}
.back-btn:hover {
background-color: #0088cc; /* Slightly darker blue on hover */
transform: translateX(-50%) scale(1.05);
box-shadow: 0 0 15px rgba(0, 191, 255, 0.8),
0 4px 30px rgba(0, 0, 0, 0.5); /* Glow effect to match the glowing theme */
}
.back-btn:active {
transform: translateX(-50%) scale(0.98);
box-shadow: 0 0 15px rgba(0, 191, 255, 0.8); /* Maintain some glow effect when clicked */
}
</style>
</head>
<body>
<button class="back-btn" onclick="window.history.back();">Back</button>
<!-- New Top Box with Paragraph -->
<div class="top-box">
<p>
This software was built using the Electron framework, which enables the
creation of cross-platform desktop apps using web technologies. One of
the key features is the use of custom addons with node_api.h, providing
better performance and deeper integration. Unlike older frameworks like
C# with CLR or Qt, which can feel limiting, Electron offers a more
flexible and customizable development environment.
</p>
<p>
Learning Electron was challenging, especially due to the lack of
tutorials in its early days, but the effort has paid off. With Electron,
we've created an app that works on Windows, macOS, and Linux, making it
easier to reach a larger audience. Unlike older frameworks that rely on
rigid, pre-built components, Electron allows for more creativity and
flexibility, ensuring our app stays innovative and adaptable to future
needs.
</p>
<!-- Title for Members Section -->
</div>
<div class="container">
<div class="card">
<div class="face face1">
<div class="content">
<i class="fab fa-windows"></i>
<h3>M.BILAL</h3>
</div>
</div>
<div class="face face2">
<div class="content">
<p>Supervisor & Backend Develepor(c++ , js , python , json , node.js)</p>
<a href="#" type="button">Read More</a>
</div>
</div>
</div>
<div class="card">
<div class="face face1">
<div class="content">
<i class="fab fa-android"></i>
<h3>MUSA</h3>
</div>
</div>
<div class="face face2">
<div class="content">
<p>Electron backend Develepor(js)</p>
<a href="#" type="button">Read More</a>
</div>
</div>
</div>
<div class="card">
<div class="face face1">
<div class="content">
<i class="fab fa-apple"></i>
<h3>Abdullah</h3>
</div>
</div>
<div class="face face2">
<div class="content">
<p>Frontend Develepor(HTML & CSS)</p>
<a href="#" type="button">Read More</a>
</div>
</div>
</div>
</div>
</body>
</html>