Attic is a cozy space with lofty ambitions.
attic.social
1.flex {
2 display: flex;
3 gap: 10px;
4}
5
6.flex-wrap {
7 flex-wrap: wrap;
8}
9
10.ac-around {
11 align-content: space-around;
12}
13.ac-between {
14 align-content: space-between;
15}
16.ac-evenly {
17 align-content: space-evenly;
18}
19.ac-center {
20 align-content: center;
21}
22.ac-end {
23 align-content: end;
24}
25.ac-start {
26 align-content: start;
27}
28.ac-stretch {
29 align-content: stretch;
30}
31
32.ai-baseline {
33 align-items: baseline;
34}
35.ai-center {
36 align-items: center;
37}
38.ai-end {
39 align-items: end;
40}
41.ai-start {
42 align-items: start;
43}
44.ai-stretch {
45 align-items: stretch;
46}
47
48.jc-around {
49 justify-content: space-around;
50}
51.jc-between {
52 justify-content: space-between;
53}
54.jc-evenly {
55 justify-content: space-evenly;
56}
57.jc-center {
58 justify-content: center;
59}
60.jc-end {
61 justify-content: end;
62}
63.jc-start {
64 justify-content: start;
65}
66.jc-stretch {
67 justify-content: stretch;
68}
69
70.ji-baseline {
71 justify-items: baseline;
72}
73.ji-center {
74 justify-items: center;
75}
76.ji-end {
77 justify-items: end;
78}
79.ji-start {
80 justify-items: start;
81}
82.ji-stretch {
83 justify-items: stretch;
84}