-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathHome.module.css
More file actions
64 lines (61 loc) · 1.06 KB
/
Home.module.css
File metadata and controls
64 lines (61 loc) · 1.06 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
/* 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: 768px) {
.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;
}
}