forked from zombieFox/nightTab
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathutilities.css
More file actions
55 lines (42 loc) · 694 Bytes
/
Copy pathutilities.css
File metadata and controls
55 lines (42 loc) · 694 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
.margin-top-0 {
margin-top: 0 !important;
}
.margin-right-0 {
margin-right: 0 !important;
}
.margin-bottom-0 {
margin-bottom: 0 !important;
}
.margin-left-0 {
margin-left: 0 !important;
}
.is-hidden {
display: none !important;
}
.is-inline-block {
display: inline-block !important;
}
.is-block {
display: block !important;
}
.is-transparent {
opacity: 0 !important;
}
.is-opaque {
opacity: 1 !important;
}
.is-invisible {
visibility: hidden !important;
}
.is-visible {
visibility: visible !important;
}
.is-scrolll-disabled {
overflow: hidden !important;
}
.is-small {
transform: scale(0.5) !important;
}
.is-large {
transform: scale(1.5) !important;
}