-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathThreeColumnLayout.module.css
More file actions
57 lines (50 loc) · 1018 Bytes
/
ThreeColumnLayout.module.css
File metadata and controls
57 lines (50 loc) · 1018 Bytes
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
.three_column_layout {
align-items: flex-start;
display: flex;
flex-direction: column;
justify-content: flex-start;
margin: 0px auto 0px auto;
max-width: 1200px;
width: 100%;
}
.three_column_layout > .column_1 {
align-items: flex-start;
display: flex;
flex-direction: column;
gap: 20px;
justify-content: flex-start;
padding: 20px;
width: 100%;
}
.three_column_layout > .column_2 {
align-items: flex-start;
display: flex;
flex-direction: column;
gap: 20px;
justify-content: flex-start;
padding: 20px;
width: 100%;
}
.three_column_layout > .column_3 {
align-items: flex-start;
display: flex;
flex-direction: column;
gap: 20px;
justify-content: flex-start;
padding: 20px;
width: 100%;
}
@media only screen and (min-width: 769px) {
.three_column_layout {
flex-direction: row;
}
.three_column_layout > .column_1 {
width: 25%;
}
.three_column_layout > .column_2 {
width: 50%;
}
.three_column_layout > .column_3 {
width: 25%;
}
}