-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcontact.html
79 lines (68 loc) · 1.81 KB
/
contact.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
<!DOCTYPE html>
<html>
<head>
<title>My Portfolio</title>
<link href="https://fonts.googleapis.com/css?family=Russo+One" rel="stylesheet">
<style>
* {
margin: 0;
padding: 0;
}
body {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
min-height: 100vh;
background: #FFFFFF;
overflow: hidden;
}
.loader {
position: relative;
width: 300px;
height: 10px;
background: #FFF;
-webkit-box-reflect: below 1px linear-gradient(transparent,#0005);
animation: animate 20s linear infinite;
background-size: 500%;
border-radius: 10px; /* Adjust the value to make the bar more or less rounded */
}
.loader::before,
.loader::after
{
content:'';
position: absolute;
inset: 0;
background: linear-gradient(90deg,#fb0094,#0000ff,#00ff00,#ffff00,#fb0094,#0000ff,#00ff00,#ffff00,#fb0094);
animation: animate 20s linear infinite;
background-size: 500%;
border-radius: 10px; /* Adjust the value to make the bar more or less rounded */
}
.loader::after
{
filter: blur(20px);
}
@keyframes animate
{
0%
{
background-position: 500% 0;
}
100%
{
background-position: 0 0;
}
}
.content {
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
text-align: center;
}
</style>
</head>
<body>
<div class="loader"></div>
</body>
</html>