@burh/nuxt-core 1.0.457 → 1.0.458

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.
@@ -6,25 +6,40 @@
6
6
  >
7
7
  <template>
8
8
  <div class="plan">
9
- <img :src="cover" alt="" class="cover" />
10
-
9
+ <div class="cover"/>
11
10
  <div class="plan__modal">
12
11
  <section class="plan__information">
13
- <!-- <div class="plan__information--img" draggable="false">
14
- <img src="/img/lis.png" alt="Customer Success" draggable="false">
15
- </div> -->
16
12
  <h4>
17
- Você vai amar o Plano Empresas. <br />
18
- Dê um Upgrade no seu R&S
13
+ Você vai amar o Plano Empresas! <br />
14
+ <span>Dê um Upgrade no seu R&S</span>
19
15
  </h4>
20
-
21
16
  <p>
22
17
  A Tecnologia Burh e suas Soluções oferecem um
23
18
  ambiente único de Recrutamento e Seleção.
24
19
  Treinamentos e Página de Carreiras para sua empresa.
25
20
  </p>
21
+ <h4 class="plan__information__title">Soluçôes Disponíveis</h4>
22
+ <div class="plan__information__solutions">
23
+ <ul>
24
+ <li><i class="fas fa-check"></i>Acessos Ilimitados</li>
25
+ <li><i class="fas fa-check"></i>Vagas Ilimitadas</li>
26
+ <li><i class="fas fa-check"></i>Testes Ilimitados</li>
27
+ <li><i class="fas fa-check"></i>Página Carreiras</li>
28
+ <li><i class="fas fa-check"></i>Portal do RH</li>
29
+ <li><i class="fas fa-check"></i>Descontos Exclusivos</li>
30
+ </ul>
31
+ <ul>
32
+ <li><i class="fas fa-check"></i>Filtros Avançados</li>
33
+ <li><i class="fas fa-check"></i>Robô de Triagem</li>
34
+ <li><i class="fas fa-check"></i>Plataforma EAD</li>
35
+ <li><i class="fas fa-check"></i>Anotações e Laudo</li>
36
+ <li><i class="fas fa-check"></i>Custumer Success</li>
37
+ <li><i class="fas fa-check"></i>E muito mais!</li>
38
+ </ul>
39
+ </div>
26
40
  </section>
27
41
  <section class="plan__contact">
42
+ <img src="/img/diamond-1.svg" class="diamond-svg">
28
43
  <p>
29
44
  Preencha as informações abaixo e nosso time entrará
30
45
  em contato.
@@ -96,7 +111,7 @@ export default {
96
111
  isActive: Boolean,
97
112
  cover: {
98
113
  type: String,
99
- default: '/img/plans_cover.png'
114
+ default: '/img/new_plans_cover.png'
100
115
  }
101
116
  },
