-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathbase.utils.css
More file actions
97 lines (75 loc) · 1.14 KB
/
Copy pathbase.utils.css
File metadata and controls
97 lines (75 loc) · 1.14 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
.u-t-center {
text-align: center;
}
.u-o-8 {
opacity: 0.8;
}
.u-o-6 {
opacity: 0.6;
}
.u-o-5 {
opacity: 0.5;
}
.u-o-4 {
opacity: 0.4;
}
.u-o-1 {
opacity: 0.1;
}
.u-c-dark {
color: var(--color__text);
}
.u-c-light {
color: var(--color__white);
}
.u-sb-40 {
margin-bottom: var(--spacing--40px);
}
.u-sb-28 {
margin-bottom: var(--spacing--28px);
}
.u-sb-36 {
margin-bottom: var(--spacing--36px);
}
.u-sb-12 {
margin-bottom: var(--spacing--12px);
}
.u-sb-16 {
margin-bottom: var(--spacing--16px);
}
.u-sb-8 {
margin-bottom: var(--spacing--8px);
}
.u-sr-32 {
padding-right: var(--spacing--32px);
}
.u-ab-center {
margin-left: auto;
margin-right: auto;
}
.u-d-block {
display: block;
}
.u-c-cta {
color: var(--color__cta);
}
.u-l-6 {
position: relative;
z-index: var(--level-6);
}
.u-t-truncate {
text-overflow: ellipsis;
white-space: nowrap;
overflow: hidden;
}
.u-f--spaceBetween {
display: flex;
justify-content: space-between;
align-items: center;
}
.u-f--spaceBetween--top {
align-items: flex-start;
}
.u-f--grow1 {
flex-grow: 1;
}