-
Notifications
You must be signed in to change notification settings - Fork 0
/
Other.css
111 lines (108 loc) · 1.79 KB
/
Other.css
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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
/* Scroll Related */
.scroll,
.scroll-x,
.scroll-y {
-webkit-overflow-scrolling: touch;
will-change: scroll-position;
}
.scroll,
body.mobile .scroll--mobile {
overflow: auto;
}
.no-scroll {
overflow: hidden !important;
}
.overflow-auto {
overflow: auto !important;
}
.overflow-hidden {
overflow: hidden !important;
}
.overflow-hidden-y {
overflow-y: hidden !important;
}
.hide-scrollbar {
scrollbar-width: none;
-ms-overflow-style: none;
}
/* Size Related */
.fit {
width: 100% !important;
height: 100% !important;
}
.full-height {
height: 100% !important;
}
.full-width {
width: 100% !important;
margin-left: 0 !important;
margin-right: 0 !important;
}
.full-screen {
z-index: 6000;
border-radius: 0 !important;
max-width: 100vw;
max-height: 100vh;
width: 100vw;
height: 100vh;
}
.window-height {
margin-top: 0 !important;
margin-bottom: 0 !important;
height: 100vh !important;
}
.window-width {
margin-left: 0 !important;
margin-right: 0 !important;
width: 100vw !important;
}
.block {
display: block !important;
}
/* Orientation Related: use build module to generate */
.flip-horizontal {
transform: scaleX(-1);
}
.flip-vertical {
transform: scaleY(-1);
}
.rotate-45 {
transform: rotate(45deg);
}
.rotate-90 {
transform: rotate(90deg);
}
.rotate-135 {
transform: rotate(135deg);
}
.rotate-180 {
transform: rotate(180deg);
}
.rotate-225 {
transform: rotate(225deg);
}
.rotate-270 {
transform: rotate(270deg);
}
.rotate-315 {
transform: rotate(315deg);
}
/* Border Related */
.no-border {
border: 0 !important;
}
.no-border-radius {
border-radius: 0 !important;
}
.no-box-shadow {
box-shadow: none !important;
}
.no-outline {
outline: 0 !important;
}
.rounded-borders {
border-radius: 4px;
}
.border-radius-inherit {
border-radius: inherit;
}