benivo-ui-library 1.2.5
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 +38 -0
- package/benivo-ui-lib.less +8 -0
- package/button.less +353 -0
- package/checkbox.less +201 -0
- package/index.js +1 -0
- package/input.less +55 -0
- package/main.less +3 -0
- package/mixins.less +82 -0
- package/navigation.less +182 -0
- package/package.json +58 -0
- package/radiobutton.less +118 -0
- package/select.less +99 -0
- package/spinner.less +51 -0
- package/swiper-a11y.less +9 -0
- package/swiper-effect-cube.less +50 -0
- package/swiper-effect-fade.less +24 -0
- package/swiper-effect-flip.less +29 -0
- package/swiper-lazy.less +34 -0
- package/swiper-navigation.less +102 -0
- package/swiper-pagination.less +164 -0
- package/swiper-scrollbar.less +38 -0
- package/swiper-thumb.less +5 -0
- package/swiper-zoom.less +20 -0
- package/swiper.less +168 -0
- package/tooltip.less +168 -0
- package/variables.less +469 -0
package/variables.less
ADDED
|
@@ -0,0 +1,469 @@
|
|
|
1
|
+
// Variables
|
|
2
|
+
// All variables
|
|
3
|
+
//
|
|
4
|
+
|
|
5
|
+
//local variables
|
|
6
|
+
@gpresourceUrl: "https://gpresource.blob.core.windows.net";
|
|
7
|
+
|
|
8
|
+
// Breakpoints
|
|
9
|
+
@xl: ~"only screen and (min-width : 1200px)";
|
|
10
|
+
@lg: ~"only screen and (min-width : 992px)";
|
|
11
|
+
@md: ~"only screen and (min-width : 768px)";
|
|
12
|
+
@sm: ~"only screen and (min-width : 576px)";
|
|
13
|
+
@xs: ~"only screen and (max-width : 575px)";
|
|
14
|
+
|
|
15
|
+
@xl-max: ~"only screen and (max-width : 1199px)";
|
|
16
|
+
@lg-max: ~"only screen and (max-width : 991px)";
|
|
17
|
+
@md-max: ~"only screen and (max-width : 767px)";
|
|
18
|
+
|
|
19
|
+
//Containers
|
|
20
|
+
@container-max-width: 1164px;
|
|
21
|
+
@gatter: 12px;
|
|
22
|
+
|
|
23
|
+
//Content
|
|
24
|
+
@content-max-width: 710px;
|
|
25
|
+
|
|
26
|
+
// Color system
|
|
27
|
+
//
|
|
28
|
+
@white: #fff;
|
|
29
|
+
@black: #000;
|
|
30
|
+
@yellow: #ffbd1e;
|
|
31
|
+
@green: #2a966a;
|
|
32
|
+
@text-color: #4f5a65;
|
|
33
|
+
@primary-color: #2a966a;
|
|
34
|
+
@secondary-color: #1692ff;
|
|
35
|
+
@si-color: #eb3426;
|
|
36
|
+
@error-color: #ef5350;
|
|
37
|
+
@danger-color: #a94442;
|
|
38
|
+
@danger-background-color: #f2dede;
|
|
39
|
+
@danger-border-color: #ebccd1;
|
|
40
|
+
@success-color: #155724;
|
|
41
|
+
@success-background-color: #d4edda;
|
|
42
|
+
@success-border-color: #c3e6cb;
|
|
43
|
+
@notification-color: #ef5350;
|
|
44
|
+
|
|
45
|
+
@light-gray-bg: #f9fafb;
|
|
46
|
+
@light-gray-border: #ced0da;
|
|
47
|
+
@light-gray-text: #979797;
|
|
48
|
+
@bold-gray: #333333;
|
|
49
|
+
//Icons
|
|
50
|
+
//
|
|
51
|
+
@chat-icon-img: url('@{gpresourceUrl}/assets/img/icons/integrations-freshchat%403x.jpg');
|
|
52
|
+
@si-icon-img: url('@{gpresourceUrl}/assets/img/icons/si-icon.svg');
|
|
53
|
+
@si-icon-img-white: url('@{gpresourceUrl}/assets/img/icons/si-icon-white.svg');
|
|
54
|
+
@google-icon: url('@{gpresourceUrl}/assets/img/icons/google-icon.png');
|
|
55
|
+
@lock-icon: url('@{gpresourceUrl}/assets/img/icons/lock-icon.svg');
|
|
56
|
+
|
|
57
|
+
// Spacing
|
|
58
|
+
@spacer: 1rem;
|
|
59
|
+
// Borders
|
|
60
|
+
@borders: solid 1px #d5dce3;
|
|
61
|
+
@border-radius: 4px;
|
|
62
|
+
// Box shadow
|
|
63
|
+
@box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.05);
|
|
64
|
+
// Body
|
|
65
|
+
//
|
|
66
|
+
// Settings for the `<body>` element.
|
|
67
|
+
@body-bg: @white;
|
|
68
|
+
@body-color: @text-color;
|
|
69
|
+
// Links
|
|
70
|
+
//
|
|
71
|
+
// Style anchor elements.
|
|
72
|
+
@link-color: @secondary-color;
|
|
73
|
+
@link-decoration: none;
|
|
74
|
+
@link-hover-color: @link-color;
|
|
75
|
+
@link-hover-decoration: underline;
|
|
76
|
+
@link-transition: all 0.2s ease-out;
|
|
77
|
+
@link-style: normal;
|
|
78
|
+
@link-weight: @font-weight-normal;
|
|
79
|
+
// Fonts
|
|
80
|
+
//
|
|
81
|
+
// Font, line-height, and color for body text, headings, and more.
|
|
82
|
+
// stylelint-disable value-keyword-case
|
|
83
|
+
@font-family: proxima-nova, sans-serif;
|
|
84
|
+
// stylelint-enable value-keyword-case
|
|
85
|
+
@font-size: 1rem; // Assumes the browser default, typically `16px`
|
|
86
|
+
@font-size-extra-lg: (@font-size * 1.625); //26px
|
|
87
|
+
@font-size-lg: (@font-size * 1.25);
|
|
88
|
+
@font-size-sm: (@font-size * .875); //14px
|
|
89
|
+
@lg-font-size: @font-size * 1.375; //22px
|
|
90
|
+
@small-font-size: .875rem; //14px
|
|
91
|
+
@extra-small-font-size: .75rem; //12px
|
|
92
|
+
@extra-small-line-height: 1.5;
|
|
93
|
+
|
|
94
|
+
@font-weight-light: 300;
|
|
95
|
+
@font-weight-normal: 400;
|
|
96
|
+
@font-weight-medium: 500;
|
|
97
|
+
@font-weight-semibold: 600;
|
|
98
|
+
@font-weight-bold: 700;
|
|
99
|
+
|
|
100
|
+
@font-weight: @font-weight-normal;
|
|
101
|
+
@line-height: 1.4;
|
|
102
|
+
@letter-spacing: 1;
|
|
103
|
+
|
|
104
|
+
// Headdings
|
|
105
|
+
@headings-margin-top: (@spacer * 1.25);
|
|
106
|
+
@headings-margin-bottom: (@spacer * 1.375);
|
|
107
|
+
@headings-font-family: inherit;
|
|
108
|
+
@headings-font-weight: @font-weight-semibold;
|
|
109
|
+
@headings-line-height: 1.4;
|
|
110
|
+
@headings-color: inherit;
|
|
111
|
+
@heading-text-transform: none;
|
|
112
|
+
|
|
113
|
+
@h1-font-size: @font-size * 2.25; // 36px
|
|
114
|
+
@h1-font-family: @headings-font-family;
|
|
115
|
+
@h1-font-weight: @headings-font-weight;
|
|
116
|
+
@h1-line-height: @headings-line-height;
|
|
117
|
+
@h1-text-transform: @heading-text-transform;
|
|
118
|
+
@h1-color: @headings-color;
|
|
119
|
+
|
|
120
|
+
@h2-font-size: @font-size * 1.625; //26px
|
|
121
|
+
@h2-font-family: @headings-font-family;
|
|
122
|
+
@h2-font-weight: @headings-font-weight;
|
|
123
|
+
@h2-line-height: @headings-line-height;
|
|
124
|
+
@h2-text-transform: @heading-text-transform;
|
|
125
|
+
@h2-color: @headings-color;
|
|
126
|
+
|
|
127
|
+
@h3-font-size: @font-size * 1.375; //22px
|
|
128
|
+
@h3-font-family: @headings-font-family;
|
|
129
|
+
@h3-font-weight: @headings-font-weight;
|
|
130
|
+
@h3-line-height: @headings-line-height;
|
|
131
|
+
@h3-text-transform: @heading-text-transform;
|
|
132
|
+
@h3-color: @headings-color;
|
|
133
|
+
|
|
134
|
+
@h4-font-size: @font-size * 1.25; //20px
|
|
135
|
+
@h5-font-size: @font-size * 1.125; //18px
|
|
136
|
+
|
|
137
|
+
@h6-font-size: @font-size; //16px
|
|
138
|
+
@h6-font-family: @headings-font-family;
|
|
139
|
+
@h6-font-weight: @headings-font-weight;
|
|
140
|
+
@h6-line-height: @headings-line-height;
|
|
141
|
+
@h6-text-transform: @heading-text-transform;
|
|
142
|
+
@h6-color: @headings-color;
|
|
143
|
+
|
|
144
|
+
// Blockquots
|
|
145
|
+
@blockquote-quots-color: #c6c8c9;
|
|
146
|
+
@blockquote-small-color: @text-color;
|
|
147
|
+
@blockquote-font-size: (@font-size * 1.25);
|
|
148
|
+
@blockquote-border: 0;
|
|
149
|
+
@blockquote-color: @text-color;
|
|
150
|
+
@blockquote-font-size: @font-size * 1.2;
|
|
151
|
+
@blockquot-font-weight: @font-weight-light;
|
|
152
|
+
@blockquote-margin: 0 0 @spacer * 1.5;
|
|
153
|
+
@blockquote-padding-top: @spacer * 2;
|
|
154
|
+
@blockquote-padding-bottom: @spacer * 2.5;
|
|
155
|
+
@blockquote-line-height: 1;
|
|
156
|
+
@blockquote-text-transform: none;
|
|
157
|
+
@blockquote-width: 100%;
|
|
158
|
+
@blockquote-text-align: center;
|
|
159
|
+
// Paragraphs
|
|
160
|
+
@mark-padding: .2em;
|
|
161
|
+
@mark-bg: #fcf8e3;
|
|
162
|
+
// Horizontal rule
|
|
163
|
+
@hr-margin-y: @spacer * 2;
|
|
164
|
+
@hr-border-width: .2em;
|
|
165
|
+
@hr-border-color: @text-color;
|
|
166
|
+
// Custom scrollbar
|
|
167
|
+
@custom-scrollbar-track-color: #ced0da;
|
|
168
|
+
@custom-scrollbar-thumb-color: #b1b4c1;
|
|
169
|
+
// List
|
|
170
|
+
@dt-font-weight: @font-weight-bold;
|
|
171
|
+
@list-inline-padding: .5rem;
|
|
172
|
+
// Table
|
|
173
|
+
@tabel-border: 3px solid #f4f7f6;
|
|
174
|
+
@tabel-padding: 12px 10px;
|
|
175
|
+
@tabel-font-size: @small-font-size;
|
|
176
|
+
@tabel-font-weight: @font-weight-normal;
|
|
177
|
+
@table-th-color: @text-color;
|
|
178
|
+
@table-th-font-size: @extra-small-font-size;
|
|
179
|
+
@table-th-text-transform: uppercase;
|
|
180
|
+
@tabel-th-font-weight: @font-weight-bold;
|
|
181
|
+
// Si-icon
|
|
182
|
+
@si-width: 1.5rem;
|
|
183
|
+
@si-height: 1.25rem;
|
|
184
|
+
//
|
|
185
|
+
// Buttons
|
|
186
|
+
//
|
|
187
|
+
@btn-font-family: @font-family;
|
|
188
|
+
@btn-font-weight: @font-weight-normal;
|
|
189
|
+
@btn-font-size: 0.875rem;
|
|
190
|
+
@btn-line-height: 1;
|
|
191
|
+
@btn-letter-spaceing: normal;
|
|
192
|
+
@btn-text-decoration: none;
|
|
193
|
+
@btn-text-style: normal;
|
|
194
|
+
@btn-text-transform: none;
|
|
195
|
+
@btn-brd-radius: .25rem;
|
|
196
|
+
@btn-brd: 1px;
|
|
197
|
+
@btn-brd-color: rgba(0, 0, 0, 0.12);
|
|
198
|
+
@btn-border: @btn-brd solid @btn-brd-color;
|
|
199
|
+
@btn-transition: all 0.2s ease-out;
|
|
200
|
+
@btn-mrg-right: @spacer;
|
|
201
|
+
@btn-min-width: 150px;
|
|
202
|
+
// Default Button
|
|
203
|
+
@default-btn-bg-color: @primary-color;
|
|
204
|
+
@default-btn-bg-gradient: none;
|
|
205
|
+
@default-btn-brd-color: @default-btn-bg-color;
|
|
206
|
+
@default-btn-text-color: #ffffff;
|
|
207
|
+
|
|
208
|
+
@default-btn-hover-bg-color: @default-btn-bg-color;
|
|
209
|
+
@default-btn-hover-bg-gradient: none;
|
|
210
|
+
@default-btn-hover-brd-color: @default-btn-hover-bg-color;
|
|
211
|
+
@default-btn-hover-text-color: @default-btn-text-color;
|
|
212
|
+
// Secondary Button
|
|
213
|
+
@secondary-btn-bg: #ffffff;
|
|
214
|
+
@secondary-btn-bg-gradient: none;
|
|
215
|
+
@secondary-btn-brd-color: @default-btn-bg-color;
|
|
216
|
+
@secondary-btn-text-color: @text-color;
|
|
217
|
+
|
|
218
|
+
@secondary-btn-hover-bg: @default-btn-bg-color;
|
|
219
|
+
@secondary-btn-hover-bg-gradient: none;
|
|
220
|
+
@secondary-btn-hover-brd-color: @secondary-btn-hover-bg;
|
|
221
|
+
@secondary-btn-hover-text-color: #ffffff;
|
|
222
|
+
// Button sizes
|
|
223
|
+
@btn-padding: .75rem 2.1rem;
|
|
224
|
+
@btn-xs-padding: .25rem 2.1rem;
|
|
225
|
+
@btn-sm-padding: .438rem 2.1rem;
|
|
226
|
+
@btn-md-padding: .75rem 2.1rem;
|
|
227
|
+
@btn-lg-padding: .938rem 2.1rem;
|
|
228
|
+
@btn-xl-padding: .1rem 2.1rem;
|
|
229
|
+
//
|
|
230
|
+
// Forms
|
|
231
|
+
//
|
|
232
|
+
//form label
|
|
233
|
+
@form-label-font-size: .875rem;
|
|
234
|
+
@form-label-font-wight: @font-weight-semibold;
|
|
235
|
+
//Form fields
|
|
236
|
+
@form-border-color: rgba(0, 0, 0, 0.15);
|
|
237
|
+
@form-border-radius: @border-radius;
|
|
238
|
+
@form-box-shadow: none;
|
|
239
|
+
@form-txt-color: inherit;
|
|
240
|
+
@form-line-height: 1.4;
|
|
241
|
+
@form-font-family: inherit;
|
|
242
|
+
@form-font-size: 1rem;
|
|
243
|
+
@form-font-weight: @font-weight-normal;
|
|
244
|
+
@form-placeholder-color: #ced0da;
|
|
245
|
+
//Form select
|
|
246
|
+
@form-select-option-bg: @white;
|
|
247
|
+
@form-select-option-bg-hover: rgba(0, 0, 0, 0.1);
|
|
248
|
+
@form-select-scrl-tick: rgba(206, 208, 218, 0.3);
|
|
249
|
+
@form-select-scrl-thumb: #b1b4c1;
|
|
250
|
+
// Form radiobutton and checkbpx
|
|
251
|
+
@form-checkbox-brd: 1px solid @form-border-color;
|
|
252
|
+
@form-checkbox-active-color: @primary-color;
|
|
253
|
+
//
|
|
254
|
+
// Datepicker
|
|
255
|
+
//
|
|
256
|
+
@calendarBg: #ffffff;
|
|
257
|
+
@calendarBorder: solid 1px #dfe3e9;
|
|
258
|
+
@calendarBoxShadow: 0 1px 4px 0 rgba(0, 0, 0, 0.08);
|
|
259
|
+
@calendarColor: @text-color;
|
|
260
|
+
@calendarFont: @font-family;
|
|
261
|
+
@calendarFontWeight: @font-weight-normal;
|
|
262
|
+
@calendarFontSize: .85rem; // 14px
|
|
263
|
+
@calendarHeaderBg: @calendarBg;
|
|
264
|
+
@calendarHeaderColor: @calendarColor;
|
|
265
|
+
@calendarHeaderFontSize: @calendarFontSize;
|
|
266
|
+
|
|
267
|
+
@calendarWeekDaysBorder: 1px solid rgba(223, 227, 233, 0.5);
|
|
268
|
+
@calendarWeekDaysFontSize: 10px;
|
|
269
|
+
|
|
270
|
+
@calendarDayBorder: 1px solid transparent;
|
|
271
|
+
@calendarDayBrdRadius: 50%;
|
|
272
|
+
|
|
273
|
+
@calendarActiveDayColor: #ffffff;
|
|
274
|
+
@calendarActiveDayBrd: @primary-color;
|
|
275
|
+
@calendarActiveDayBg: @primary-color;
|
|
276
|
+
|
|
277
|
+
@calendarHoverDayColor: @primary-color;
|
|
278
|
+
@calendarHoverDayBg: #ffffff;
|
|
279
|
+
@calendarHoverDayBrd: @primary-color;
|
|
280
|
+
|
|
281
|
+
@calendarDayFontWeight: @font-weight-bold;
|
|
282
|
+
|
|
283
|
+
@calendarActiveIcon: @calendarActiveDayBg;
|
|
284
|
+
@calendarIconColor: @text-color;
|
|
285
|
+
//
|
|
286
|
+
//Header
|
|
287
|
+
//
|
|
288
|
+
@header-bg-color: @white;
|
|
289
|
+
@header-box-shadow: 0 1px 0 rgba(79, 90, 101, 0.1);
|
|
290
|
+
@header-height: 70px;
|
|
291
|
+
@header-bg-gradient: none;
|
|
292
|
+
@header-bg-gradient-str: transparent;
|
|
293
|
+
@header-bg-gradient-end: transparent;
|
|
294
|
+
@header-icon-color: @nav-color;
|
|
295
|
+
|
|
296
|
+
//Branding
|
|
297
|
+
@branding-img-url: "";
|
|
298
|
+
@branding-padding-top: 15px;
|
|
299
|
+
@branding-padding-bottom: @branding-padding-top;
|
|
300
|
+
|
|
301
|
+
//Navigation
|
|
302
|
+
@nav-color: @text-color;
|
|
303
|
+
@nav-font-weight: @font-weight-normal;
|
|
304
|
+
@nav-font-family: @font-family;
|
|
305
|
+
@nav-font-style: normal;
|
|
306
|
+
@nav-active-color: @nav-color;
|
|
307
|
+
@nav-active-brd-color: @primary-color;
|
|
308
|
+
@nav-text-transform: none;
|
|
309
|
+
@nav-buttons-border: 1px solid @nav-buttons-border-color;
|
|
310
|
+
@nav-buttons-border-color: lighten(@nav-color, 50%);
|
|
311
|
+
|
|
312
|
+
//
|
|
313
|
+
// Footer
|
|
314
|
+
//
|
|
315
|
+
@footer-height: 105px;
|
|
316
|
+
@footer-height-mobile: 182px;
|
|
317
|
+
@footer-bg: @white;
|
|
318
|
+
@footer-bg-gradient: none;
|
|
319
|
+
@footer-bg-gradient-str: transparent;
|
|
320
|
+
@footer-bg-gradient-end: transparent;
|
|
321
|
+
@footer-font-size: @small-font-size;
|
|
322
|
+
@footer-line-height: 1.83;
|
|
323
|
+
@footer-text-color: @text-color;
|
|
324
|
+
@footer-copyright-color: lighten(@text-color, 30%);
|
|
325
|
+
//Footer link
|
|
326
|
+
@footer-link-color: @link-color;
|
|
327
|
+
@footer-link-decoration: none;
|
|
328
|
+
@footer-link-hover-color: @footer-link-color;
|
|
329
|
+
@footer-link-hover-decoration: underline;
|
|
330
|
+
//Footer Logo
|
|
331
|
+
@footer-logo-justify-content: center;
|
|
332
|
+
@footer-logo-margin: @spacer @spacer @spacer 0;
|
|
333
|
+
@footer-bnv-logo-powered-by-light: url('@{gpresourceUrl}/assets/img/footer/benivo-powered-logo-white.svg');
|
|
334
|
+
@footer-bnv-logo-powered-by-dark: url('@{gpresourceUrl}/assets/img/footer/benivo-powered-logo-dark.svg');
|
|
335
|
+
@footer-bnv-logo-width: 101px;
|
|
336
|
+
@footer-bnv-logo-height: 40px;
|
|
337
|
+
|
|
338
|
+
@footer-is-logo-dark: true; // true or false
|
|
339
|
+
@footer-partner-is-logo-exist: false; // true or false
|
|
340
|
+
@footer-partner-is-logo-dark: false; // true or false
|
|
341
|
+
@footer-partner-logo-image: url('https://flatclubqa.blob.core.windows.net/gopremiumimages/google/plus-relocation-logo.png');
|
|
342
|
+
@footer-partner-logo-width: 140px;
|
|
343
|
+
@footer-partner-logo-height: 28px;
|
|
344
|
+
|
|
345
|
+
//
|
|
346
|
+
//Progress Bar
|
|
347
|
+
//
|
|
348
|
+
@progress-transition: all .6s ease;
|
|
349
|
+
@progress-bar-height: 8px;
|
|
350
|
+
@progress-bar-radius: 16px;
|
|
351
|
+
@progress-bar-bg-color: rgba(132,148,165,.2);
|
|
352
|
+
@progress-bar-success-bg: @primary-color;
|
|
353
|
+
@progress-bar-precent-color: @text-color;
|
|
354
|
+
//
|
|
355
|
+
//Star Rate
|
|
356
|
+
//
|
|
357
|
+
@star-icon-size: 16px;
|
|
358
|
+
@star-icon-size-big: 35px;
|
|
359
|
+
@star-empty: url('@{gpresourceUrl}/assets/img/rate/star-empty.svg');
|
|
360
|
+
@star-half: url('@{gpresourceUrl}/assets/img/rate/star-half.svg');
|
|
361
|
+
@star-filled: url('@{gpresourceUrl}/assets/img/rate/star-filled.svg');
|
|
362
|
+
//
|
|
363
|
+
// Sections
|
|
364
|
+
//
|
|
365
|
+
@content-block-borders: @borders;
|
|
366
|
+
@content-block-border-radius: @border-radius;
|
|
367
|
+
@content-block-box-shadow: @box-shadow;
|
|
368
|
+
|
|
369
|
+
//
|
|
370
|
+
// Testimonials
|
|
371
|
+
//
|
|
372
|
+
@testimonials-font-family: @font-family;
|
|
373
|
+
@testimonials-font-weight: @font-weight-medium;
|
|
374
|
+
@testimonials-font-style: italic;
|
|
375
|
+
@testimonials-text-align: left;
|
|
376
|
+
@testimonials-quote-display: block; // for signup
|
|
377
|
+
@testimonials-icon-quote-position: center;
|
|
378
|
+
@testimonials-icon-quote-color: inherit;
|
|
379
|
+
@testimonial-color: #ffffff;
|
|
380
|
+
|
|
381
|
+
//
|
|
382
|
+
// Banner & Card
|
|
383
|
+
//
|
|
384
|
+
@banner-title-color: @text-color;
|
|
385
|
+
@card-title-color: @banner-title-color;
|
|
386
|
+
|
|
387
|
+
/*
|
|
388
|
+
* PAGES
|
|
389
|
+
*
|
|
390
|
+
1. Signup Page
|
|
391
|
+
1.1 Signup left container
|
|
392
|
+
1.2 signup left heading
|
|
393
|
+
1.3 Signup left content
|
|
394
|
+
1.4 Signup service list
|
|
395
|
+
1.5 Signup right content
|
|
396
|
+
1.6 Signup footer
|
|
397
|
+
*/
|
|
398
|
+
//
|
|
399
|
+
// 1. Signup Page
|
|
400
|
+
//
|
|
401
|
+
@signup-bg-color: transparent;
|
|
402
|
+
@signup-img: url('@{gpresourceUrl}/assets/img/default/signup_bg.jpg');
|
|
403
|
+
@signup-img-overlay-gradient: none;
|
|
404
|
+
@signup-img-overlay-gradient-str: transparent;
|
|
405
|
+
@signup-img-overlay-gradient-end: transparent;
|
|
406
|
+
@signup-img-overlay-opacity: 0;
|
|
407
|
+
@signup-img-position: 0;
|
|
408
|
+
@signup-img-repeat: no-repeat;
|
|
409
|
+
@signup-img-size: cover;
|
|
410
|
+
// 1.1 Signup left container
|
|
411
|
+
// 1.2 signup left heading
|
|
412
|
+
@signup-left-heading-color: #ffffff;
|
|
413
|
+
@signup-left-heading-txt-align: center;
|
|
414
|
+
@signup-left-heading-txt-transform: @heading-text-transform;
|
|
415
|
+
@signup-left-heading-second-txt: @font-weight-light;
|
|
416
|
+
@signup-left-heading-second-color: @signup-left-heading-color;
|
|
417
|
+
// 1.3 Signup left content
|
|
418
|
+
@signup-left-content-color: #ffffff;
|
|
419
|
+
@signup-left-content-text-align: left;
|
|
420
|
+
// 1.4 Signup service list
|
|
421
|
+
@signup-service-list-txt-font-weight: @font-weight-normal;
|
|
422
|
+
@signup-service-list-hilighted-txt-color: inherit;
|
|
423
|
+
@signup-service-list-hilighted-font-weight: @font-weight-semibold;
|
|
424
|
+
// 1.5 Signup right
|
|
425
|
+
@signup-right-heading-txt-align: left;
|
|
426
|
+
@signup-right-heading-txt-transform: @heading-text-transform;
|
|
427
|
+
// 1.6 Signup footer
|
|
428
|
+
@signup-footer-is-logo-dark: false; // true or false
|
|
429
|
+
@signup-footer-partner-logo-image: @footer-partner-logo-image;
|
|
430
|
+
@signup-footer-partner-is-logo-dark: @footer-partner-is-logo-dark; // true or false
|
|
431
|
+
@signup-footer-txt-align: left;
|
|
432
|
+
/*
|
|
433
|
+
2. Onboarding
|
|
434
|
+
2.1 Calendar
|
|
435
|
+
2.2 Testimonials
|
|
436
|
+
|
|
437
|
+
*/
|
|
438
|
+
@onboarding-title-align: center;
|
|
439
|
+
// 2.1 Calendar
|
|
440
|
+
@calendar-start-brd-color: #dfe3e9;
|
|
441
|
+
@calendar-start-day-bg-color: @text-color;
|
|
442
|
+
@calendar-selected-day-color: #ffffff;
|
|
443
|
+
@calendar-selected-day-bg-color: @primary-color;
|
|
444
|
+
// 2.2 Testimonials
|
|
445
|
+
@ob-testimonial-size: @font-size;
|
|
446
|
+
// market education
|
|
447
|
+
@me-title-align: center;
|
|
448
|
+
@me-text-align: center;
|
|
449
|
+
|
|
450
|
+
//
|
|
451
|
+
//Home Page
|
|
452
|
+
//
|
|
453
|
+
@home-bg-color: #f7f9fa;
|
|
454
|
+
@home-content-alignment: center;
|
|
455
|
+
// home banner
|
|
456
|
+
@home-banner-position: center;
|
|
457
|
+
@home-banner-content-alignment: center;
|
|
458
|
+
@home-banner-title-pad-y: 3px;
|
|
459
|
+
@home-banner-title-pad-x: 50px;
|
|
460
|
+
@home-banner-title-border-radius: 20px;
|
|
461
|
+
@home-banner-title-bg: @white;
|
|
462
|
+
@home-banner-title-color: @text-color;
|
|
463
|
+
@home-banner-title-color-mobile: #fff;
|
|
464
|
+
@home-banner-img: url('@{gpresourceUrl}/assets/img/home/top-banner.jpg');
|
|
465
|
+
@home-banner-title-font-size: @h3-font-size;
|
|
466
|
+
@home-banner-title-font-family: @h3-font-family;
|
|
467
|
+
@home-banner-title-font-weight: @h3-font-weight;
|
|
468
|
+
@home-banner-title-font-style: normal;
|
|
469
|
+
@home-banner-title-transform: none;
|