102
117
  data() {
@@ -149,26 +164,42 @@ export default {
149
164
  /deep/ .modal-body {
150
165
  margin-bottom: 2rem;
151
166
  }
152
-
153
167
  .plan {
154
168
  background: #fff;
155
169
  border-radius: 0.4375rem;
156
- img.cover {
157
- width: 100%;
158
- height: 8.12rem;
159
- object-fit: cover;
170
+ .cover {
171
+ height: 16rem;
172
+ position: relative;
160
173
  border-top-left-radius: 0.4375rem;
161
174
  border-top-right-radius: 0.4375rem;
175
+ background-image: url('/img/new_plans_cover.png');
176
+ background-repeat: no-repeat;
177
+ background-position: top;
178
+ background-size: cover;
179
+ &::before {
180
+ content: "";
181
+ position: absolute;
182
+ top: 0;
183
+ left: 0;
184
+ height: 100%;
185
+ width: 100%;
186
+ border-top-right-radius: 0.4375rem;
187
+ border-top-left-radius: 0.4375rem;
188
+ background: linear-gradient(90deg, rgba(88, 101, 242, 0.5) 0%, rgba(88, 101, 242, 0.5) 100%);
189
+ }
190
+ @media (max-width: 576px) {
191
+ display: none;
192
+ }
162
193
  }
163
-
164
194
  &__modal {
165
195
  display: flex;
166
196
  justify-content: space-between;
167
197
 
168
198
  margin-top: 2.5rem;
169
199
  padding: 0 2rem;
170
-
200
+
171
201
  @media (max-width: 960px) {
202
+
172
203
  display: flex;
173
204
  justify-content: center;
174
205
  align-items: center;
@@ -180,6 +211,10 @@ export default {
180
211
  width: 53%;
181
212
  word-break: break-word !important;
182
213
 
214
+ @media (max-width: 960px) {
215
+ width: 75%;
216
+ }
217
+
183
218
  &--img {
184
219
  display: flex;
185
220
  align-items: center;
@@ -194,39 +229,73 @@ export default {
194
229
 
195
230
  h4 {
196
231
  font-style: normal;
197
- font-weight: 600;
232
+ font-weight: 700;
198
233
  font-size: 1.25rem;
199
234
  line-height: 1.875rem;
200
235
 
201
236
  color: #1d364b;
237
+ span {
238
+ font-weight: 500;
239
+ }
202
240
  }
203
241
 
204
242
  p {
205
243
  font-style: normal;
206
244
  font-weight: normal;
207
- font-size: 14px;
245
+ font-size: 12px;
208
246
  line-height: 21px;
209
247
 
210
248
  color: #62778c;
211
249
  }
250
+ &__title {
251
+ font-weight: 500 !important;
252
+ font-size: 15px !important;
253
+ }
254
+ &__solutions {
255
+ font-size: 14px;
256
+ display: flex;
257
+ justify-content: space-between;
258
+ ul {
259
+ list-style: none;
260
+ padding: 0;
261
+ margin: 0;
262
+ /deep/.fa-check {
263
+ margin-right: 10px;
264
+ color: #5865f2;
265
+ }
266
+ }
267
+ }
212
268
  }
213
269
 
214
270
  &__contact {
215
271
  width: 47%;
216
-
217
272
  background: #eff5fd;
218
273
  border-radius: 5px;
219
274
  padding: 1rem 1.5rem 1rem;
220
275
  margin-left: 2rem;
221
276
 
277
+ @media (max-width: 960px) {
278
+ margin-top: 1rem;
279
+ width: 75%;
280
+ margin-left: 0;
281
+ }
282
+
283
+ .diamond-svg{
284
+ position: relative;
285
+ top: -35px;
286
+ right: -82px;
287
+
288
+ @media (max-width: 992px) {
289
+ display: none;
290
+ }
291
+ }
222
292
  p {
223
293
  word-break: break-word !important;
224
294
 
225
295
  font-style: normal;
226
- font-weight: 500;
227
- font-size: 15px;
296
+ font-weight: 600;
297
+ font-size: 16px;
228
298
  line-height: 22px;
229
- text-align: center;
230
299
 
231
300
  color: #1d364b;
232
301
  }
@@ -1,79 +1,79 @@
1
- <template>
2
- <div class="recruitment__user__card">
3
- <div
4
- class="recruitment__user__card__header"
5
- >
6
- <skeleton-animate class="user__cover" />
7
- </div>
8
-
9
- <div class="recruitment__user__card__content">
10
- <skeleton-animate class="user__avatar" :width="120" :height="120" img />
11
-
12
- <skeleton-animate class="user__title" :width="160" :height="20" />
13
- </div>
14
-
15
- <div class="recruitment__user__card__footer">
16
- <skeleton-animate class="user__footer" :width="200" :height="20" />
17
- </div>
18
- </div>
19
- </template>
20
-
21
- <script>
22
- import SkeletonAnimate from './SkeletonAnimate.vue';
23
-
24
- export default {
25
- name: 'base-card-university',
26
- components: {
27
- SkeletonAnimate
28
- }
29
- };
30
- </script>
31
-
32
- <style lang="scss" scoped>
33
-
34
- .recruitment__user__card {
35
- background: #fff;
36
- box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
37
- border-radius: 4px;
38
- overflow: hidden;
39
- cursor: pointer;
40
- transition: transform 0.25s;
41
-
42
- &__header {
43
- width: 100%;
44
- height: 70px;
45
- overflow: hidden;
46
- position: relative;
47
- .user__cover {
48
- width: 100%!important;
49
- height: 100%!important;
50
- }
51
- }
52
- &__content {
53
- display: flex;
54
- flex-direction: column;
55
- align-items: center;
56
- justify-content: center;
57
- .user__avatar {
58
- margin-top: -20px;
59
- border: 4px solid #fff;
60
- z-index: 10;
61
- }
62
- .user__title {
63
- margin-top: 40px;
64
- }
65
- }
66
- &__footer {
67
- display: flex;
68
- align-items: center;
69
- justify-content: center;
70
- padding-bottom: 20px;
71
- .user__footer {
72
- margin-top: 40px;
73
- margin-bottom: 20px;
74
- }
75
- }
76
- }
77
-
78
- </style>
79
-
1
+ <template>
2
+ <div class="recruitment__user__card">
3
+ <div
4
+ class="recruitment__user__card__header"
5
+ >
6
+ <skeleton-animate class="user__cover" />
7
+ </div>
8
+
9
+ <div class="recruitment__user__card__content">
10
+ <skeleton-animate class="user__avatar" :width="120" :height="120" img />
11
+
12
+ <skeleton-animate class="user__title" :width="160" :height="20" />
13
+ </div>
14
+
15
+ <div class="recruitment__user__card__footer">
16
+ <skeleton-animate class="user__footer" :width="200" :height="20" />
17
+ </div>
18
+ </div>
19
+ </template>
20
+
21
+ <script>
22
+ import SkeletonAnimate from './SkeletonAnimate.vue';
23
+
24
+ export default {
25
+ name: 'base-card-university',
26
+ components: {
27
+ SkeletonAnimate
28
+ }
29
+ };
30
+ </script>
31
+
32
+ <style lang="scss" scoped>
33
+
34
+ .recruitment__user__card {
35
+ background: #fff;
36
+ box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
37
+ border-radius: 4px;
38
+ overflow: hidden;
39
+ cursor: pointer;
40
+ transition: transform 0.25s;
41
+
42
+ &__header {
43
+ width: 100%;
44
+ height: 70px;
45
+ overflow: hidden;
46
+ position: relative;
47
+ .user__cover {
48
+ width: 100%!important;
49
+ height: 100%!important;
50
+ }
51
+ }
52
+ &__content {
53
+ display: flex;
54
+ flex-direction: column;
55
+ align-items: center;
56
+ justify-content: center;
57
+ .user__avatar {
58
+ margin-top: -20px;
59
+ border: 4px solid #fff;
60
+ z-index: 10;
61
+ }
62
+ .user__title {
63
+ margin-top: 40px;
64
+ }
65
+ }
66
+ &__footer {
67
+ display: flex;
68
+ align-items: center;
69
+ justify-content: center;
70
+ padding-bottom: 20px;
71
+ .user__footer {
72
+ margin-top: 40px;
73
+ margin-bottom: 20px;
74
+ }
75
+ }
76
+ }
77
+
78
+ </style>
79
+
@@ -1,84 +1,84 @@
1
- <template>
2
- <div class="recruitment__user__card">
3
- <div
4
- class="recruitment__user__card__header"
5
- >
6
- <skeleton-animate class="user__cover" />
7
- </div>
8
-
9
- <div class="recruitment__user__card__content">
10
- <skeleton-animate class="user__avatar" :width="120" :height="120" img />
11
-
12
- <skeleton-animate class="user__title" :width="160" :height="20" />
13
- <skeleton-animate class="user__age" :width="80" :height="15" />
14
-
15
- <skeleton-animate class="user__city" :width="120" :height="25" />
16
-
17
- <skeleton-animate class="user__text" :width="140" :height="15" />
18
- <skeleton-animate class="user__experience" :width="220" :height="20" />
19
- </div>
20
- </div>
21
- </template>
22
-
23
- <script>
24
- import SkeletonAnimate from './SkeletonAnimate.vue';
25
-
26
- export default {
27
- name: 'base-card-user',
28
- components: {
29
- SkeletonAnimate
30
- }
31
- };
32
- </script>
33
-
34
- <style lang="scss" scoped>
35
-
36
- .recruitment__user__card {
37
- background: #fff;
38
- box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
39
- border-radius: 4px;
40
- overflow: hidden;
41
- cursor: pointer;
42
- transition: transform 0.25s;
43
- padding-bottom: 40px;
44
-
45
- &__header {
46
- width: 100%;
47
- height: 70px;
48
- overflow: hidden;
49
- position: relative;
50
- .user__cover {
51
- width: 100%!important;
52
- height: 100%!important;
53
- }
54
- }
55
- &__content {
56
- display: flex;
57
- flex-direction: column;
58
- align-items: center;
59
- justify-content: center;
60
- .user__avatar {
61
- margin-top: -20px;
62
- border: 4px solid #fff;
63
- z-index: 10;
64
- }
65
- .user__title {
66
- margin-top: 20px;
67
- }
68
- .user__age {
69
- margin-top: 10px;
70
- }
71
- .user__city {
72
- margin-top: 40px;
73
- }
74
- .user__text {
75
- margin-top: 40px;
76
- }
77
- .user__experience {
78
- margin-top: 5px;
79
- }
80
- }
81
- }
82
-
83
- </style>
84
-
1
+ <template>
2
+ <div class="recruitment__user__card">
3
+ <div
4
+ class="recruitment__user__card__header"
5
+ >
6
+ <skeleton-animate class="user__cover" />
7
+ </div>
8
+
9
+ <div class="recruitment__user__card__content">
10
+ <skeleton-animate class="user__avatar" :width="120" :height="120" img />
11
+
12
+ <skeleton-animate class="user__title" :width="160" :height="20" />
13
+ <skeleton-animate class="user__age" :width="80" :height="15" />
14
+
15
+ <skeleton-animate class="user__city" :width="120" :height="25" />
16
+
17
+ <skeleton-animate class="user__text" :width="140" :height="15" />
18
+ <skeleton-animate class="user__experience" :width="220" :height="20" />
19
+ </div>
20
+ </div>
21
+ </template>
22
+
23
+ <script>
24
+ import SkeletonAnimate from './SkeletonAnimate.vue';
25
+
26
+ export default {
27
+ name: 'base-card-user',
28
+ components: {
29
+ SkeletonAnimate
30
+ }
31
+ };
32
+ </script>
33
+
34
+ <style lang="scss" scoped>
35
+
36
+ .recruitment__user__card {
37
+ background: #fff;
38
+ box-shadow: 0 3px 20px rgba(0, 0, 0, 0.08);
39
+ border-radius: 4px;
40
+ overflow: hidden;
41
+ cursor: pointer;
42
+ transition: transform 0.25s;
43
+ padding-bottom: 40px;
44
+
45
+ &__header {
46
+ width: 100%;
47
+ height: 70px;
48
+ overflow: hidden;
49
+ position: relative;
50
+ .user__cover {
51
+ width: 100%!important;
52
+ height: 100%!important;
53
+ }
54
+ }
55
+ &__content {
56
+ display: flex;
57
+ flex-direction: column;
58
+ align-items: center;
59
+ justify-content: center;
60
+ .user__avatar {
61
+ margin-top: -20px;
62
+ border: 4px solid #fff;
63
+ z-index: 10;
64
+ }
65
+ .user__title {
66
+ margin-top: 20px;
67
+ }
68
+ .user__age {
69
+ margin-top: 10px;
70
+ }
71
+ .user__city {
72
+ margin-top: 40px;
73
+ }
74
+ .user__text {
75
+ margin-top: 40px;
76
+ }
77
+ .user__experience {
78
+ margin-top: 5px;
79
+ }
80
+ }
81
+ }
82
+
83
+ </style>
84
+