-
Notifications
You must be signed in to change notification settings - Fork 2
/
thankyou.css
53 lines (46 loc) · 840 Bytes
/
thankyou.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
#main-wrapper {
width: 100%;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
padding-top: 4%;
}
#tick-wrapper{
width: 200px;
height: 200px;
background-color: #49d049;
border-radius: 50%;
padding: 40px;
box-sizing: border-box;
animation: popup 1s;
}
#tick-wrapper img {
width: 100%;
}
@keyframes popup {
0% {
transform: scale(0);
}
60% {
transform: scale(1.25, 1.25);
}
100% {
transform: scale(1, 1);
}
}
.main-heading {
font-size: 36px;
color: rgba(0, 0, 0, 0.8);
font-weight: 600;
margin: 0;
margin-top: 48px;
margin-bottom: 16px;
}
.section-heading {
font-size: 20px;
color: rgba(0, 0, 0, 0.8);
font-weight: 400;
margin: 0;
margin-bottom: 16px;
}