@natec/mef-dev-ui-kit 0.0.41 → 0.0.312
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +1 -1
- package/src/lib/styles/pg/_color.scss +0 -689
- package/src/lib/styles/pg/_dropdown.scss +0 -38
- package/src/lib/styles/pg/_mixins.scss +0 -1010
- package/src/lib/styles/pg/_responsive.scss +0 -1140
- package/src/lib/styles/pg/_var.scss +0 -198
- package/src/lib/styles/pg/core.scss +0 -276
- package/src/lib/styles/pg/icons.scss +0 -330
- package/src/lib/styles/pg/modules/_breadcrumb.scss +0 -66
- package/src/lib/styles/pg/modules/_buttons.scss +0 -65
- package/src/lib/styles/pg/modules/_cards.scss +0 -417
- package/src/lib/styles/pg/modules/_form_elements.scss +0 -1335
- package/src/lib/styles/pg/modules/_header.scss +0 -259
- package/src/lib/styles/pg/modules/_horizontal-layout.scss +0 -183
- package/src/lib/styles/pg/modules/_horizontal_menu.scss +0 -344
- package/src/lib/styles/pg/modules/_jqx.scss +0 -11
- package/src/lib/styles/pg/modules/_layout.scss +0 -180
- package/src/lib/styles/pg/modules/_lock_screen.scss +0 -92
- package/src/lib/styles/pg/modules/_login.scss +0 -62
- package/src/lib/styles/pg/modules/_misc.scss +0 -703
- package/src/lib/styles/pg/modules/_modals.scss +0 -281
- package/src/lib/styles/pg/modules/_print.scss +0 -32
- package/src/lib/styles/pg/modules/_secondary-sidebar.scss +0 -243
- package/src/lib/styles/pg/modules/_select.scss +0 -599
- package/src/lib/styles/pg/modules/_sidebar.scss +0 -413
- package/src/lib/styles/pg/modules/_switch.scss +0 -144
- package/src/lib/styles/pg/modules/_tabs.scss +0 -336
- package/src/lib/styles/pg/modules/_tabs_accordian.scss +0 -662
- package/src/lib/styles/pg/modules/_timepicker.scss +0 -34
- package/src/lib/styles/pg/modules/_typography.scss +0 -743
- package/src/lib/styles/pg/modules/_uploader.scss +0 -226
- package/src/lib/styles/pg/modules/_view.scss +0 -127
- package/src/lib/styles/pg/modules/_z_index.scss +0 -33
- package/src/lib/styles/pg/toaster.scss +0 -22
- package/src/lib/styles/pg/utils.scss +0 -32
- package/src/lib/styles/pg/vendor/ng-datatable.scss +0 -263
- package/src/lib/styles/pg/vendor/ngx-google-map.scss +0 -18
- package/src/lib/styles/pg/vendor/typehead.scss +0 -29
|
@@ -1,743 +0,0 @@
|
|
|
1
|
-
/*------------------------------------------------------------------
|
|
2
|
-
[5. Typography]
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
/* Standard elements
|
|
6
|
-
--------------------------------------------------
|
|
7
|
-
*/
|
|
8
|
-
|
|
9
|
-
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,500,600");
|
|
10
|
-
|
|
11
|
-
html {
|
|
12
|
-
font-size: 100%;
|
|
13
|
-
-ms-text-size-adjust: 100%;
|
|
14
|
-
-webkit-text-size-adjust: 100%;
|
|
15
|
-
}
|
|
16
|
-
body {
|
|
17
|
-
color: $color-master;
|
|
18
|
-
font-family: $base-font-family;
|
|
19
|
-
font-size: 14px;
|
|
20
|
-
font-weight: normal;
|
|
21
|
-
letter-spacing: 0.01em;
|
|
22
|
-
-webkit-font-smoothing: antialiased;
|
|
23
|
-
-webkit-text-size-adjust: 100%;
|
|
24
|
-
-ms-text-size-adjust: 100%;
|
|
25
|
-
-webkit-font-feature-settings: "kern" 1;
|
|
26
|
-
-moz-font-feature-settings: "kern" 1;
|
|
27
|
-
}
|
|
28
|
-
/* Headings
|
|
29
|
-
------------------------------------
|
|
30
|
-
*/
|
|
31
|
-
|
|
32
|
-
h3 small,
|
|
33
|
-
h4 small,
|
|
34
|
-
h5 small {
|
|
35
|
-
font-weight: 300;
|
|
36
|
-
}
|
|
37
|
-
h1.block,
|
|
38
|
-
h2.block,
|
|
39
|
-
h3.block,
|
|
40
|
-
h4.block,
|
|
41
|
-
h5.block,
|
|
42
|
-
h6.block {
|
|
43
|
-
padding-bottom: 10px;
|
|
44
|
-
}
|
|
45
|
-
/* Lins and Others
|
|
46
|
-
------------------------------------
|
|
47
|
-
*/
|
|
48
|
-
a {
|
|
49
|
-
text-shadow: none !important;
|
|
50
|
-
color: $color-primary-dark;
|
|
51
|
-
transition: color 0.1s linear 0s, background-color 0.1s linear 0s,
|
|
52
|
-
opacity 0.2s linear 0s !important;
|
|
53
|
-
}
|
|
54
|
-
a:focus,
|
|
55
|
-
a:hover,
|
|
56
|
-
a:active {
|
|
57
|
-
color: $color-primary;
|
|
58
|
-
}
|
|
59
|
-
a,
|
|
60
|
-
a:focus,
|
|
61
|
-
a:hover,
|
|
62
|
-
a:active {
|
|
63
|
-
outline: 0 !important;
|
|
64
|
-
text-decoration: none;
|
|
65
|
-
}
|
|
66
|
-
a[ng-click] {
|
|
67
|
-
cursor: pointer;
|
|
68
|
-
}
|
|
69
|
-
br {
|
|
70
|
-
line-height: normal;
|
|
71
|
-
clear: both;
|
|
72
|
-
}
|
|
73
|
-
code {
|
|
74
|
-
color: $color-danger-dark;
|
|
75
|
-
background-color: $color-master-lighter;
|
|
76
|
-
&:hover {
|
|
77
|
-
background-color: $color-danger-lighter;
|
|
78
|
-
}
|
|
79
|
-
}
|
|
80
|
-
p {
|
|
81
|
-
display: block;
|
|
82
|
-
font-size: 14px;
|
|
83
|
-
font-weight: normal;
|
|
84
|
-
letter-spacing: 0.01em;
|
|
85
|
-
line-height: 22px;
|
|
86
|
-
margin: 0px 0px 10px 0px;
|
|
87
|
-
font-style: normal;
|
|
88
|
-
white-space: normal;
|
|
89
|
-
}
|
|
90
|
-
small,
|
|
91
|
-
.small {
|
|
92
|
-
line-height: 18px;
|
|
93
|
-
font-size: 85%;
|
|
94
|
-
}
|
|
95
|
-
label {
|
|
96
|
-
&.inline {
|
|
97
|
-
display: inline-block;
|
|
98
|
-
position: relative;
|
|
99
|
-
top: 0px;
|
|
100
|
-
font-size: 13px;
|
|
101
|
-
}
|
|
102
|
-
}
|
|
103
|
-
ul,
|
|
104
|
-
ol {
|
|
105
|
-
margin-bottom: 10px;
|
|
106
|
-
& > li {
|
|
107
|
-
padding-left: 3px;
|
|
108
|
-
line-height: 24px;
|
|
109
|
-
}
|
|
110
|
-
&.lg-icon {
|
|
111
|
-
& > li {
|
|
112
|
-
font-size: 21px;
|
|
113
|
-
& span {
|
|
114
|
-
font-size: 14px;
|
|
115
|
-
}
|
|
116
|
-
}
|
|
117
|
-
}
|
|
118
|
-
&.no-style {
|
|
119
|
-
list-style: none;
|
|
120
|
-
padding-left: 5px;
|
|
121
|
-
}
|
|
122
|
-
}
|
|
123
|
-
address {
|
|
124
|
-
margin-bottom: 0px;
|
|
125
|
-
a {
|
|
126
|
-
color: $color-master;
|
|
127
|
-
}
|
|
128
|
-
}
|
|
129
|
-
blockquote {
|
|
130
|
-
padding: 0 0 0 18px;
|
|
131
|
-
border-left: 0;
|
|
132
|
-
&:before {
|
|
133
|
-
content: "";
|
|
134
|
-
font-family: FontAwesome;
|
|
135
|
-
content: "\f10d";
|
|
136
|
-
margin-right: 13px;
|
|
137
|
-
float: left;
|
|
138
|
-
}
|
|
139
|
-
p {
|
|
140
|
-
font-size: 16px;
|
|
141
|
-
}
|
|
142
|
-
small {
|
|
143
|
-
line-height: 29px;
|
|
144
|
-
color: #8b91a0;
|
|
145
|
-
padding-left: 30px;
|
|
146
|
-
&:before {
|
|
147
|
-
content: "";
|
|
148
|
-
}
|
|
149
|
-
}
|
|
150
|
-
&.pull-right {
|
|
151
|
-
border-right: 0;
|
|
152
|
-
&:before {
|
|
153
|
-
float: right;
|
|
154
|
-
content: "";
|
|
155
|
-
font-family: FontAwesome;
|
|
156
|
-
content: "\f10d";
|
|
157
|
-
margin-left: 13px;
|
|
158
|
-
margin-right: 0;
|
|
159
|
-
}
|
|
160
|
-
small {
|
|
161
|
-
padding-right: 30px;
|
|
162
|
-
&:after {
|
|
163
|
-
content: "";
|
|
164
|
-
}
|
|
165
|
-
}
|
|
166
|
-
}
|
|
167
|
-
}
|
|
168
|
-
hr {
|
|
169
|
-
border-color: $color-master-light;
|
|
170
|
-
&.double {
|
|
171
|
-
border-width: 2px;
|
|
172
|
-
}
|
|
173
|
-
&.dotted {
|
|
174
|
-
border-style: dotted none none;
|
|
175
|
-
}
|
|
176
|
-
}
|
|
177
|
-
|
|
178
|
-
/* Font Sizes
|
|
179
|
-
------------------------------------
|
|
180
|
-
*/
|
|
181
|
-
|
|
182
|
-
.small-text {
|
|
183
|
-
font-size: 12px !important;
|
|
184
|
-
}
|
|
185
|
-
.normal-text {
|
|
186
|
-
font-size: 13px !important;
|
|
187
|
-
}
|
|
188
|
-
.large-text {
|
|
189
|
-
font-size: 15px !important;
|
|
190
|
-
}
|
|
191
|
-
|
|
192
|
-
/* Font Weights
|
|
193
|
-
------------------------------------
|
|
194
|
-
*/
|
|
195
|
-
|
|
196
|
-
.normal {
|
|
197
|
-
font-weight: normal;
|
|
198
|
-
}
|
|
199
|
-
.semi-bold {
|
|
200
|
-
font-weight: 400 !important;
|
|
201
|
-
}
|
|
202
|
-
.bold {
|
|
203
|
-
font-weight: bold !important;
|
|
204
|
-
}
|
|
205
|
-
.light {
|
|
206
|
-
font-weight: 300 !important;
|
|
207
|
-
}
|
|
208
|
-
|
|
209
|
-
/* Misc
|
|
210
|
-
------------------------------------
|
|
211
|
-
*/
|
|
212
|
-
|
|
213
|
-
.logo {
|
|
214
|
-
margin: 18px 14px;
|
|
215
|
-
}
|
|
216
|
-
.all-caps {
|
|
217
|
-
text-transform: uppercase;
|
|
218
|
-
}
|
|
219
|
-
.muted {
|
|
220
|
-
color: lighten($color-master, 50%);
|
|
221
|
-
}
|
|
222
|
-
.hint-text {
|
|
223
|
-
opacity: 0.7;
|
|
224
|
-
}
|
|
225
|
-
.no-decoration {
|
|
226
|
-
text-decoration: none !important;
|
|
227
|
-
}
|
|
228
|
-
/* Monochrome Colors
|
|
229
|
-
------------------------------------
|
|
230
|
-
*/
|
|
231
|
-
|
|
232
|
-
.bg-master {
|
|
233
|
-
background-color: $color-master;
|
|
234
|
-
}
|
|
235
|
-
.bg-master-light {
|
|
236
|
-
background-color: $color-master-light;
|
|
237
|
-
}
|
|
238
|
-
.bg-master-lighter {
|
|
239
|
-
background-color: $color-master-lighter;
|
|
240
|
-
}
|
|
241
|
-
.bg-master-lightest {
|
|
242
|
-
background-color: $color-master-lightest;
|
|
243
|
-
}
|
|
244
|
-
.bg-master-dark {
|
|
245
|
-
background-color: $color-master-dark;
|
|
246
|
-
}
|
|
247
|
-
.bg-master-darker {
|
|
248
|
-
background-color: $color-master-darker;
|
|
249
|
-
}
|
|
250
|
-
.bg-master-darkest {
|
|
251
|
-
background-color: $color-master-darkest;
|
|
252
|
-
}
|
|
253
|
-
|
|
254
|
-
/* Contextual Colors
|
|
255
|
-
------------------------------------
|
|
256
|
-
*/
|
|
257
|
-
|
|
258
|
-
/* Primary
|
|
259
|
-
------------------------------------
|
|
260
|
-
*/
|
|
261
|
-
.bg-primary {
|
|
262
|
-
background-color: $color-primary !important;
|
|
263
|
-
}
|
|
264
|
-
.bg-primary-dark {
|
|
265
|
-
background-color: $color-primary-dark;
|
|
266
|
-
}
|
|
267
|
-
.bg-primary-darker {
|
|
268
|
-
background-color: $color-primary-darker;
|
|
269
|
-
}
|
|
270
|
-
.bg-primary-light {
|
|
271
|
-
background-color: $color-primary-light;
|
|
272
|
-
}
|
|
273
|
-
.bg-primary-lighter {
|
|
274
|
-
background-color: $color-primary-lighter;
|
|
275
|
-
}
|
|
276
|
-
|
|
277
|
-
/* Complete
|
|
278
|
-
------------------------------------
|
|
279
|
-
*/
|
|
280
|
-
.bg-complete {
|
|
281
|
-
background-color: $color-complete;
|
|
282
|
-
}
|
|
283
|
-
.bg-complete-dark {
|
|
284
|
-
background-color: $color-complete-dark;
|
|
285
|
-
}
|
|
286
|
-
.bg-complete-darker {
|
|
287
|
-
background-color: $color-complete-darker;
|
|
288
|
-
}
|
|
289
|
-
.bg-complete-light {
|
|
290
|
-
background-color: $color-complete-light;
|
|
291
|
-
}
|
|
292
|
-
.bg-complete-lighter {
|
|
293
|
-
background-color: $color-complete-lighter;
|
|
294
|
-
}
|
|
295
|
-
|
|
296
|
-
/* Success
|
|
297
|
-
------------------------------------
|
|
298
|
-
*/
|
|
299
|
-
.bg-success {
|
|
300
|
-
background-color: $color-success !important;
|
|
301
|
-
}
|
|
302
|
-
.bg-success-dark {
|
|
303
|
-
background-color: $color-success-dark;
|
|
304
|
-
}
|
|
305
|
-
.bg-success-darker {
|
|
306
|
-
background-color: $color-success-darker;
|
|
307
|
-
}
|
|
308
|
-
.bg-success-light {
|
|
309
|
-
background-color: $color-success-light;
|
|
310
|
-
}
|
|
311
|
-
.bg-success-lighter {
|
|
312
|
-
background-color: $color-success-lighter;
|
|
313
|
-
}
|
|
314
|
-
|
|
315
|
-
/* Info
|
|
316
|
-
------------------------------------
|
|
317
|
-
*/
|
|
318
|
-
.bg-info {
|
|
319
|
-
background-color: $color-info !important;
|
|
320
|
-
}
|
|
321
|
-
.bg-info-dark {
|
|
322
|
-
background-color: $color-info-dark;
|
|
323
|
-
}
|
|
324
|
-
.bg-info-darker {
|
|
325
|
-
background-color: $color-info-darker;
|
|
326
|
-
}
|
|
327
|
-
.bg-info-light {
|
|
328
|
-
background-color: $color-info-light;
|
|
329
|
-
}
|
|
330
|
-
.bg-info-lighter {
|
|
331
|
-
background-color: $color-info-lighter;
|
|
332
|
-
}
|
|
333
|
-
|
|
334
|
-
/* Danger
|
|
335
|
-
------------------------------------
|
|
336
|
-
*/
|
|
337
|
-
.bg-danger {
|
|
338
|
-
background-color: $color-danger !important;
|
|
339
|
-
}
|
|
340
|
-
.bg-danger-dark {
|
|
341
|
-
background-color: $color-danger-dark;
|
|
342
|
-
}
|
|
343
|
-
.bg-danger-darker {
|
|
344
|
-
background-color: $color-danger-darker;
|
|
345
|
-
}
|
|
346
|
-
.bg-danger-light {
|
|
347
|
-
background-color: $color-danger-light;
|
|
348
|
-
}
|
|
349
|
-
.bg-danger-lighter {
|
|
350
|
-
background-color: $color-danger-lighter;
|
|
351
|
-
}
|
|
352
|
-
|
|
353
|
-
/* Warning
|
|
354
|
-
------------------------------------
|
|
355
|
-
*/
|
|
356
|
-
.bg-warning {
|
|
357
|
-
background-color: $color-warning !important;
|
|
358
|
-
}
|
|
359
|
-
.bg-warning-dark {
|
|
360
|
-
background-color: $color-warning-dark;
|
|
361
|
-
}
|
|
362
|
-
.bg-warning-darker {
|
|
363
|
-
background-color: $color-warning-darker !important;
|
|
364
|
-
}
|
|
365
|
-
.bg-warning-light {
|
|
366
|
-
background-color: $color-warning-light !important;
|
|
367
|
-
}
|
|
368
|
-
.bg-warning-lighter {
|
|
369
|
-
background-color: $color-warning-lighter;
|
|
370
|
-
}
|
|
371
|
-
|
|
372
|
-
/* More Color Options
|
|
373
|
-
------------------------------------
|
|
374
|
-
*/
|
|
375
|
-
|
|
376
|
-
/* Menu
|
|
377
|
-
------------------------------------
|
|
378
|
-
*/
|
|
379
|
-
.bg-menu-dark {
|
|
380
|
-
background-color: $color-menu-dark;
|
|
381
|
-
}
|
|
382
|
-
.bg-menu {
|
|
383
|
-
background-color: $color-menu;
|
|
384
|
-
}
|
|
385
|
-
.bg-menu-light {
|
|
386
|
-
background-color: $color-menu-light;
|
|
387
|
-
}
|
|
388
|
-
|
|
389
|
-
/* Gradients
|
|
390
|
-
------------------------------------
|
|
391
|
-
*/
|
|
392
|
-
.gradient-grey {
|
|
393
|
-
background: -webkit-linear-gradient(
|
|
394
|
-
top,
|
|
395
|
-
rgba(0, 0, 0, 0) 0%,
|
|
396
|
-
rgba(0, 0, 0, 0.8) 75%
|
|
397
|
-
);
|
|
398
|
-
background: linear-gradient(
|
|
399
|
-
to bottom,
|
|
400
|
-
rgba(0, 0, 0, 0) 0%,
|
|
401
|
-
rgba(0, 0, 0, 0.8) 75%
|
|
402
|
-
);
|
|
403
|
-
}
|
|
404
|
-
.gradient-black {
|
|
405
|
-
background: -webkit-linear-gradient(
|
|
406
|
-
top,
|
|
407
|
-
rgba(0, 0, 0, 0) 0%,
|
|
408
|
-
rgba(0, 0, 0, 0.8) 75%
|
|
409
|
-
);
|
|
410
|
-
background: linear-gradient(
|
|
411
|
-
to bottom,
|
|
412
|
-
rgba(0, 0, 0, 0) 0%,
|
|
413
|
-
rgba(0, 0, 0, 0.8) 75%
|
|
414
|
-
);
|
|
415
|
-
}
|
|
416
|
-
|
|
417
|
-
/* Other Colors
|
|
418
|
-
------------------------------------
|
|
419
|
-
*/
|
|
420
|
-
.bg-white {
|
|
421
|
-
background-color: #fff;
|
|
422
|
-
}
|
|
423
|
-
.bg-transparent {
|
|
424
|
-
background-color: transparent !important;
|
|
425
|
-
}
|
|
426
|
-
|
|
427
|
-
/* Text Colors */
|
|
428
|
-
.link {
|
|
429
|
-
opacity: 0.7;
|
|
430
|
-
&:hover {
|
|
431
|
-
opacity: 1;
|
|
432
|
-
}
|
|
433
|
-
}
|
|
434
|
-
.text-master {
|
|
435
|
-
color: $color-master !important;
|
|
436
|
-
}
|
|
437
|
-
.text-master-light {
|
|
438
|
-
color: $color-master-light !important;
|
|
439
|
-
}
|
|
440
|
-
.text-black {
|
|
441
|
-
color: $color-master-dark !important;
|
|
442
|
-
}
|
|
443
|
-
.text-white {
|
|
444
|
-
color: #fff !important;
|
|
445
|
-
}
|
|
446
|
-
.text-complete {
|
|
447
|
-
color: $color-complete !important;
|
|
448
|
-
}
|
|
449
|
-
.text-success {
|
|
450
|
-
color: $color-success !important;
|
|
451
|
-
}
|
|
452
|
-
.text-info {
|
|
453
|
-
color: $color-info !important;
|
|
454
|
-
}
|
|
455
|
-
.text-warning {
|
|
456
|
-
color: $color-warning !important;
|
|
457
|
-
}
|
|
458
|
-
.text-warning-dark {
|
|
459
|
-
color: $color-warning-dark !important;
|
|
460
|
-
}
|
|
461
|
-
|
|
462
|
-
.text-danger {
|
|
463
|
-
color: $color-danger !important;
|
|
464
|
-
}
|
|
465
|
-
.text-primary {
|
|
466
|
-
color: $color-primary !important;
|
|
467
|
-
}
|
|
468
|
-
|
|
469
|
-
/* Text Aligngments
|
|
470
|
-
------------------------------------
|
|
471
|
-
*/
|
|
472
|
-
|
|
473
|
-
.text-right {
|
|
474
|
-
text-align: right !important;
|
|
475
|
-
}
|
|
476
|
-
.text-left {
|
|
477
|
-
text-align: left !important;
|
|
478
|
-
}
|
|
479
|
-
.text-center {
|
|
480
|
-
text-align: center !important;
|
|
481
|
-
}
|
|
482
|
-
|
|
483
|
-
/* Labels
|
|
484
|
-
------------------------------------
|
|
485
|
-
*/
|
|
486
|
-
|
|
487
|
-
.label {
|
|
488
|
-
padding: 3px 9px;
|
|
489
|
-
font-size: 11px;
|
|
490
|
-
line-height: 1;
|
|
491
|
-
text-shadow: none;
|
|
492
|
-
background-color: $color-master-light;
|
|
493
|
-
font-weight: 600;
|
|
494
|
-
color: $color-master;
|
|
495
|
-
border-radius: 0.25em;
|
|
496
|
-
}
|
|
497
|
-
.label-success {
|
|
498
|
-
background-color: $color-success;
|
|
499
|
-
color: #fff;
|
|
500
|
-
}
|
|
501
|
-
.label-warning {
|
|
502
|
-
background-color: $color-warning;
|
|
503
|
-
color: #fff;
|
|
504
|
-
}
|
|
505
|
-
.label-important,
|
|
506
|
-
.label-danger {
|
|
507
|
-
background-color: $color-danger;
|
|
508
|
-
color: #fff;
|
|
509
|
-
}
|
|
510
|
-
.label-info {
|
|
511
|
-
background-color: $color-complete;
|
|
512
|
-
color: #fff;
|
|
513
|
-
}
|
|
514
|
-
.label-inverse {
|
|
515
|
-
background-color: $color-complete-dark;
|
|
516
|
-
color: #fff;
|
|
517
|
-
}
|
|
518
|
-
.label-white {
|
|
519
|
-
background-color: #fff;
|
|
520
|
-
color: $color-master;
|
|
521
|
-
}
|
|
522
|
-
|
|
523
|
-
/* Font Sizes
|
|
524
|
-
------------------------------------
|
|
525
|
-
*/
|
|
526
|
-
.fs-10 {
|
|
527
|
-
font-size: 10px !important;
|
|
528
|
-
}
|
|
529
|
-
.fs-11 {
|
|
530
|
-
font-size: 10.5px !important;
|
|
531
|
-
}
|
|
532
|
-
.fs-12 {
|
|
533
|
-
font-size: 12px !important;
|
|
534
|
-
}
|
|
535
|
-
.fs-13 {
|
|
536
|
-
font-size: 13px !important;
|
|
537
|
-
}
|
|
538
|
-
.fs-14 {
|
|
539
|
-
font-size: 14px !important;
|
|
540
|
-
}
|
|
541
|
-
.fs-15 {
|
|
542
|
-
font-size: 15px !important;
|
|
543
|
-
}
|
|
544
|
-
.fs-16 {
|
|
545
|
-
font-size: 16px !important;
|
|
546
|
-
}
|
|
547
|
-
|
|
548
|
-
/* Line-heights
|
|
549
|
-
------------------------------------
|
|
550
|
-
*/
|
|
551
|
-
.lh-normal {
|
|
552
|
-
line-height: normal;
|
|
553
|
-
}
|
|
554
|
-
.lh-10 {
|
|
555
|
-
line-height: 10px;
|
|
556
|
-
}
|
|
557
|
-
.lh-11 {
|
|
558
|
-
line-height: 11px;
|
|
559
|
-
}
|
|
560
|
-
.lh-12 {
|
|
561
|
-
line-height: 12px;
|
|
562
|
-
}
|
|
563
|
-
.lh-13 {
|
|
564
|
-
line-height: 13px;
|
|
565
|
-
}
|
|
566
|
-
.lh-14 {
|
|
567
|
-
line-height: 14px;
|
|
568
|
-
}
|
|
569
|
-
.lh-15 {
|
|
570
|
-
line-height: 15px;
|
|
571
|
-
}
|
|
572
|
-
.lh-16 {
|
|
573
|
-
line-height: 16px;
|
|
574
|
-
}
|
|
575
|
-
|
|
576
|
-
/* Font Faces
|
|
577
|
-
------------------------------------
|
|
578
|
-
*/
|
|
579
|
-
|
|
580
|
-
.font-arial {
|
|
581
|
-
font-family: Arial, sans-serif !important;
|
|
582
|
-
}
|
|
583
|
-
.font-montserrat {
|
|
584
|
-
font-family: montserrat-regular !important;
|
|
585
|
-
}
|
|
586
|
-
.font-georgia {
|
|
587
|
-
font-family: Georgia !important;
|
|
588
|
-
}
|
|
589
|
-
.font-heading {
|
|
590
|
-
font-family: $base-font-family;
|
|
591
|
-
}
|
|
592
|
-
|
|
593
|
-
/* Wells
|
|
594
|
-
------------------------------------
|
|
595
|
-
*/
|
|
596
|
-
.well {
|
|
597
|
-
background-color: $color-master-light;
|
|
598
|
-
-webkit-border-radius: 3px;
|
|
599
|
-
-moz-border-radius: 3px;
|
|
600
|
-
border-radius: 3px;
|
|
601
|
-
-webkit-box-shadow: none !important;
|
|
602
|
-
-moz-box-shadow: none !important;
|
|
603
|
-
box-shadow: none !important;
|
|
604
|
-
border: none;
|
|
605
|
-
background-image: none;
|
|
606
|
-
&.well-large {
|
|
607
|
-
padding: 24px;
|
|
608
|
-
width: auto;
|
|
609
|
-
}
|
|
610
|
-
&.well-small {
|
|
611
|
-
padding: 13px;
|
|
612
|
-
width: auto;
|
|
613
|
-
}
|
|
614
|
-
&.green {
|
|
615
|
-
background-color: $color-complete;
|
|
616
|
-
color: $color-white;
|
|
617
|
-
border: none;
|
|
618
|
-
}
|
|
619
|
-
}
|
|
620
|
-
.overflow-ellipsis {
|
|
621
|
-
text-overflow: ellipsis;
|
|
622
|
-
overflow: hidden;
|
|
623
|
-
white-space: nowrap;
|
|
624
|
-
}
|
|
625
|
-
|
|
626
|
-
.jumbotron {
|
|
627
|
-
@include border-radius(0);
|
|
628
|
-
p {
|
|
629
|
-
font-size: 14px;
|
|
630
|
-
font-weight: normal;
|
|
631
|
-
margin-bottom: inherit;
|
|
632
|
-
&.small {
|
|
633
|
-
font-size: 85%;
|
|
634
|
-
}
|
|
635
|
-
}
|
|
636
|
-
}
|
|
637
|
-
|
|
638
|
-
/* Responsive Handlers : Typo
|
|
639
|
-
------------------------------------
|
|
640
|
-
*/
|
|
641
|
-
|
|
642
|
-
@media (max-width: 1400px) {
|
|
643
|
-
body,
|
|
644
|
-
p {
|
|
645
|
-
font-size: 13px;
|
|
646
|
-
line-height: 20px;
|
|
647
|
-
}
|
|
648
|
-
|
|
649
|
-
h1 {
|
|
650
|
-
font-size: 33px;
|
|
651
|
-
line-height: 44px;
|
|
652
|
-
letter-spacing: -0.08px;
|
|
653
|
-
}
|
|
654
|
-
h2 {
|
|
655
|
-
font-size: 28px;
|
|
656
|
-
line-height: 40px;
|
|
657
|
-
}
|
|
658
|
-
h3 {
|
|
659
|
-
font-size: 24px;
|
|
660
|
-
line-height: 35.88px;
|
|
661
|
-
}
|
|
662
|
-
h4 {
|
|
663
|
-
font-size: 18px;
|
|
664
|
-
line-height: 33.88px;
|
|
665
|
-
}
|
|
666
|
-
h5 {
|
|
667
|
-
font-size: 16px;
|
|
668
|
-
line-height: 25.88px;
|
|
669
|
-
}
|
|
670
|
-
small,
|
|
671
|
-
.small {
|
|
672
|
-
font-size: 89%;
|
|
673
|
-
line-height: 17px;
|
|
674
|
-
}
|
|
675
|
-
}
|
|
676
|
-
|
|
677
|
-
/* For Windows : Fixes
|
|
678
|
-
------------------------------------
|
|
679
|
-
*/
|
|
680
|
-
.windows {
|
|
681
|
-
body,
|
|
682
|
-
p {
|
|
683
|
-
font-size: 13px;
|
|
684
|
-
letter-spacing: normal;
|
|
685
|
-
}
|
|
686
|
-
h3 {
|
|
687
|
-
font-size: 29px;
|
|
688
|
-
line-height: 33px;
|
|
689
|
-
}
|
|
690
|
-
h4 {
|
|
691
|
-
font-size: 23px;
|
|
692
|
-
line-height: 32px;
|
|
693
|
-
}
|
|
694
|
-
h5 {
|
|
695
|
-
font-size: 19px;
|
|
696
|
-
line-height: 28px;
|
|
697
|
-
font-weight: normal;
|
|
698
|
-
}
|
|
699
|
-
|
|
700
|
-
.jumbotron p {
|
|
701
|
-
font-size: 13px;
|
|
702
|
-
&.small {
|
|
703
|
-
font-size: 85%;
|
|
704
|
-
}
|
|
705
|
-
}
|
|
706
|
-
small,
|
|
707
|
-
.small {
|
|
708
|
-
font-size: 89%;
|
|
709
|
-
}
|
|
710
|
-
}
|
|
711
|
-
|
|
712
|
-
.alert {
|
|
713
|
-
& > p,
|
|
714
|
-
& > ul {
|
|
715
|
-
margin-bottom: 0;
|
|
716
|
-
}
|
|
717
|
-
}
|
|
718
|
-
.table {
|
|
719
|
-
& > tbody {
|
|
720
|
-
& > tr {
|
|
721
|
-
& > td,
|
|
722
|
-
& > th {
|
|
723
|
-
line-height: 1.42857143;
|
|
724
|
-
}
|
|
725
|
-
}
|
|
726
|
-
}
|
|
727
|
-
& > tfoot {
|
|
728
|
-
& > tr {
|
|
729
|
-
& > td,
|
|
730
|
-
& > th {
|
|
731
|
-
line-height: 1.42857143;
|
|
732
|
-
}
|
|
733
|
-
}
|
|
734
|
-
}
|
|
735
|
-
& > thead {
|
|
736
|
-
& > tr {
|
|
737
|
-
& > td,
|
|
738
|
-
& > th {
|
|
739
|
-
line-height: 1.42857143;
|
|
740
|
-
}
|
|
741
|
-
}
|
|
742
|
-
}
|
|
743
|
-
}
|