-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathabout_us.css
74 lines (72 loc) · 1.16 KB
/
about_us.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
* {
margin: 0;
padding: 0;
background-color: rgb(151, 151, 155);
}
.movingDashboard {
color: #babdd8;
width: 90%;
font-size: 15px;
font-family: sans-serif;
position: absolute;
top: 3%;
left: 50%;
transform: translate(-50%, -50%);
}
.text-box2 {
width: 90%;
font-size: 40px;
font-family: sans-serif;
position: absolute;
top: 30%;
left: 50%;
transform: translate(-50%, -50%);
}
.text-box {
width: 80%;
font-size: 100px;
font-family: sans-serif;
position: absolute;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
}
span {
animation: mover 6s linear infinite;
display: inline-block;
color: #fff;
font-weight: bolder;
}
@keyframes mover {
0% {
text-shadow: 0 0 30px rgba(255, 0, 0, 0);
}
50% {
text-shadow: 0 0 30px rgba(255, 0, 0, 0.3);
transform: translateY(30px);
}
100% {
text-shadow: 0 0 30px rgba(255, 0, 0, 0);
}
}
span:nth-child(1) {
animation-delay: 0.5s;
}
span:nth-child(2) {
animation-delay: 1s;
}
span:nth-child(3) {
animation-delay: 1.5s;
}
span:nth-child(4) {
animation-delay: 2s;
}
span:nth-child(5) {
animation-delay: 2.5s;
}
span:nth-child(6) {
animation-delay: 3s;
}
span:nth-child(7) {
animation-delay: 3.5s;
}