-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.css
420 lines (412 loc) · 7.65 KB
/
index.css
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
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
@import url('https://fonts.googleapis.com/css?family=Poppins');
:root{
--background: rgb(0,0,0);
--secondary: rgb(44, 135, 255);
--text-primary: rgb(255, 255, 255);
--text-tertiary: rgb(117, 117, 117);
}
body {
font-family: 'Poppins', sans-serif;
font-weight: bold;
padding:0px;
margin:0px;
max-width:100vw;
overflow-x:hidden;
scroll-behavior: smooth;
background-color: var(--background);
color: var(--text-primary);
}
button {
font-size: 16px;
font-family: 'Poppins', sans-serif;
padding: 12px 25px;
width: fit-content;
border-radius: 8px;
font-weight: bold;
margin: 3vh 0px;
transition: 0.4s ease-in-out;
}
img {
border-radius: 10px;
}
.btn_one {
color: var(--secondary);
background: var(--background);
border: 3px solid var(--secondary);
}
.btn_one:hover {
cursor: pointer;
color: #fff;
background: var(--secondary);
}
.btn_two {
color: var(--background);
background: var(--secondary);
border: 3px solid var(--secondary);
}
.btn_two:hover {
cursor: pointer;
color: #fff;
background: var(--secondary);
}
#loading {
width: 100vw;
height: 100vh;
position: fixed;
background: var(--background);
z-index: 999;
display: flex;
justify-content: center;
flex-direction: column;
align-items: center;
}
#spinner {
animation: rotate 0.56s infinite linear;
width:50px;
height:50px;
border:12px solid var(--secondary);
border-bottom:12px solid #fff;
border-radius:50%;
margin:0;
}
@keyframes rotate {
0% {transform: rotate(0deg);}
100% {transform: rotate(360deg);}
}
header {
width:92vw;
padding:4vh 4vw;
position:fixed;
font-weight:bold;
background-color:rgba(0, 0, 0, 0);
color:var(--text-tertiary);
transition: all 0.4s ease-in-out;
z-index:2;
}
header table {
width:100%;
}
#logo {
width:20%;
}
#navigation {
width:80%;
}
#magnify {
width:100vw;
height:100vh;
background:rgba(0, 0, 0, 0.92);
position:fixed;
z-index:4;
display:none;
flex-direction: column;
justify-content:center;
}
#magnify h1 {
position:absolute;
top:0;
right:0;
margin:20px 40px;
color:#fff;
transition:0.4s ease-in-out;
}
#magnify h1:hover{
color:var(--secondary);
cursor:pointer;
}
#img_here {
width:90%;
height:90%;
background-size:contain !important;
background-repeat:no-repeat !important;
margin:0px auto;
}
#logo {
font-size:24px;
color:var(--secondary);
}
#navigation {
text-align:right;
}
#navigation a {
color:inherit;
text-decoration:none;
padding:5px 10px;
border-bottom:2px solid transparent;
margin-left:4vw;
transition:0.4s ease-in-out;
}
#navigation a:hover{
border-bottom:2px solid #fff;
}
#top_part {
width:100%;
border:2vh solid var(--background);
}
#top_part tr td{
width:50%;
}
#about {
width:84% !important;
height:95vh;
display:flex;
flex-direction:column;
justify-content:center;
text-align:left;
padding:0px 8%;
}
#about h1 {
font-size:45px;
word-wrap:break-word;
}
#about table {
width:70%;
margin-top:4vh;
}
#about table tr td {
width:20% !important;
text-align:left;
}
.social {
color:var(--text-tertiary);
font-size:23px;
padding:12px 17px;
border-radius:50%;
background:transparent;
transition:0.4s ease-in-out;
font-weight:bold;
margin:0px 8px;
}
.social:hover {
cursor: pointer;
color:#fff;
background:var(--secondary);
}
#rightImage {
width:100%;
height:95vh;
border-radius: 20px;
background:url("assets/earth.png") center center;
background-size:cover;
background-repeat:no-repeat;
}
#work {
width:92vw;
padding:6vh 4vw;
font-weight:bold;
}
#work h1 {
padding:5px 0px;
border-bottom:4px solid var(--secondary);
width:fit-content;
}
#photos {
width:100%;
columns:3;
column-gap:4%;
z-index:1;
transition:0.4s ease-in-out;
}
#photos img {
width:100%;
height:auto;
margin:4.5% 0px;
transition:0.4s ease-in-out;
}
#photos img:hover {
transform: scale(1.1);
cursor: pointer;
}
#bio {
width:92vw;
padding:6vh 4vw;
font-weight:bold;
}
#bio h1 {
padding:5px 0px;
border-bottom:4px solid var(--secondary);
width:8%;
}
#contact {
width:92vw;
padding:6vh 4vw;
}
#contact h1 {
padding:5px 0px;
border-bottom:4px solid var(--secondary);
width:10%;
}
#contact table {
width:100%;
}
#contact table tr td {
width:50%;
}
#inner_div table{
width:100%;
}
#inner_div table tr td{
font-weight:bold;
}
#inner_table tr td{
padding:10px 20px !important;
}
#contact form {
width:100%;
}
#contact form input {
width:96%;
margin:20px 1%;
background:transparent;
border:0px;
border-bottom:3px solid rgba(255, 44, 90,0.5);
padding:8px 10px;
font-family: 'Poppins', sans-serif;
font-size:18px;
transition:0.4s ease-in-out;
color:#000;
font-weight:bold;
}
#contact form textarea {
width:96%;
margin:20px 1%;
padding:8px 10px;
border:0px;
border-bottom:3px solid rgba(255, 44, 90,0.5);
padding:8px 10px;
font-family: 'Poppins', sans-serif;
font-size:18px;
background:transparent;
resize:none;
transition:0.4s ease-in-out;
color:#000;
font-weight:bold;
}
#contact form input:focus {
outline:none;
border-bottom:3px solid rgba(255, 44, 90,1);
}
#contact form textarea:focus {
outline:none;
border-bottom:3px solid rgba(255, 44, 90,1);
}
#address {
position:relative;
top:-25px;
left:30px;
}
#footer {
width:100%;
padding:10vh 0px;
text-align:center;
font-weight:bold;
}
#footer a {
color:var(--secondary);
text-decoration:none;
}
::placeholder {
color:#000;
}
button:focus {
outline:none;
}
::-webkit-scrollbar {
width:5px;
height:5px;
}
::-webkit-scrollbar-track {
background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
background: rgb(0, 0, 0);
}
::-webkit-scrollbar-thumb:hover {
background: rgba(0, 0, 0,0.8);
}
@media (max-width: 1000px){
#photos {
columns:1;
column-gap:0%;
}
#photos img {
margin:2% 0px;
}
#photos img:hover {
transform: scale(1);
cursor: pointer;
}
#rightImage {
display:none;
}
#top_part {
border:0px;
}
#top_part tr td{
width:100%;
text-align:center;
}
#about {
width:92% !important;
height:75vh;
padding-top:20vh !important;
text-align:center;
padding:0px 4%;
}
#about table {
width:100%;
margin-top:6vh;
}
#about table tr td {
text-align:center;
}
.btn_one {
padding:6px 30px;
width:60%;
margin:4vh auto;
box-shadow:0px 10px 20px rgba(255, 44, 90, 0.8);
background:var(--secondary);
color:var(--text-primary);
}
.btn_one:hover {
box-shadow:0px 10px 40px rgba(255, 44, 90, 0.8);
cursor:pointer;
}
#contact table tr td {
width:100%;
display:block;
}
#inner_table tr td{
padding:10px 0px !important;
}
#contact form input {
width:90%;
}
#contact form textarea {
width:90%;
}
#work h1 {
width:19%;
}
#bio h1 {
width:25%;
}
#contact h1 {
width:33%;
}
header {
width:96vw;
background:#fff;
padding:4vh 2vw;
position:absolute;
}
#header table tr td {
width:100%;
display:block;
text-align:center;
padding:15px 0px;
}
#navigation a {
color:#000;
}
}