-
Notifications
You must be signed in to change notification settings - Fork 0
/
old index.css
483 lines (437 loc) · 8.88 KB
/
old 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
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
@import url('https://fonts.googleapis.com/css?family=Josefin+Sans');
body {
padding: 0px;
margin: 0px;
background: linear-gradient(0deg,rgba(0,0,0,0.5),rgba(0,0,0,0.5)),url("https://i.imgur.com/XOVwXM4.jpg") center center;
background-size: cover;
background-color: red;
width: 100vw;
height: 100vh;
overflow: hidden;
font-family: 'Josefin Sans', sans-serif;
}
/* Add a black background color to the top navigation */
.topnav {
background-color: #333;
overflow: hidden;
}
/* Style the links inside the navigation bar */
.topnav a {
float: left;
color: #f2f2f2;
text-align: center;
padding: 14px 16px;
text-decoration: none;
font-size: 17px;
}
/* Change the color of links on hover */
.topnav a:hover {
background-color: #ddd;
color: black;
}
<style>
p {
background-image: url('img_girl.jpg');
}
</style>
/* Add a color to the active/current link */
.topnav a.active {
background-color: #04AA6D;
color: white;
}
#loading {
width: 100vw;
height: 100vh;
position: fixed;
background:rgb(0, 0, 255);
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 #fff;
border-bottom:12px solid rgb(49, 51, 53);
border-radius:50%;
margin:0;
}
@keyframes rotate {
0% {transform: rotate(0deg);}
100% {transform: rotate(360deg);}
}
#box {
width:100vw;
height:100vh;
z-index:9;
position:fixed;
top:0;
}
#box div {
width:16.66vw;
height:100%;
display:inline-block;
}
.box1 {
background:rgb(49, 51, 53);
}
.box2 {
background:rgb(49, 51, 53);
margin-left:-5px;
}
#menu {
width:100%;
text-align:center;
margin:6vh 0px;
display:none;
}
/* The side navigation menu */
.sidenav {
height: 100%; /* 100% Full-height */
width: 0; /* 0 width - change this with JavaScript */
position: fixed; /* Stay in place */
z-index: 1; /* Stay on top */
top: 0; /* Stay at the top */
left: 0;
background-color: #111; /* Black*/
overflow-x: hidden; /* Disable horizontal scroll */
padding-top: 60px; /* Place content 60px from the top */
transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
}
/* The navigation menu links */
.sidenav a {
padding: 8px 8px 8px 32px;
text-decoration: none;
font-size: 25px;
color: #818181;
display: block;
transition: 0.3s;
}
/* When you mouse over the navigation links, change their color */
.sidenav a:hover {
color: #f1f1f1;
}
/* Position and style the close button (top right corner) */
.sidenav .closebtn {
position: absolute;
top: 0;
right: 25px;
font-size: 36px;
margin-left: 50px;
}
/* Style page content - use this if you want to push the page content to the right when you open the side navigation */
#main {
transition: margin-left .5s;
padding: 20px;
}
/* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
@media screen and (max-height: 450px) {
.sidenav {padding-top: 15px;}
.sidenav a {font-size: 18px;}
}
#menu a {
margin:0px 6%;
font-size:19px;
color:#fff;
text-decoration:underline;
}
#middle {
width:100vw;
height:90vh;
display:flex;
flex-direction:column;
justify-content:center;
position:fixed;
top:0;
text-align:center;
z-index:1;
color:#fff;
padding-bottom:10vh;
}
#middle h1 {
color:rgb(255, 50, 50);
font-size:70px;
text-decoration:underline;
}
#about {
width:10vw;
height:10vw;
text-align:center;
font-size:25px;
transform:rotate(-90deg);
background:transparent;
color:#fff;
position:fixed;
left:0;
bottom:40vh;
display:flex;
flex-direction: column;
justify-content:center;
z-index:4;
transition:0.2s ease-in-out;
border-radius:0px 0px 100px 100px;
}
#work {
width:10vw;
height:10vw;
text-align:center;
font-size:25px;
transform:rotate(90deg);
background:transparent;
color:#fff;
position:fixed;
right:0;
bottom:40vh;
display:flex;
flex-direction: column;
justify-content:center;
z-index:4;
transition:0.4s ease-in-out;
border-radius:0px 0px 100px 100px;
}
#contact {
width:10vw;
height:10vw;
text-align:center;
font-size:25px;
background:transparent;
color:#fff;
position:fixed;
bottom:0;
left:45vw;
display:flex;
flex-direction: column;
justify-content:center;
z-index:4;
transition:0.4s ease-in-out;
border-radius:100px 100px 0px 0px;
}
#about:hover {
background:rgba(49,51,53,0.8);
cursor:pointer;
}
#work:hover {
background:rgba(255,50,50,0.9);
cursor:pointer;
}
#contact:hover {
background:rgba(255,50,50,0.9);
cursor:pointer;
}
#middle table {
width: 20%;
margin: 6vh auto;
}
#middle table tr td {
text-align:center;
}
.social {
color: #fff;
font-size: 22px;
border-radius: 50%;
transition: 0.4s ease-in-out;
margin: 0px 8px;
text-align: center;
}
.social:hover {
cursor: pointer;
color:rgb(255, 50, 50);
}
.container {
width:90vw;
height:90vh;
padding:5vh 5vw;
background:rgb(49, 51, 53);
color:#fff;
z-index:9;
position:fixed;
max-height:100vh;
overflow-y:auto;
display:none;
}
.container div {
font-size:25px;
margin:20px 0px;
transition:0.4s ease-in-out;
}
.container div:hover {
cursor:pointer;
}
.container section {
margin:8vh 0px;
}
#used div{
font-size:14px !important;
display:inline-block;
padding:8px 10px;
border:2px solid #fff;
margin:0px 10px;
border-radius:50px;
}
#used:hover {
cursor:text;
}
#used div:hover {
cursor:text;
}
.container h1 {
font-size:60px;
text-decoration:underline;
}
.container p {
font-size:21px;
}
.btn_one {
font-size:18px;
font-family: 'Josefin Sans', sans-serif;
color:#fff;
background:transparent;
border:3px solid #fff;
padding:8px 40px;
border-radius:80px;
font-weight:bold;
margin:2vh 10px;
transition:0.4s ease-in-out;
}
.btn_one:hover {
cursor:pointer;
color:rgb(255, 50, 50);
background:#fff;
}
.btn_two {
font-size:18px;
font-family: 'Josefin Sans', sans-serif;
color:rgb(255, 50, 50);
background:#fff;
border:3px solid #fff;
padding:8px 40px;
border-radius:80px;
font-weight:bold;
margin:2vh 10px;
transition:0.4s ease-in-out;
}
.btn_two:hover {
cursor:pointer;
padding:8px 60px;
}
.container form input {
width:46%;
margin:20px 1%;
background:transparent;
border:0px;
border-bottom:3px solid rgba(255,255,255,0.5);
padding:8px 10px;
font-family: 'Poppins', sans-serif;
font-size:18px;
transition:0.4s ease-in-out;
color:#fff;
font-weight:bold;
}
.container form textarea {
width:96%;
margin:20px 1%;
padding:8px 10px;
border:0px;
border-bottom:3px solid rgba(255,255,255,0.5);
padding:8px 10px;
font-family: 'Poppins', sans-serif;
font-size:18px;
background:transparent;
resize:none;
transition:0.4s ease-in-out;
color:#fff;
font-weight:bold;
}
.container form input:focus {
outline:none;
border-bottom:3px solid rgba(255, 255, 255,1);
}
.container form textarea:focus {
outline:none;
border-bottom:3px solid rgba(255, 255, 255,1);
.example{background-color:''
.backgroundcolor {background-color: rgb(255, 122, 89); }
}
placeholder {
color: #fff;
}
#footer {
color:#fff;
width:92vw;
padding:5vh 4vw;
text-align:right;
position:fixed;
z-index:1;
bottom:0;
font-size:16px;
font-weight:bold;
}
#footer a {
color:rgb(255, 50, 50) ;
}
#particles-js {
position:fixed;
width:100vw;
height:100vh;
}
::-webkit-scrollbar {
width:5px;
height:5px;
}
::-webkit-scrollbar-track {
background: #fff;
}
::-webkit-scrollbar-thumb {
background: rgb(255, 50, 50);
}
::-webkit-scrollbar-thumb:hover {
background: rgba(255, 50, 50,0.8);
}
::selection {
color: #fff;
background: rgb(255, 50, 50);
}
@media (max-width: 800px) {
#about {
display: none;
}
#contact {
display: none;
}
#work {
display: none;
}
#footer {
text-align: center;
}
#middle {
width: 90vw;
padding: 0px 5vw;
}
#middle table {
width: 80%;
}
.container form input {
width: 90%;
}
.container form textarea {
width: 90%;
}
#menu {
display: inline-block;
}
#onlywide {
display: none !important;
}
.box2 {
margin-left: 0px !important;
}
#box div {
width: 100%;
}
}
@charset "UTF-8";
/* CSS Document */