-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHome.module.css
More file actions
91 lines (85 loc) · 1.56 KB
/
Home.module.css
File metadata and controls
91 lines (85 loc) · 1.56 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
/* Shared Styles */
.sectionContent {
margin: 0 auto;
padding: 0 120px;
overflow-x: hidden;
}
.gridSection {
display: grid;
grid-template-columns: repeat(12, 1fr);
column-gap: 72px;
max-width: 1240px;
margin: 0 auto;
}
@media only screen and (max-width: 1023px) {
.gridSection {
column-gap: 24px;
}
}
.flexSection {
display: flex;
max-width: 1240px;
margin: 0 auto;
}
.dark {
color: #ffffff;
background: linear-gradient(68.66deg, #0f1011 0%, #010242 100%);
}
.grey {
background: #e8edf4;
}
@media only screen and (max-width: 1023px) {
.sectionContent {
padding: 0 8%;
}
.gridSection {
max-width: none;
margin: 0 20px;
}
.flexSection {
max-width: none;
margin: 0 20px;
}
}
@media only screen and (max-width: 677px) {
.gridSection {
grid-template-columns: repeat(8, 1fr);
}
}
@media only screen and (max-width: 449px) {
.sectionContent {
padding: 0 36px;
}
.gridSection {
grid-template-columns: repeat(1, 1fr);
margin: 0 36px;
}
.flexSection {
max-width: none;
margin: 0 36px;
}
}
/* Testimonials styles */
.testimonials {
padding: 124px 0px 98px;
}
.testimonials .flexSection {
flex-direction: column;
align-items: center;
}
.testimonials .testimonialsHeading {
text-align: center;
margin: 0 0 2rem;
max-width: 51rem;
}
.testimonials .testimonialsHeading:first-of-type {
margin-top: 0;
}
.testimonials .testimonialsCarousel {
margin-top: 4rem;
}
@media only screen and (max-width: 449px) {
.testimonials .testimonialsHeading {
margin-bottom: 2.625rem;
}
}