-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgreet.css
More file actions
96 lines (96 loc) · 1.97 KB
/
Copy pathgreet.css
File metadata and controls
96 lines (96 loc) · 1.97 KB
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
#GreetContainer{
height: 100%;
width: 100%;
overflow: hidden;
display: block;
animation-name: bodyTalk;
animation-duration: 0.9s;
animation-iteration-count: 1;
animation-delay: 2s;
animation-fill-mode: forwards;
}
#Greeting{
width: 50%;
height: 100vh;
margin: auto;
padding: 0;
background-color: black;
color: rgb(99, 232, 255);
text-align: center;
font-family: sans-serif;
overflow: visible;
}
#Greeting h1{
margin: auto;
font-size: 7vw;
display: block;
animation-name: dropIn;
animation-duration: 0.8s;
animation-iteration-count: 1;
animation-timing-function: cubic-bezier(0.075, 0.82, 0.165, 1)
}
@keyframes dropIn{
from{transform: scale(10);}
to{transform: none;}
}
#greetSpacer{
width: 100%;
height: 1px;
padding-top: 33vh;
}
#topGreet{
width: 0%;
height: 5px;
background-color: rgb(54, 141, 255);
animation-name: boxingLeft;
animation-iteration-count: 1;
animation-duration: 0.9s;
animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
animation-delay: 1s;
}
#botGreet{
width: 0%;
height: 5px;
background-color: rgb(54, 141, 255);
animation-name: boxingRight;
animation-iteration-count: 1;
animation-duration: 0.9s;
animation-timing-function: cubic-bezier(0.165, 0.84, 0.44, 1);
animation-delay: 1s;
}
@keyframes boxingLeft{
0%{
width: 0%;
}
50%{
width: 100%;
transform: none;
}
100%{
width: 0%;
transform: translateX(90vh);
}
}
@keyframes boxingRight{
0%{
width: 0%;
transform: translateX(90vh)
}
50%{
width: 100%;
transform: none;
}
100%{
width: 0%;
}
}
@keyframes bodyTalk{
0%{
opacity: 1;
}
100%{
transform: scale(5);
opacity: 0;
display: block;
}
}