-
Notifications
You must be signed in to change notification settings - Fork 0
/
common.css
77 lines (68 loc) · 1.27 KB
/
common.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
.template-with-arrow {
color: rgb(119, 58, 224);
font-weight: bold;
margin-top: 10px;
cursor: pointer;
}
.arrow-image {
width: 30px;
height: 20px;
margin-left: 8px;
margin-bottom: -7px;
transition: 0.5s;
}
.template-with-arrow:hover .arrow-image {
transform: translateX(6px);
}
._2nd-page,
._3rd-page,
._4th-page,
._5th-page,
._6th-page {
display: flex;
padding: 0 105px;
margin-top: 120px;
align-items: center;
}
.template-heading-1,
.template-heading-2,
.faq-heading {
margin-top: 120px;
text-align: center;
}
.template-1,
._7th-page,
._8th-page,
._9th-page,
._10th-page,
.template-2 {
display: flex;
padding: 0 105px;
margin-top: 120px;
justify-content: space-between;
align-items: center;
}
.feedback {
padding: 0 105px;
margin-top: 120px;
align-items: center;
}
.questions {
margin: 60px 0 0 0;
display: grid;
grid-template-columns: 1fr 1fr;
padding: 0 105px;
column-gap: 55px;
}
.final-page {
margin-top: 40px;
background-image: url("assets/final_page/background.webp");
background-size: cover;
background-repeat: no-repeat;
text-align: center;
background-position: center center;
}
footer {
margin-top: 100px;
padding: 0 130px 80px 130px;
}