@natec/mef-dev-ui-kit 0.0.313 → 0.0.670
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/README.md +24 -24
- package/esm2020/lib/markup-kit/card/card/card.component.mjs +3 -3
- package/esm2020/lib/markup-kit/card/card-long/card-long.component.mjs +2 -2
- package/esm2020/lib/markup-kit/card/card-simple/card-simple.component.mjs +2 -2
- package/esm2020/lib/markup-kit/collapse/collapse/collapse.component.mjs +3 -3
- package/esm2020/lib/markup-kit/page-layouts/manage-page/manage-page.component.mjs +2 -2
- package/esm2020/lib/markup-kit/page-layouts/profile/profile.component.mjs +2 -2
- package/esm2020/lib/markup-kit/utils/filtered-field/filtered-field-container/filtered-field-container.component.mjs +3 -3
- package/esm2020/lib/markup-kit/utils/filtered-field/filtered-field-item/filtered-field-item.component.mjs +3 -3
- package/esm2020/lib/markup-kit/utils/filtered-field/filtered-field.module.mjs +1 -1
- package/esm2020/lib/markup-kit/utils/filtered-field/filtered-field.service.mjs +1 -1
- package/esm2020/lib/markup-kit/utils/help-block/help-block.component.mjs +3 -3
- package/esm2020/lib/markup-kit/utils/help-block/hepl-block.module.mjs +1 -1
- package/esm2020/lib/markup-kit/utils/loader/loader/loader.component.mjs +1 -1
- package/esm2020/lib/markup-kit/utils/loader/loader.module.mjs +1 -1
- package/esm2020/lib/markup-kit/utils/loader/loader.service.mjs +16 -11
- package/esm2020/public-api.mjs +1 -1
- package/fesm2015/natec-mef-dev-ui-kit.mjs +33 -28
- package/fesm2015/natec-mef-dev-ui-kit.mjs.map +1 -1
- package/fesm2020/natec-mef-dev-ui-kit.mjs +33 -28
- package/fesm2020/natec-mef-dev-ui-kit.mjs.map +1 -1
- package/lib/markup-kit/utils/loader/loader.service.d.ts +2 -0
- package/package.json +6 -6
- package/src/lib/styles/fonts/main-img-font/icomoon.eot +0 -0
- package/src/lib/styles/fonts/main-img-font/icomoon.svg +57 -0
- package/src/lib/styles/fonts/main-img-font/icomoon.ttf +0 -0
- package/src/lib/styles/fonts/main-img-font/icomoon.woff +0 -0
- package/src/lib/styles/fonts/pgicon/Pages-icon.eot +0 -0
- package/src/lib/styles/fonts/pgicon/Pages-icon.svg +112 -0
- package/src/lib/styles/fonts/pgicon/Pages-icon.ttf +0 -0
- package/src/lib/styles/fonts/pgicon/Pages-icon.woff +0 -0
- package/src/lib/styles/fonts.scss +0 -77
- package/src/lib/styles/{pg/icons.scss → icons.scss} +5 -5
- package/src/lib/styles/img/editor_tray_2x.png +0 -0
- package/src/lib/styles/img/noti-cross-2x.png +0 -0
- package/src/lib/styles/img/progress-circle-lg-master-static.svg +8 -0
- package/src/lib/styles/img/progress-circle-lg-master.svg +13 -0
- package/src/lib/styles/img/progress-circle-lg-white-static.svg +8 -0
- package/src/lib/styles/img/progress-circle-lg-white.svg +13 -0
- package/src/lib/styles/pg/_responsive.scss +2 -2
- package/src/lib/styles/pg/_var.scss +0 -4
- package/src/lib/styles/pg/core.scss +266 -5
- package/src/lib/styles/pg/modules/_buttons.scss +26 -26
- package/src/lib/styles/pg/modules/_cards.scss +2 -12
- package/src/lib/styles/pg/modules/_tabs.scss +8 -8
- package/src/lib/styles/pg/modules/_typography.scss +0 -48
- package/src/lib/styles/pg/toaster.scss +0 -1
- package/src/lib/styles/pg/vendor/ng-datatable.scss +0 -3
|
@@ -1,8 +1,270 @@
|
|
|
1
1
|
//Core Libs
|
|
2
|
-
|
|
3
2
|
@use '../designe-colors.scss' as c;
|
|
4
|
-
@use '../fonts.scss';
|
|
5
3
|
|
|
4
|
+
/*#region montserrat*/
|
|
5
|
+
@font-face {
|
|
6
|
+
font-family: 'montserrat-bold';
|
|
7
|
+
src: url('../fonts/montserrat/Montserrat-Bold.woff2') format('woff2'),
|
|
8
|
+
url('../fonts/montserrat/Montserrat-Bold.woff') format('woff');
|
|
9
|
+
font-weight: bold;
|
|
10
|
+
font-style: normal;
|
|
11
|
+
font-display: swap;
|
|
12
|
+
}
|
|
13
|
+
|
|
14
|
+
@font-face {
|
|
15
|
+
font-family: 'montserrat-light';
|
|
16
|
+
src: url('../fonts/montserrat/Montserrat-Light.woff2') format('woff2'),
|
|
17
|
+
url('../fonts/montserrat/Montserrat-Light.woff') format('woff');
|
|
18
|
+
font-weight: 300;
|
|
19
|
+
font-style: normal;
|
|
20
|
+
font-display: swap;
|
|
21
|
+
}
|
|
22
|
+
|
|
23
|
+
@font-face {
|
|
24
|
+
font-family: 'montserrat-semibold';
|
|
25
|
+
src: url('../fonts/montserrat/Montserrat-SemiBold.woff2') format('woff2'),
|
|
26
|
+
url('../fonts/montserrat/Montserrat-SemiBold.woff') format('woff');
|
|
27
|
+
font-weight: 600;
|
|
28
|
+
font-style: normal;
|
|
29
|
+
font-display: swap;
|
|
30
|
+
}
|
|
31
|
+
|
|
32
|
+
@font-face {
|
|
33
|
+
font-family: 'montserrat-medium';
|
|
34
|
+
src: url('../fonts/montserrat/Montserrat-Medium.woff2') format('woff2'),
|
|
35
|
+
url('../fonts/montserrat/Montserrat-Medium.woff') format('woff');
|
|
36
|
+
font-weight: 500;
|
|
37
|
+
font-style: normal;
|
|
38
|
+
font-display: swap;
|
|
39
|
+
}
|
|
40
|
+
|
|
41
|
+
@font-face {
|
|
42
|
+
font-family: 'montserrat-regular';
|
|
43
|
+
src: url('../fonts/montserrat/Montserrat-Regular.woff2') format('woff2'),
|
|
44
|
+
url('../fonts/montserrat/Montserrat-Regular.woff') format('woff');
|
|
45
|
+
font-weight: normal;
|
|
46
|
+
font-style: normal;
|
|
47
|
+
font-display: swap;
|
|
48
|
+
}
|
|
49
|
+
/*#endregion montserrat*/
|
|
50
|
+
|
|
51
|
+
/*#region Lato*/
|
|
52
|
+
@font-face {
|
|
53
|
+
font-family: 'Lato-Regular';
|
|
54
|
+
src: url("../fonts/lato/lato-regular.eot?#iefix") format("embedded-opentype"),
|
|
55
|
+
url("../fonts/lato/lato-regular.otf") format("opentype"),
|
|
56
|
+
url("../fonts/lato/lato-regular.svg") format("svg"),
|
|
57
|
+
url("../fonts/lato/lato-regular.ttf") format("truetype"),
|
|
58
|
+
url("../fonts/lato/lato-regular.woff") format("woff"),
|
|
59
|
+
url("../fonts/lato/lato-regular.woff2") format("woff2");
|
|
60
|
+
font-weight: normal;
|
|
61
|
+
font-style: normal;
|
|
62
|
+
font-display: swap;
|
|
63
|
+
}
|
|
64
|
+
|
|
65
|
+
@font-face {
|
|
66
|
+
font-family: 'Lato-Bold';
|
|
67
|
+
src: url("../fonts/lato/lato-bold.eot?#iefix") format("embedded-opentype"),
|
|
68
|
+
url("../fonts/lato/lato-bold.otf") format("opentype"),
|
|
69
|
+
url("../fonts/lato/lato-bold.svg") format("svg"),
|
|
70
|
+
url("../fonts/lato/lato-bold.ttf") format("truetype"),
|
|
71
|
+
url("../fonts/lato/lato-bold.woff") format("woff"),
|
|
72
|
+
url("../fonts/lato/lato-bold.woff2") format("woff2");
|
|
73
|
+
font-weight: bold;
|
|
74
|
+
font-style: normal;
|
|
75
|
+
font-display: swap;
|
|
76
|
+
}
|
|
77
|
+
/*#endregion Lato*/
|
|
78
|
+
|
|
79
|
+
/*#region img-font*/
|
|
80
|
+
@font-face {
|
|
81
|
+
font-family: 'icomoon';
|
|
82
|
+
src: url('../fonts/main-img-font/icomoon.eot?97jr4n');
|
|
83
|
+
src: url('../fonts/main-img-font/icomoon.eot?97jr4n#iefix') format('embedded-opentype'),
|
|
84
|
+
url('../fonts/main-img-font/icomoon.ttf?97jr4n') format('truetype'),
|
|
85
|
+
url('../fonts/main-img-font/icomoon.woff?97jr4n') format('woff'),
|
|
86
|
+
url('../fonts/main-img-font/icomoon.svg?97jr4n#icomoon') format('svg');
|
|
87
|
+
font-weight: normal;
|
|
88
|
+
font-style: normal;
|
|
89
|
+
font-display: block;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
[class^="icon-"], [class*=" icon-"] {
|
|
93
|
+
/* use !important to prevent issues with browser extensions that change ../fonts */
|
|
94
|
+
font-family: 'icomoon' !important;
|
|
95
|
+
speak: never;
|
|
96
|
+
font-style: normal;
|
|
97
|
+
font-weight: normal;
|
|
98
|
+
font-variant: normal;
|
|
99
|
+
text-transform: none;
|
|
100
|
+
line-height: 1;
|
|
101
|
+
|
|
102
|
+
/* Better Font Rendering =========== */
|
|
103
|
+
-webkit-font-smoothing: antialiased;
|
|
104
|
+
-moz-osx-font-smoothing: grayscale;
|
|
105
|
+
}
|
|
106
|
+
|
|
107
|
+
.icon-info-light:before {
|
|
108
|
+
content: "\e90d";
|
|
109
|
+
}
|
|
110
|
+
.icon-connector:before {
|
|
111
|
+
content: "\e90e";
|
|
112
|
+
}
|
|
113
|
+
.icon-information:before {
|
|
114
|
+
content: "\e90f";
|
|
115
|
+
}
|
|
116
|
+
.icon-plugin:before {
|
|
117
|
+
content: "\e910";
|
|
118
|
+
}
|
|
119
|
+
.icon-check-connector:before {
|
|
120
|
+
content: "\e911";
|
|
121
|
+
}
|
|
122
|
+
.icon-computer:before {
|
|
123
|
+
content: "\e913";
|
|
124
|
+
}
|
|
125
|
+
.icon-trash-light:before {
|
|
126
|
+
content: "\e915";
|
|
127
|
+
}
|
|
128
|
+
.icon-ok:before {
|
|
129
|
+
content: "\e917";
|
|
130
|
+
color: #28b446;
|
|
131
|
+
}
|
|
132
|
+
.icon-calendar:before {
|
|
133
|
+
content: "\e919";
|
|
134
|
+
}
|
|
135
|
+
.icon-guard:before {
|
|
136
|
+
content: "\e91f";
|
|
137
|
+
}
|
|
138
|
+
.icon-tenant:before {
|
|
139
|
+
content: "\e922";
|
|
140
|
+
}
|
|
141
|
+
.icon-nok:before {
|
|
142
|
+
content: "\e923";
|
|
143
|
+
}
|
|
144
|
+
.icon-lock .path1:before {
|
|
145
|
+
content: "\e924";
|
|
146
|
+
color: rgb(234, 234, 234);
|
|
147
|
+
}
|
|
148
|
+
.icon-lock .path2:before {
|
|
149
|
+
content: "\e925";
|
|
150
|
+
margin-left: -1.158203125em;
|
|
151
|
+
color: rgb(55, 55, 55);
|
|
152
|
+
}
|
|
153
|
+
.icon-unlock .path1:before {
|
|
154
|
+
content: "\e926";
|
|
155
|
+
}
|
|
156
|
+
.icon-unlock .path2:before {
|
|
157
|
+
content: "\e927";
|
|
158
|
+
margin-left: -1.2109375em;
|
|
159
|
+
}
|
|
160
|
+
.icon-logout:before {
|
|
161
|
+
content: "\e90b";
|
|
162
|
+
}
|
|
163
|
+
.icon-unchecked:before {
|
|
164
|
+
content: "\e90a";
|
|
165
|
+
}
|
|
166
|
+
.icon-notification .path1:before {
|
|
167
|
+
content: "\e902";
|
|
168
|
+
}
|
|
169
|
+
.icon-notification .path2:before {
|
|
170
|
+
content: "\e903";
|
|
171
|
+
margin-left: -1em;
|
|
172
|
+
}
|
|
173
|
+
.icon-notification .path3:before {
|
|
174
|
+
content: "\e904";
|
|
175
|
+
margin-left: -1em;
|
|
176
|
+
}
|
|
177
|
+
.icon-notification .path4:before {
|
|
178
|
+
content: "\e905";
|
|
179
|
+
margin-left: -1em;
|
|
180
|
+
}
|
|
181
|
+
.icon-setings .path1:before {
|
|
182
|
+
content: "\e908";
|
|
183
|
+
}
|
|
184
|
+
.icon-setings .path2:before {
|
|
185
|
+
content: "\e909";
|
|
186
|
+
margin-left: -1em;
|
|
187
|
+
}
|
|
188
|
+
.icon-person:before {
|
|
189
|
+
content: "\e90c";
|
|
190
|
+
}
|
|
191
|
+
.icon-persons:before {
|
|
192
|
+
content: "\e912";
|
|
193
|
+
}
|
|
194
|
+
.icon-configuration:before {
|
|
195
|
+
content: "\e914";
|
|
196
|
+
}
|
|
197
|
+
.icon-support:before {
|
|
198
|
+
content: "\e916";
|
|
199
|
+
}
|
|
200
|
+
.icon-log:before {
|
|
201
|
+
content: "\e918";
|
|
202
|
+
}
|
|
203
|
+
.icon-msg_popup:before {
|
|
204
|
+
content: "\e91a";
|
|
205
|
+
}
|
|
206
|
+
.icon-protect:before {
|
|
207
|
+
content: "\e91b";
|
|
208
|
+
}
|
|
209
|
+
.icon-keys:before {
|
|
210
|
+
content: "\e91c";
|
|
211
|
+
}
|
|
212
|
+
.icon-info:before {
|
|
213
|
+
content: "\e91d";
|
|
214
|
+
}
|
|
215
|
+
.icon-tenats:before {
|
|
216
|
+
content: "\e91e";
|
|
217
|
+
}
|
|
218
|
+
.icon-profile:before {
|
|
219
|
+
content: "\e921";
|
|
220
|
+
}
|
|
221
|
+
.icon-msg:before {
|
|
222
|
+
content: "\e928";
|
|
223
|
+
}
|
|
224
|
+
.icon-arrow:before {
|
|
225
|
+
content: "\e929";
|
|
226
|
+
}
|
|
227
|
+
.icon-warning:before {
|
|
228
|
+
content: "\e92a";
|
|
229
|
+
}
|
|
230
|
+
.icon-messages:before {
|
|
231
|
+
content: "\e92b";
|
|
232
|
+
}
|
|
233
|
+
.icon-pause:before {
|
|
234
|
+
content: "\e92c";
|
|
235
|
+
}
|
|
236
|
+
.icon-play:before {
|
|
237
|
+
content: "\e92e";
|
|
238
|
+
}
|
|
239
|
+
.icon-store:before {
|
|
240
|
+
content: "\e930";
|
|
241
|
+
}
|
|
242
|
+
.icon-trash:before {
|
|
243
|
+
content: "\e931";
|
|
244
|
+
}
|
|
245
|
+
.icon-edit:before {
|
|
246
|
+
content: "\e932";
|
|
247
|
+
}
|
|
248
|
+
.icon-checked:before {
|
|
249
|
+
content: "\e933";
|
|
250
|
+
}
|
|
251
|
+
.icon-bell .path1:before {
|
|
252
|
+
content: "\e936";
|
|
253
|
+
}
|
|
254
|
+
.icon-bell .path2:before {
|
|
255
|
+
content: "\e937";
|
|
256
|
+
margin-left: -0.9658203125em;
|
|
257
|
+
}
|
|
258
|
+
.icon-bell .path3:before {
|
|
259
|
+
content: "\e938";
|
|
260
|
+
margin-left: -0.9658203125em;
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
/*#endregion img-font*/
|
|
264
|
+
|
|
265
|
+
|
|
266
|
+
@import '../icons.scss';
|
|
267
|
+
@import '../fonts.scss';
|
|
6
268
|
|
|
7
269
|
@import 'toaster.scss';
|
|
8
270
|
@import '_color.scss';
|
|
@@ -20,7 +282,6 @@
|
|
|
20
282
|
|
|
21
283
|
|
|
22
284
|
//UI Components
|
|
23
|
-
@import "icons.scss";
|
|
24
285
|
@import "modules/_typography.scss";
|
|
25
286
|
@import "modules/_jqx.scss";
|
|
26
287
|
@import "modules/_breadcrumb.scss";
|
|
@@ -74,8 +335,8 @@
|
|
|
74
335
|
@import "vendor/ngx-google-map.scss";
|
|
75
336
|
|
|
76
337
|
|
|
77
|
-
$base-img-url: "/assets/images" !global;
|
|
78
|
-
$assets-url: "/assets" !global;
|
|
338
|
+
// $base-img-url: "/assets/images" !global;
|
|
339
|
+
// $assets-url: "/assets" !global;
|
|
79
340
|
|
|
80
341
|
.notification-block-header {
|
|
81
342
|
border-bottom: 1px solid #e2e6ea;
|
|
@@ -2,38 +2,38 @@
|
|
|
2
2
|
|
|
3
3
|
|
|
4
4
|
@mixin _button($main_color, $hover_color, $text_color, $hover_text_color, $hover_color_opacity) {
|
|
5
|
-
padding-left: 2em ;
|
|
6
|
-
padding-right: 2em ;
|
|
7
|
-
min-height: 36px ;
|
|
8
|
-
border: 0 ;
|
|
9
|
-
border-radius: 5px ;
|
|
10
|
-
color: $text_color ;
|
|
11
|
-
background-color: $main_color ;
|
|
12
|
-
font-family: montserrat-regular ;
|
|
13
|
-
font-weight: 500 ;
|
|
14
|
-
font-size: 14px ;
|
|
15
|
-
line-height: 24px ;
|
|
5
|
+
padding-left: 2em !important;
|
|
6
|
+
padding-right: 2em !important;
|
|
7
|
+
min-height: 36px !important;
|
|
8
|
+
border: 0 !important;
|
|
9
|
+
border-radius: 5px !important;
|
|
10
|
+
color: $text_color !important;
|
|
11
|
+
background-color: $main_color !important;
|
|
12
|
+
font-family: montserrat-regular !important;
|
|
13
|
+
font-weight: 500 !important;
|
|
14
|
+
font-size: 14px !important;
|
|
15
|
+
line-height: 24px !important;
|
|
16
16
|
&:hover{
|
|
17
|
-
color: $hover_text_color ;
|
|
18
|
-
background-color: $hover_color ;
|
|
19
|
-
opacity: $hover_color_opacity;
|
|
17
|
+
color: $hover_text_color !important;
|
|
18
|
+
background-color: $hover_color !important;
|
|
19
|
+
opacity: $hover_color_opacity !important;
|
|
20
20
|
}
|
|
21
21
|
}
|
|
22
22
|
|
|
23
23
|
@mixin _button_status($main_color, $hover_color, $text_color, $hover_text_color) {
|
|
24
|
-
padding-left: 2em ;
|
|
25
|
-
padding-right: 2em ;
|
|
26
|
-
min-height: 23px ;
|
|
27
|
-
border: 0 ;
|
|
28
|
-
border-radius: 5px ;
|
|
29
|
-
color: $text_color ;
|
|
30
|
-
background-color: $main_color ;
|
|
31
|
-
font-family: Lato-regular ;
|
|
32
|
-
font-size: 11px ;
|
|
33
|
-
line-height: 13px ;
|
|
24
|
+
padding-left: 2em !important;
|
|
25
|
+
padding-right: 2em !important;
|
|
26
|
+
min-height: 23px !important;
|
|
27
|
+
border: 0 !important;
|
|
28
|
+
border-radius: 5px !important;
|
|
29
|
+
color: $text_color !important;
|
|
30
|
+
background-color: $main_color !important;
|
|
31
|
+
font-family: Lato-regular !important;
|
|
32
|
+
font-size: 11px !important;
|
|
33
|
+
line-height: 13px !important;
|
|
34
34
|
&:hover{
|
|
35
|
-
color: $hover_text_color ;
|
|
36
|
-
background-color: $hover_color ;
|
|
35
|
+
color: $hover_text_color !important;
|
|
36
|
+
background-color: $hover_color !important;
|
|
37
37
|
}
|
|
38
38
|
}
|
|
39
39
|
.btn-primary {
|
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
/*------------------------------------------------------------------
|
|
2
2
|
[4. Cards]
|
|
3
|
+
$assets-url: "../../assets" ;
|
|
3
4
|
*/
|
|
4
5
|
|
|
5
6
|
.card {
|
|
@@ -336,13 +337,7 @@
|
|
|
336
337
|
opacity: 0.1;
|
|
337
338
|
}
|
|
338
339
|
}
|
|
339
|
-
.card-icon-refresh-lg-master {
|
|
340
|
-
background-image: url("#{$base-img-url}/progress/progress-circle-lg-master-static.svg");
|
|
341
|
-
}
|
|
342
340
|
|
|
343
|
-
.card-icon-refresh-lg-white {
|
|
344
|
-
background-image: url("#{$base-img-url}/progress/progress-circle-lg-white-static.svg");
|
|
345
|
-
}
|
|
346
341
|
|
|
347
342
|
.card-icon-refresh-lg-master-animated,
|
|
348
343
|
.card-icon-refresh-lg-white-animated {
|
|
@@ -356,12 +351,7 @@
|
|
|
356
351
|
opacity: 1;
|
|
357
352
|
}
|
|
358
353
|
}
|
|
359
|
-
|
|
360
|
-
background-image: url("#{$base-img-url}/progress/progress-circle-lg-master.svg");
|
|
361
|
-
}
|
|
362
|
-
.card-icon-refresh-lg-white-animated {
|
|
363
|
-
background-image: url("#{$base-img-url}/progress/progress-circle-lg-white.svg");
|
|
364
|
-
}
|
|
354
|
+
|
|
365
355
|
|
|
366
356
|
/* For demo purpose only */
|
|
367
357
|
.card-scroll {
|
|
@@ -312,11 +312,11 @@ pg-tab, pg-tabs-nav, pg-tabset {
|
|
|
312
312
|
}
|
|
313
313
|
|
|
314
314
|
& > li > a {
|
|
315
|
-
text-transform:capitalize
|
|
316
|
-
padding-top: 5px
|
|
317
|
-
padding-right: 15px
|
|
318
|
-
padding-left: 15px
|
|
319
|
-
color: white
|
|
315
|
+
text-transform:capitalize;
|
|
316
|
+
padding-top: 5px ;
|
|
317
|
+
padding-right: 15px ;
|
|
318
|
+
padding-left: 15px ;
|
|
319
|
+
color: white;
|
|
320
320
|
}
|
|
321
321
|
|
|
322
322
|
& > li:hover * {
|
|
@@ -324,9 +324,9 @@ pg-tab, pg-tabs-nav, pg-tabset {
|
|
|
324
324
|
}
|
|
325
325
|
|
|
326
326
|
& > li > .active {
|
|
327
|
-
border-radius: 5px 5px 0px 0px
|
|
328
|
-
color: #CF0106
|
|
329
|
-
background-color: white
|
|
327
|
+
border-radius: 5px 5px 0px 0px ;
|
|
328
|
+
color: #CF0106;
|
|
329
|
+
background-color: white;
|
|
330
330
|
}
|
|
331
331
|
}
|
|
332
332
|
|
|
@@ -28,20 +28,6 @@ body {
|
|
|
28
28
|
/* Headings
|
|
29
29
|
------------------------------------
|
|
30
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
31
|
/* Lins and Others
|
|
46
32
|
------------------------------------
|
|
47
33
|
*/
|
|
@@ -646,27 +632,6 @@ hr {
|
|
|
646
632
|
line-height: 20px;
|
|
647
633
|
}
|
|
648
634
|
|
|
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
635
|
small,
|
|
671
636
|
.small {
|
|
672
637
|
font-size: 89%;
|
|
@@ -683,19 +648,6 @@ hr {
|
|
|
683
648
|
font-size: 13px;
|
|
684
649
|
letter-spacing: normal;
|
|
685
650
|
}
|
|
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
651
|
|
|
700
652
|
.jumbotron p {
|
|
701
653
|
font-size: 13px;
|