-
Notifications
You must be signed in to change notification settings - Fork 0
/
_auk-u-generic.scss
75 lines (59 loc) · 1.37 KB
/
_auk-u-generic.scss
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
/* ==========================================================================
Utilities: generic (no category)
========================================================================== */
.auk-u-hidden {
display: none !important;
}
.auk-u-inline-block {
display: inline-block !important;
}
.auk-u-block {
display: block !important;
}
.auk-u-inline {
display: inline !important;
}
.auk-u-align-middle {
vertical-align: middle !important;
}
.auk-u-sr-only {
position: absolute !important;
left: -10000px !important;
top: auto !important;
width: 1px !important;
height: 1px !important;
overflow: hidden !important;
}
.auk-u-sr-only-table-cell {
position: absolute !important;
height: 1px; width: 1px;
overflow: hidden;
clip: rect(1px, 1px, 1px, 1px);
}
.auk-u-overflow-hidden {
overflow: hidden !important;
}
.auk-u-bg-alt {
background-color: $auk-gray-100 !important;
}
.auk-u-opacity--1\/2 {
opacity: 0.5 !important;
}
.auk-u-opacity--1\/3 {
opacity: 0.33 !important;
}
.auk-u-border-top {
border-top: .1rem solid $auk-gray-300 !important;
}
.auk-u-border-right {
border-right: .1rem solid $auk-gray-300 !important;
}
.auk-u-border-bottom {
border-bottom: .1rem solid $auk-gray-300 !important;
}
.auk-u-border-left {
border-left: .1rem solid $auk-gray-300 !important;
}
.auk-u-position-relative {
position: relative !important;
}