-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMain.css
103 lines (96 loc) · 1.67 KB
/
Main.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
body{
margin: 0px;
padding: 0px;
background-color:#F2D45A;
}
#main{
position: absolute;
top:50%;
left: 80%;
transform: translate(-50%,-50%);
}
#img{
width: 250px;
position: relative;
animation: anim 3s infinite;
}
@keyframes anim{
0%{
top:0px;
}
50%{
top:25px;
}
100%{
top:0px;
}
}
#shadow1{
height: 10px;
width: 180px;
border-radius: 50%;
position: relative;
top:50%;
left: 50%;
transform: translate(-50%,-50%);
margin-top: 70px;
-webkit-filter:blur(20px);
z-index: 99;
animation: anim2 3s infinite;
}
@keyframes anim2{
0%{
height: 8px;
width: 180px;
background-color: rgba(0,0,0,.6);
}
50%{
height: 3px;
width: 150px;
background-color: rgba(0,0,0,1);
}
100%{
height: 8px;
width: 180px;
background-color: rgba(0,0,0,.6);
}
}
#shadow2{
height: 0px;
width: 0px;
border-radius: 50%;
position: relative;
top:50%;
left: 50%;
transform: translate(-50%,-50%);
-webkit-filter:blur(10px);
z-index: 999;
animation: anim3 3s infinite;
}
@keyframes anim3{
0%{
height: 4px;
width: 130px;
background-color:rgba(0,0,0,.1);
}
50%{
height: 3px;
width: 120px;
background-color:rgba(0,0,0,.7);
}
100%{
height: 4px;
width: 130px;
background-color:rgba(0,0,0,.1);
}
}
#text{
font-family: Gloss And Bloom;
font-size: 120px;
color:#292929;
font-weight: 500;
position: absolute;
top:50%;
left: 40%;
transform: translate(-50%,-50%);
}