This repository has been archived by the owner on Oct 29, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomponents.css
237 lines (202 loc) · 5.59 KB
/
components.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
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
/* LOADING ANIMATION based on https://github.com/tobiasahlin/SpinKit
Licensed under MIT https://github.com/tobiasahlin/SpinKit/blob/master/LICENSE
*/
.loadingAnimation {
width: 100%;
}
.loadingAnimation .spinner {
margin: 15px auto 0;
width: 70px;
text-align: center;
}
.loadingAnimation .spinner > div {
width: 18px;
height: 18px;
background-color: #333;
border-radius: 100%;
display: inline-block;
-webkit-animation: bouncedelay 1.4s infinite ease-in-out;
animation: bouncedelay 1.4s infinite ease-in-out;
/* Prevent first frame from flickering when animation starts */
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.loadingAnimation .spinner .bounce1 {
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.loadingAnimation .spinner .bounce2 {
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
@-webkit-keyframes bouncedelay {
0%, 80%, 100% { -webkit-transform: scale(0.0) }
40% { -webkit-transform: scale(1.0) }
}
@keyframes bouncedelay {
0%, 80%, 100% {
transform: scale(0.0);
-webkit-transform: scale(0.0);
} 40% {
transform: scale(1.0);
-webkit-transform: scale(1.0);
}
}
.waitingAnimation {
width: 100%;
display: block;
text-align: center;
padding-bottom: 20px;
}
.waitingAnimation .spinner {
margin: 15px auto 0;
width: 70px;
text-align: center;
}
.waitingAnimation .spinner > div {
width: 18px;
height: 18px;
background-color: #333;
border-radius: 100%;
display: inline-block;
-webkit-animation: bouncedelay 1.4s infinite ease-in-out;
animation: bouncedelay 1.4s infinite ease-in-out;
/* Prevent first frame from flickering when animation starts */
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
.waitingAnimation .spinner .bounce1 {
-webkit-animation-delay: -0.32s;
animation-delay: -0.32s;
}
.waitingAnimation .spinner .bounce2 {
-webkit-animation-delay: -0.16s;
animation-delay: -0.16s;
}
/* End LOADING ANIMATION */
/* TOGGLE SWITCH */
.onoffswitch {
position: relative; width: 58px;
-webkit-user-select:none; -moz-user-select:none; -ms-user-select: none;
}
.onoffswitch-checkbox {
display: none;
}
.onoffswitch-label {
display: block; overflow: hidden; cursor: pointer;
border: 1px solid #2e6da4; border-radius: 3px;
}
.onoffswitch-inner {
display: block; width: 200%; margin-left: -100%;
-moz-transition: margin 0.2s ease-in 0s; -webkit-transition: margin 0.2s ease-in 0s;
-o-transition: margin 0.2s ease-in 0s; transition: margin 0.2s ease-in 0s;
}
.onoffswitch-inner:before, .onoffswitch-inner:after {
display: block; float: left; width: 50%; height: 20px; padding: 0; line-height: 20px;
font-size: 16px; color: white; font-family: Trebuchet, Arial, sans-serif; font-weight: bold;
-moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box;
}
.onoffswitch-inner:before {
content: "";
padding-left: 10px;
background-color: #337ab7; color: #FFFFFF;
}
.onoffswitch-inner:after {
content: "";
padding-right: 10px;
background-color: #F8F8F8; color: #666666;
text-align: right;
}
.onoffswitch-switch {
display: block; width: 30px; margin: 0px;
background: #FFFFFF;
border: 1px solid #2e6da4; border-radius: 3px;
position: absolute; top: 0; bottom: 0; right: 24px;
-moz-transition: all 0.2s ease-in 0s; -webkit-transition: all 0.2s ease-in 0s;
-o-transition: all 0.2s ease-in 0s; transition: all 0.2s ease-in 0s;
background-image: -moz-linear-gradient(center top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
background-image: -webkit-linear-gradient(center top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
background-image: -o-linear-gradient(center top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
background-image: linear-gradient(center top, rgba(0,0,0,0.1) 0%, rgba(0,0,0,0) 100%);
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-inner {
margin-left: 0;
}
.onoffswitch-checkbox:checked + .onoffswitch-label .onoffswitch-switch {
right: 0px;
}
/* End TOGGLE SWITCH */
/* SELECT2 customizations */
.select2-results {
font-size: 14px;
}
.select2-container {
border: 1px solid #f4f4f4 !important;
}
.select2-search-choice-close {
background-position: right -11px;
}
.select2-container-multi .select2-choices .select2-search-choice {
margin: 3px;
padding: 4px 4px 4px 15px !important;
background: #008000 !important;
color: white !important;
border: 0;
z-index: 9999;
border-radius: 5px !important;
text-decoration: none !important;
background-image: none;
-webkit-box-shadow: none;
-moz-box-shadow: none;
box-shadow: none;
}
/* End SELECT2 customizations */
/* bootstrap3xeditable customizations */
.editable-inline {
margin-top: 5px;
width: 99% !important;
}
.editable-inline input {
font-size: 16px !important;
}
.editable-cancel {
margin-right: 5px;
margin-left: 0px !important;
min-width: 50px;
}
.editable-submit {
margin-left: 0px !important;
min-width: 50px;
}
.editableform .form-control {
width: 220px;
}
/* END bootstrap3xeditable customizations */
/* noty customizations */
#noty_bottomCenter_layout_container {
bottom: 70px !important;
}
/* END noty customizations */
.markdown-content img {
max-width: 95%;
height: auto;
box-shadow: 2px 2px 14px 0px rgba(0,0,0,0.75);
display: block;
margin-left: auto;
margin-right: auto;
}
.markdown-content h1 {
font-size: 20px;
}
.markdown-content h2 {
font-size: 18px;
}
.markdown-content h3 {
font-size: 16px;
}
.markdown-content h4 {
font-size: 14px;
}
.markdown-content h5 {
font-size: 12px;
}