welcome_css 0.35 → 0.38

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.
@@ -1,28 +1,64 @@
1
1
  // Variables
2
2
 
3
3
  /* ====================================== */
4
- // Welcome UI Fonts
5
4
 
6
5
  body {
7
6
  -webkit-font-smoothing: antialiased;
8
7
  -moz-osx-font-smoothing: grayscale;
8
+ background-color: #FAFAFA !important;
9
9
  }
10
10
 
11
+ /* ====================================== */
12
+ // Welcome UI - Fonts
13
+
14
+ .s-text {
15
+ font-size: 14px;
16
+ }
17
+ $s-text: 14px;
18
+
19
+ .m-text {
20
+ font-size: 18px;
21
+ }
22
+ $m-text: 18px;
23
+
24
+ .l-text {
25
+ font-size: 22px;
26
+ }
27
+ $l-text: 22px;
28
+
29
+ .text-bold {
30
+ font-weight: 600;
31
+ }
32
+ $text-bold: 600;
33
+
11
34
  $ui_font_small: 14px;
12
35
  $ui_font_normal: 16px;
13
36
 
37
+ /* --------------- */
38
+
14
39
  h1, h2, h3, h4 {
15
- font-family: 'gt-eesti-regular';
40
+ /*font-family: 'gt-eesti-regular';*/
41
+ font-family: 'gilroy-bold';
16
42
  }
17
43
  .ui-app-area {
18
- font-family: 'hk_groteskmedium';
44
+ /*font-family: 'hk_groteskmedium';*/
45
+ font-family: 'nunitosans-regular';
19
46
  }
20
47
  .ui-app-area strong {
21
- font-family: 'hk_groteskbold';
48
+ /*font-family: 'hk_groteskbold';*/
49
+ font-family: 'nunitosans-bold';
50
+ }
51
+
52
+ /* --------------- */
53
+
54
+ .am-content.ui-app-area .page-head h2 {
55
+ font-family: 'gilroy-bold';
56
+ font-size: 26px;
57
+ line-height: 32px;
22
58
  }
23
59
 
24
60
  /* ====================================== */
25
- // Welcome UI Colors
61
+ // Welcome UI - Colors
26
62
 
27
63
  $ui_back: #000000 !important;
28
64
  $ui_white: #ffffff !important;
@@ -58,29 +94,101 @@ $ui-radius: .25rem !important;
58
94
  // Welcome UI - Margin & Padding
59
95
 
60
96
  $sm-margintop: 10px;
97
+ $s-mt: 5px;
98
+
61
99
  $sm-marginbottom: 10px;
100
+ $s-mb: 5px;
62
101
 
63
102
  $md-margintop: 30px;
103
+ $m-mt: 15px;
104
+
64
105
  $md-marginbottom: 30px;
106
+ $m-mb: 15px;
65
107
 
66
108
  $lg-margintop: 60px;
109
+ $l-mt: 30px;
110
+
67
111
  $lg-marginbottom: 60px;
112
+ $l-mb: 30px;
113
+
114
+ $sm-paddingtop: 5px;
115
+ $s-pt: 5px;
68
116
 
69
117
  $md-paddingtop: 30px;
70
- $md-paddingbottom: 30px;
118
+ $m-pt: 15px;
71
119
 
72
120
  $lg-paddingtop: 60px;
121
+ $l-pt: 30px;
122
+
123
+ $sm-paddingbottom: 10px;
124
+ $s-pb: 5px;
125
+
126
+ $md-paddingbottom: 30px;
127
+ $m-pb: 15px;
128
+
73
129
  $lg-paddingbottom: 60px;
130
+ $l-pb: 30px;
131
+
132
+ $s-padding: 20px 15px;
133
+ $m-padding: 30px 30px;
134
+ $l-padding: 60px 60px;
74
135
 
75
136
  /* ====================================== */
137
+ // Welcome UI - Buttons & Effects
138
+
139
+ .pointer:hover {
140
+ cursor: pointer;
141
+ }
142
+
143
+ /* ====================================== */
144
+ // Welcome UI - Hide & Show
145
+
146
+ @media (max-width: 992px) {
147
+ .no-responsive {
148
+ display: none !important;
149
+ }
150
+ }
151
+
152
+ /* ====================================== */
153
+ // Welcome UI - Shadows
76
154
 
77
155
  $ui-shadow: 1px -1px 13px 0px rgba(174,174,174,0.15);
156
+ .shadow {
157
+ box-shadow: 1px -1px 13px 0px rgba(174,174,174,0.15);
158
+ }
159
+
160
+ $ui-light-shadow: 1px -1px 7px 0px rgba(174,174,174,0.05);
161
+ .light-shadow {
162
+ box-shadow: 1px -1px 7px 0px rgba(174,174,174,0.05);
163
+ }
164
+
78
165
  $ui-shadow-right: 0 0 15px rgba(174,174,174,0.15%);
166
+ .right-shadow {
167
+ box-shadow: 0 0 15px rgba(174,174,174,0.15%);
168
+ }
79
169
 
80
170
  /* ====================================== */
171
+ // Welcome UI - Block text sizes
81
172
 
82
173
  $header-title: 22px;
83
174
 
