-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.css
76 lines (62 loc) · 1.19 KB
/
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
/* title */
h1 {
color: #501ac5;
text-align: center;
font-size: 5rem;
transform: scale(0.94);
animation: scale 3s forwards cubic-bezier(0.5, 1, 0.89, 1);
}
@keyframes scale {
100% {
transform: scale(1);
}
}
span {
display: inline-block;
opacity: 0;
filter: blur(0.4rem);
}
span:nth-child(1) {
animation: fade-in 0.8s 0.1s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
span:nth-child(2) {
animation: fade-in 0.8s 0.2s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
span:nth-child(3) {
animation: fade-in 0.8s 0.3s forwards cubic-bezier(0.11, 0, 0.5, 0);
}
@keyframes fade-in {
100% {
opacity: 1;
filter: blur(0);
}
}
/* container */
.bank-content {
display: flex;
flex-direction: row;
flex-wrap: wrap;
justify-content: space-evenly;
align-items: center;
align-content: space-around;
}
.box {
display: flex;
justify-content: center;
}
.content {
width: 45%;
float: left;
padding: 1rem;
}
.bank-img ,h2,h3,p{
display: flex;
justify-content: center;
}
h2 , h3 {
color: #e72e12;
}
p {
padding: 0.5rem;
color: rgba(rgb(228, 70, 183), rgb(221, 40, 100), blue, alpha);
}