-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathflayout.css
More file actions
65 lines (65 loc) · 912 Bytes
/
flayout.css
File metadata and controls
65 lines (65 loc) · 912 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
58
59
60
61
62
63
64
65
.f-v {
display: flex;
flex-direction: column;
}
.f-h {
display: flex;
flex-direction: row;
}
.f-h-reverse {
display: flex;
flex-direction: row-reverse;
}
.f-v-reverse {
display: flex;
flex-direction: column-reverse;
}
.f-wrap {
flex-wrap: wrap;
}
.f-grow {
flex-grow: 1;
}
.f-span-2 {
flex-grow: 2;
}
.f-span-3 {
flex-grow: 3;
}
.f-span-4 {
flex-grow: 4;
}
@media (max-width: 768px) {
.f-m-h {
display: flex;
flex-direction: column;
}
}
@media (max-width: 768px) {
.f-m-v {
display: flex;
flex-direction: row;
}
}
@media (max-width: 768px) {
.f-m-v-reverse {
display: flex;
flex-direction: row-reverse;
}
}
@media (max-width: 768px) {
.f-m-h-reverse {
display: flex;
flex-direction: column-reverse;
}
}
@media (max-width: 768px) {
.f-m-grow {
flex-grow: 1;
}
}
@media (max-width: 768px) {
.f-m-no-grow {
flex-grow: 0;
}
}