175
+ /* ====================================== */
176
+ // Welcome UI - Blocks
177
+
178
+ .simple-block {
179
+ display: block;
180
+ float: left;
181
+ position: relative;
182
+ background-color: $ui_white;
183
+ padding: $s-padding;
184
+ }
185
+ .rounded {
186
+ border-radius: $ui-radius;
187
+ }
188
+ .w-border {
189
+ border: 1px solid #dee2e6;
190
+ }
191
+
84
192
  /* ====================================== */
85
193
 
86
194
  $block-title: 16px;
@@ -98,13 +206,18 @@ $block-result-color: #000;
98
206
  margin-right: -15px;
99
207
  margin-left: -15px;
100
208
  }
101
-
102
209
  .ui-app-area h4 {
103
210
  font-size: 20px;
104
211
  }
105
212
  .land-app, .main-app {
106
213
  background-color: $ui_lightergray;
107
214
  }
215
+ .main-app {
216
+ display: block;
217
+ float: left;
218
+ position: relative;
219
+ width: 100%;
220
+ }
108
221
  .land-app .main-btns .ui-menu-dots {
109
222
  display: block;
110
223
  float: right;
@@ -118,25 +231,55 @@ $block-result-color: #000;
118
231
  .ui-app-area .no-margin {
119
232
  margin: 0;
120
233
  }
234
+ .ui-app-area .no-padding {
235
+ padding: 0;
236
+ }
121
237
 
122
238
  /* ====================================== */
123
239
 
124
240
  .am-wrapper.main-app .menu-app {
125
241
  width: 16%;
242
+ position: absolute;
243
+ top: 0;
126
244
  }
127
245
  .am-wrapper.main-app .navbar {
128
246
  background-color: $ui_white;
129
- height: 58px;
247
+ height: 40px;
130
248
  box-shadow: 0 0 50px rgba(0, 0, 0, 0.05%);
249
+ display: block;
250
+ float: right;
251
+ position: relative;
252
+ width: auto;
253
+ top: 6px;
254
+ right: 15px;
255
+ padding: 4px 0px 0px 0px;
256
+ margin-bottom: 4px;
131
257
  }
132
258
  .am-wrapper.main-app .ui-app-area {
133
259
  padding: 15px;
134
260
  width: 84%;
135
261
  float: right;
136
- background-color: #fafafa !important;
262
+ position: absolute;
263
+ margin: 0;
264
+ display: block;
265
+ right: 0;
266
+ top: 42px;
267
+ /*background-color: #fafafa !important;*/
268
+ }
269
+ .am-wrapper.main-app .ui-app-area.construction-area {
270
+ padding: 0 15px 15px 15px;
271
+ width: 84%;
272
+ float: right;
273
+ position: absolute;
274
+ margin: 0;
275
+ display: block;
276
+ right: 0;
277
+ top: 0px;
278
+ /*background-color: #fafafa !important;*/
137
279
  }
138
280
  .am-wrapper.main-app .ui-app-area .page-head {
139
281
  padding: 20px;
282
+ margin-bottom: 30px;
140
283
  }
141
284
  .am-wrapper.main-app .ui-app-area .main-content {
142
285
  padding: 0;
@@ -281,7 +424,7 @@ $block-result-color: #000;
281
424
  position: relative;
282
425
  height: auto;
283
426
  width: 100%;
284
- padding: 0 0 0 30px;
427
+ padding: 0 0 0 22px;
285
428
  }
286
429
  .am-left-sidebar .sidebar-elements > li > ul >
287
430
  .nav-items .am-scroller .content {
@@ -370,7 +513,10 @@ $block-result-color: #000;
370
513
  }
371
514
  @media (min-width: 769px) {
372
515
  input[type="radio"]#swipe, input[type="checkbox"]#swipe {
373
- display: none;
516
+ display: none;
517
+ }
518
+ .navbar .welcome-homes-logo {
519
+ display: none;
374
520
  }
375
521
  }
376
522
  @media (max-width: 768px) {
@@ -383,6 +529,17 @@ $block-result-color: #000;
383
529
  .am-wrapper.main-app .navbar {
384
530
  height: 50px;
385
531
  display: block;
532
+ width: 100%;
533
+ right: 0;
534
+ top: 0;
535
+ z-index: 1;
536
+ }
537
+ .navbar .welcome-homes-logo {
538
+ display: block;
539
+ margin-top: 12px !important;
540
+ }
541
+ .navbar .logo-area {
542
+ border-bottom: none;
386
543
  }
387
544
  .am-top-header {
388
545
  position: fixed !important;
@@ -395,7 +552,7 @@ $block-result-color: #000;
395
552
  }
396
553
  .am-wrapper.main-app .ui-app-area {
397
554
  width: 100%;
398
- margin-top: 50px;
555
+ margin-top: 20px;
399
556
  display: block;
400
557
  }
401
558
  .am-wrapper.main-app .menu-app {
@@ -1,5 +1,4 @@
1
1
  /* ====================================== */
2
- // Welcome UI - Widths
3
2
  // Width sizes for all differents tables and containers inside Welcome UI
4
3
 
5
4
  $sizes: () !default;
@@ -1,3 +1,3 @@
1
1
  module WelcomeCss
2
- VERSION = "0.35"
2
+ VERSION = "0.38"
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: welcome_css
3
3
  version: !ruby/object:Gem::Version
4
- version: '0.35'
4
+ version: '0.38'
5
5
  platform: ruby
6
6
  authors:
7
7
  - Jose Camacho
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-02-02 00:00:00.000000000 Z
11
+ date: 2022-03-02 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: rails