-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathStack.css
More file actions
38 lines (34 loc) · 1.28 KB
/
Stack.css
File metadata and controls
38 lines (34 loc) · 1.28 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
.flex {
display: flex;
}
/* flex-direction */
.flex-column { flex-direction: column; }
.flex-column-reverse { flex-direction: column-reverse; }
.flex-row { flex-direction: row; }
.flex-row-reverse { flex-direction: row-reverse; }
/* flex-wrap */
.flex-nowrap { flex-wrap: nowrap; }
.flex-wrap { flex-wrap: wrap; }
.flex-wrap-reverse { flex-wrap: wrap-reverse; }
/* align-items */
.align-center { align-items: center; }
.align-start { align-items: start; }
.align-end { align-items: end; }
.align-flex-start { align-items: flex-start; }
.align-flex-end { align-items: flex-end; }
.align-self-start { align-items: self-start; }
.align-self-end { align-items: self-end; }
.align-baseline { align-items: baseline; }
.align-stretch { align-items: stretch; }
/* justify-content */
.justify-center { justify-content: center; }
.justify-start { justify-content: start; }
.justify-end { justify-content: end; }
.justify-flex-start { justify-content: flex-start; }
.justify-flex-end { justify-content: flex-end; }
.justify-left { justify-content: left; }
.justify-right { justify-content: right; }
.justify-space-between { justify-content: space-between; }
.justify-space-around { justify-content: space-around; }
.justify-space-evenly { justify-content: space-evenly; }
.justify-stretch { justify-content: stretch; }