PluginProbe
Hostinger Tools / 1.8.2
Hostinger Tools v1.8.2
3.0.77 3.0.76 3.0.75 3.0.74 3.0.73 3.0.72 3.0.71 3.0.70 3.0.69 3.0.68 3.0.67 3.0.66 1.8.1 1.8.2 1.8.3 1.9.1 1.9.4 1.9.5 1.9.6 1.9.7 1.9.8 1.9.9 2.0.0 2.0.1 2.0.4 All 108 releases
hostinger / src / css / components / admin.scss

admin.scss in Hostinger Tools 1.8.2, at src/css/components/admin.scss

535 lines 8.5 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 .hsr-onboarding-navbar {
2 width: 100%;
3 display: flex;
4 justify-content: center;
5 margin-top: 32px;
6 }
7
8 .hsr-onboarding-navbar__wrapper {
9 width: 730px;
10 height: 56px;
11 background: #FFFFFF;
12 border: 1px solid #DADCE0;
13 border-radius: 8px;
14 }
15
16 .hsr-wrapper__list {
17 padding: 0px 16px;
18 height: inherit;
19 margin: 0;
20 display: flex;
21 align-items: center;
22 }
23
24 .hsr-list__item {
25 font-weight: 700;
26 font-size: 14px;
27 line-height: 24px;
28 color: #727586;
29 padding: 16px 24px;
30 cursor: pointer;
31 margin: 0;
32 }
33
34 .hsr-active {
35 color: #673DE6;
36 border-bottom: #673DE6 1px solid;
37 }
38
39 .hsr-onboarding {
40 width: 100%;
41 display: flex;
42 justify-content: center;
43 flex-direction: column;
44 text-align: center;
45 margin-top: 32px;
46 }
47
48 .hsr-onboarding__title {
49 font-size: 24px;
50 line-height: 32px;
51 font-weight: bold;
52 }
53
54 .hsr-onboarding__description {
55 font-size: $text-font-size;
56 font-weight: 400;
57 }
58
59 .hostinger.hsr-onboarding p {
60 color: $paragraph-color;
61 margin-top: 8px;
62 line-height: 24px;
63 }
64
65 .hsr-onboarding-steps {
66 display: flex;
67 flex-direction: column;
68 align-items: center;
69 justify-content: center;
70 margin-top: 16px;
71 }
72
73 .hsr-onboarding-step {
74 background-color: #FFFFFF;
75 width: 730px;
76 display: flex;
77 border: 1px solid #DADCE0;
78 border-radius: 8px;
79 flex-direction: column;
80 margin-top: 8px;
81 }
82
83 .hsr-onboarding-step--status {
84 width: 16px;
85 height: 16px;
86 background-color: transparent;
87 border: 2px $light-purple solid;
88 margin-right: 10px;
89 border-radius: 50%;
90 }
91
92 .hsr-onboarding-step--status.completed {
93 background-image: url("../images/completed.svg");
94 height: 20px;
95 width: 20px;
96 background-size: contain;
97 border: none;
98 }
99
100
101 .hsr-onboarding-step--title h4 {
102 font-size: 16px;
103 line-height: 24px;
104 font-weight: bold;
105 display: flex;
106 align-items: center;
107 height: 57px;
108 flex: 1;
109 }
110
111 .hsr-onboarding-step--title {
112 border-bottom: 1px #DADCE0 solid;
113 display: flex;
114 align-items: center;
115 padding: 0 24px;
116 position: relative;
117 cursor: pointer;
118 }
119
120 .hsr-onboarding-step--body {
121 display: flex;
122 flex-wrap: wrap;
123 flex-direction: row;
124 }
125
126 .hsr-onboarding-step--body__title {
127 display: flex;
128 align-items: center;
129 }
130
131 .hsr-onboarding-step--body__content a {
132 text-decoration: none;
133 color: $primary-purple;
134 font-weight: bold;
135 }
136
137 .hsr-onboarding-step--body__title h4 {
138 font-size: $text-font-size;
139 }
140
141 .hsr-onboarding-step--body__content {
142 flex: 1;
143 margin-bottom: 16px;
144 }
145
146 .hsr-onboarding-step--body__content p {
147 text-align: left;
148 font-size: $text-font-size;
149 }
150
151 .hsr-onboarding-step--body__counter {
152 color: $primary-purple;
153 font-size: $text-font-size;
154 font-weight: bold;
155 border: 1px $light-purple solid;
156 border-radius: 50%;
157 width: 20px;
158 height: 20px;
159 display: flex;
160 justify-content: center;
161 align-items: center;
162 margin-right: 10px;
163 }
164
165 .hsr-onboarding-step--expand {
166 width: 32px;
167 height: 32px;
168 border-radius: 50%;
169 position: relative;
170 transform: rotate(.5turn);
171 }
172
173 .hsr-onboarding-step--expand:before {
174 content: " ";
175 position: absolute;
176 top: 50%;
177 left: 50%;
178 transform: translate(-50%, -50%);
179 height: 8px;
180 width: 12px;
181 background-image: url("../images/expand-icon.svg");
182 background-repeat: no-repeat;
183 background-size: contain;
184 }
185
186 .hsr-onboarding-step--expand:hover {
187 background: linear-gradient(0deg, rgba(103, 61, 230, 0.08), rgba(103, 61, 230, 0.08)), #FFFFFF;
188 }
189
190 .hsr-onboarding-step--expand.open {
191 transform: rotate(1turn);
192 }
193
194 .hsr-onboarding-step--content {
195 display: none;
196 padding: 24px;
197 }
198
199 .hsr-onboarding-step--content.open {
200 display: block;
201 }
202
203 .hsr-onboarding-step--footer {
204 display: flex;
205 align-items: center;
206 justify-content: flex-end;
207 }
208
209 @media only screen and (max-width: 768px) {
210 .hsr-onboarding-step {
211 width: 80%;
212 }
213
214 .hsr-publish-modal .hsr-publish-modal--body {
215 width: 70%;
216 }
217 }
218
219 /*modal */
220 .hsr-modal {
221 display: none;
222 align-items: center;
223 align-content: center;
224 justify-content: center;
225 position: absolute;
226 width: 100%;
227 height: 100%;
228 top: 0;
229 left: 0;
230 }
231
232 .hsr-modal.open {
233 display: flex;
234 }
235
236 .hsr-publish-modal--body {
237 display: flex;
238 background-color: #FFFFFF;
239 z-index: 999999;
240 width: 600px;
241 height: 560px;
242 border: 1px solid #DADCE0;
243 border-radius: 8px;
244 flex-direction: column;
245 justify-content: center;
246 }
247
248 .hsr-publish-modal--body h3 {
249 font-weight: 700;
250 font-size: 20px;
251 line-height: 32px;
252 }
253
254 .hsr-publish-modal--footer {
255 margin-top: 24px;
256 display: none;
257 }
258
259 .hsr-publish-modal--footer.show {
260 display: block;
261 }
262
263 .hsr-publish-overlay {
264 background: #000;
265 opacity: 0.7;
266 filter: alpha(opacity=70);
267 position: fixed;
268 z-index: 99999;
269 left: 0;
270 top: 0;
271 min-width: 100vw;
272 min-height: 100vh;
273 }
274
275 .hsr-success:after {
276 content: url("../images/success-circular-loader.svg");
277 width: 28px;
278 height: 28px;
279 }
280
281 .hsr-circular {
282 animation: rotate 2s linear infinite;
283 height: 48px;
284 width: 48px;
285 margin: 0 auto 24px auto;
286 overflow: hidden;
287 }
288
289 .hsr-learn-page-container {
290 display: flex;
291 align-items: center;
292 flex-direction: column;
293 }
294 .hsr-page-container-wrapper {
295 width: 100%;
296 max-width: 730px;
297 }
298 .hsr-tutorial-wrapper {
299 margin-top: 24px;
300 width: 100%;
301 max-width: 730px;
302 background: #FFFFFF;
303 border: 1px solid #DADCE0;
304 border-radius: 8px;
305 }
306
307 .hsr-wrapper-header {
308 display: flex;
309 padding: 16px 24px;
310 border-bottom: 1px solid #DADCE0;
311 justify-content: space-between;
312 }
313
314 .hsr-header-title {
315 color: #1D1E20;
316 font-weight: 700;
317 font-size: 16px;
318 line-height: 24px;
319 }
320
321 .hsr-header-youtube {
322 width: 172px;
323 display: inline-flex;
324 justify-content: flex-end;
325 cursor: pointer;
326 }
327
328 .hsr-hostinger-youtube-link {
329 text-decoration: none;
330 display: contents;
331 }
332
333 .hsr-youtube-logo {
334 padding: 0 8px;
335 }
336
337 .hsr-youtube-title {
338 font-weight: 700;
339 font-size: 14px;
340 line-height: 24px;
341 color: #673DE6;
342 white-space: pre;
343 }
344
345 .hsr-video-wrapper {
346 display: flex;
347 flex-direction: column;
348 padding: 20px 24px;
349 }
350
351 .hsr-main-video-title {
352 padding-top: 12px;
353 font-weight: 700;
354 font-size: 20px;
355 line-height: 32px;
356 color: #1D1E20;
357 padding-bottom: 20px;
358 }
359
360 .hsr-hsr-playlist-wrapper {
361 height: 288px;
362 border-top: 1px solid #DADCE0;
363 border-bottom: 1px solid #DADCE0;
364 overflow-y: scroll;
365 }
366
367 .hsr-active-video {
368 background: #EBE4FF;
369 }
370
371 .hsr-playlist-item {
372 display: flex;
373 flex-direction: row;
374 cursor: pointer;
375 padding: 2px 0;
376 }
377
378 .hsr-playlist-item-arrow {
379 align-self: center;
380 visibility: hidden;
381 }
382
383 .hsr-arrow-icon {
384 padding: 0 8px;
385 }
386
387 .hsr-playlist-item-thumbnail {
388 padding: 3px 0;
389 overflow: hidden;
390 height: 62px;
391 }
392
393 .hsr-thumbnail-image {
394 margin-top: -14px;
395 }
396
397 .hsr-playlist-item-info {
398 padding: 0 16px;
399 display: flex;
400 flex-direction: column;
401 justify-content: center;
402 }
403
404 .hsr-playlist-item-title {
405 margin-top: -4px;
406 font-style: normal;
407 font-weight: 700;
408 font-size: 14px;
409 line-height: 24px;
410 color: #1D1E20;
411 }
412
413 .hsr-playlist-item-time {
414 font-weight: 400;
415 font-size: 12px;
416 line-height: 20px;
417 color: #727586;
418 }
419
420 .hsr-help-wrapper {
421 margin: 24px 0;
422 display: flex;
423 flex-direction: row;
424 justify-content: space-between;
425 width: 730px;
426 }
427
428 .hsr-help-card {
429 width: 350px;
430 height: 128px;
431 display: flex;
432 flex-direction: row;
433 background: #FFFFFF;
434 border: 1px solid #DADCE0;
435 border-radius: 8px;
436 cursor: pointer;
437 }
438
439 .hsr-card-logo {
440 align-self: center;
441 justify-self: center;
442 grid-row: 1/3;
443 grid-column: 1;
444 padding-left: 24px;
445 padding-right: 16px;
446 }
447
448 .hsr-logo-image {
449 vertical-align: middle;
450 }
451
452 .hsr-card-title {
453 padding-top: 24px;
454 font-weight: 700;
455 font-size: 16px;
456 line-height: 24px;
457 padding-right: 24px;
458 color: #1D1E20;
459 padding-bottom: 8px;
460 }
461
462 .hsr-card-description {
463 font-style: normal;
464 font-weight: 400;
465 font-size: 14px;
466 line-height: 24px;
467 padding-right: 24px;
468 padding-bottom: 24px;
469 color: #727586;
470 }
471
472
473 @media only screen and (max-width: 768px) {
474 .hsr-wrapper-header {
475 justify-content: center;
476 width: max-content;
477 }
478
479 .hsr-tutorial-wrapper, .hsr-page-container-wrapper {
480 width: 100%;
481 max-width: 370px;
482 }
483
484 .hsr-main-video {
485 text-align: -webkit-center;
486 }
487
488 .hsr-main-video-title {
489 margin: 0 10px;
490 }
491
492 .hsr-video-content {
493 font-size: 8px;
494 }
495
496 .hsr-playlist-item-thumbnail {
497 display: none;
498 }
499
500 .hsr-video-frame {
501 height: 200px;
502 width: 325px;
503 }
504
505 .hsr-help-wrapper {
506 display: flex;
507 flex-direction: column;
508 width: unset;
509 }
510
511 .hsr-help-card {
512 margin-bottom: 24px;
513 max-width: 370px;
514 width: 100%;
515 }
516 }
517
518 @keyframes rotate {
519 100% {
520 transform: rotate(360deg);
521 }
522 }
523
524 .hsr-success-circular {
525 display: none;
526 }
527
528 .hsr-hide {
529 display: none;
530 }
531
532 .hsr-show {
533 display: block;
534 }
535