PluginProbe
Hostinger Tools / 2.0.9
Hostinger Tools v2.0.9
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 2.0.9, at src/css/components/admin.scss

693 lines 10.8 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 }
6
7 .hsr-onboarding-navbar__wrapper {
8 width: 100%;
9 height: 72px;
10 background: #FFFFFF;
11 border-bottom: 1px solid #DADCE0;
12
13 @media(max-width: 1000px) {
14 height: 56px;
15 }
16
17 }
18
19 .hsr-wrapper__list {
20 padding: 0px 16px;
21 height: inherit;
22 margin: 0;
23 display: flex;
24 align-items: center;
25 }
26
27 .hsr-list__item {
28 font-weight: normal;
29 font-size: 16px;
30 line-height: 24px;
31 color: $gray-base;
32 padding: 24px 30px;
33 cursor: pointer;
34 margin: 0;
35 display: flex;
36 align-items: center;
37 border-bottom: 1px solid transparent;
38
39 svg {
40 margin-right: 5px;
41
42 path {
43 fill: $gray-base;
44 }
45
46 }
47 @media( max-width: 1170px) {
48 padding: 24px 15px;
49 font-size: 14px;
50 }
51 @media( max-width: 1000px) {
52 display: none;
53 }
54 }
55
56 .hsr-active {
57 color: $primary-purple;
58 border-bottom: $primary-purple 2px solid;
59 background-color: $light-purple;
60 padding-top: 25px;
61
62 svg {
63 margin-right: 5px;
64
65 path {
66 fill: $primary-purple;
67 }
68
69 }
70
71 }
72
73 .hsr-onboarding {
74 width: 100%;
75 display: flex;
76 justify-content: center;
77 flex-direction: column;
78 text-align: center;
79 margin-top: 32px;
80 }
81
82 .hsr-onboarding__title {
83 font-size: 24px;
84 line-height: 32px;
85 font-weight: bold;
86 }
87
88 .hsr-onboarding__description {
89 font-size: $text-font-size;
90 font-weight: 400;
91 }
92
93 .hostinger.hsr-onboarding {
94
95 p,
96 ul {
97 color: $paragraph-color;
98 margin-top: 8px;
99 line-height: 24px;
100 }
101
102 ul {
103 list-style-type: disc;
104 margin-left: 25px;
105
106 li {
107 text-align: left;
108 }
109 }
110 }
111
112 .hsr-onboarding-steps {
113 display: flex;
114 flex-direction: column;
115 align-items: center;
116 justify-content: center;
117 margin-top: 16px;
118 }
119
120 .hsr-onboarding-step {
121 background-color: #FFFFFF;
122 width: 730px;
123 display: flex;
124 border: 1px solid #DADCE0;
125 border-radius: 8px;
126 flex-direction: column;
127 margin-top: 8px;
128 }
129
130 .hsr-onboarding-step--status {
131 width: 16px;
132 height: 16px;
133 background-color: transparent;
134 border: 2px $light-purple solid;
135 margin-right: 10px;
136 border-radius: 50%;
137 }
138
139 .hsr-onboarding-step--status.completed {
140 background-image: url("../images/completed.svg");
141 height: 20px;
142 width: 20px;
143 background-size: contain;
144 border: none;
145 }
146
147
148 .hsr-onboarding-step--title h4 {
149 font-size: 16px;
150 line-height: 24px;
151 font-weight: bold;
152 display: flex;
153 align-items: center;
154 height: 57px;
155 flex: 1;
156 }
157
158 .hsr-onboarding-step--title {
159 border-bottom: 1px #DADCE0 solid;
160 display: flex;
161 align-items: center;
162 padding: 0 24px;
163 position: relative;
164 cursor: pointer;
165 }
166
167 .hsr-onboarding-step--body {
168 display: flex;
169 flex-wrap: wrap;
170 flex-direction: row;
171 }
172
173 .hsr-onboarding-step--body__title {
174 display: flex;
175 align-items: center;
176 }
177
178 .hsr-onboarding-step--body__content a {
179 text-decoration: none;
180 color: $primary-purple;
181 font-weight: bold;
182 }
183
184 .hsr-onboarding-step--body__title h4 {
185 font-size: $text-font-size;
186 }
187
188 .hsr-onboarding-step--body__content {
189 flex: 1;
190 margin-bottom: 16px;
191 }
192
193 .hsr-onboarding-step--body__content p {
194 text-align: left;
195 font-size: $text-font-size;
196 }
197
198 .hsr-onboarding-step--body__counter {
199 color: $primary-purple;
200 font-size: $text-font-size;
201 font-weight: bold;
202 border: 1px $light-purple solid;
203 border-radius: 50%;
204 width: 20px;
205 height: 20px;
206 display: flex;
207 justify-content: center;
208 align-items: center;
209 margin-right: 10px;
210 }
211
212 .hsr-onboarding-step--expand {
213 width: 32px;
214 height: 32px;
215 border-radius: 50%;
216 position: relative;
217 transform: rotate(.5turn);
218 }
219
220 .hsr-onboarding-step--expand:before {
221 content: " ";
222 position: absolute;
223 top: 50%;
224 left: 50%;
225 transform: translate(-50%, -50%);
226 height: 8px;
227 width: 12px;
228 background-image: url("../images/expand-icon.svg");
229 background-repeat: no-repeat;
230 background-size: contain;
231 }
232
233 .hsr-onboarding-step--expand:hover {
234 background: linear-gradient(0deg, rgba(103, 61, 230, 0.08), rgba(103, 61, 230, 0.08)), #FFFFFF;
235 }
236
237 .hsr-onboarding-step--expand.open {
238 transform: rotate(1turn);
239 }
240
241 .hsr-onboarding-step--content {
242 display: none;
243 padding: 24px;
244 }
245
246 .hsr-onboarding-step--content.open {
247 display: block;
248 }
249
250 .hsr-onboarding-step--footer {
251 display: flex;
252 align-items: center;
253 justify-content: flex-end;
254 }
255
256 @media only screen and (max-width: 768px) {
257 .hsr-onboarding-step {
258 width: 100%;
259 }
260
261 .hsr-publish-modal .hsr-publish-modal--body {
262 width: 70%;
263 }
264 }
265
266 /*modal */
267 .hsr-modal {
268 display: none;
269 align-items: center;
270 align-content: center;
271 justify-content: center;
272 position: absolute;
273 width: 100%;
274 height: 100%;
275 top: 0;
276 left: 0;
277 }
278
279 .hsr-modal.open {
280 display: flex;
281 }
282
283 .hsr-publish-modal--body {
284 display: flex;
285 background-color: #FFFFFF;
286 z-index: 999999;
287 width: 600px;
288 height: 560px;
289 border: 1px solid #DADCE0;
290 border-radius: 8px;
291 flex-direction: column;
292 justify-content: center;
293 }
294
295 .hsr-publish-modal--body h3 {
296 font-weight: 700;
297 font-size: 20px;
298 line-height: 32px;
299 }
300
301 .hsr-publish-modal--footer {
302 margin-top: 24px;
303 display: none;
304 }
305
306 .hsr-publish-modal--footer.show {
307 display: block;
308 }
309
310 .hsr-publish-overlay {
311 background: #000;
312 opacity: 0.7;
313 filter: alpha(opacity=70);
314 position: fixed;
315 z-index: 99999;
316 left: 0;
317 top: 0;
318 min-width: 100vw;
319 min-height: 100vh;
320 }
321
322 .hsr-success:after {
323 content: url("../images/success-circular-loader.svg");
324 width: 28px;
325 height: 28px;
326 }
327
328 .hsr-circular {
329 animation: rotate 2s linear infinite;
330 height: 48px;
331 width: 48px;
332 margin: 0 auto 24px auto;
333 overflow: hidden;
334 }
335
336 .hsr-learn-page-container {
337 display: flex;
338 align-items: center;
339 flex-direction: column;
340 padding: 0 15px;
341 }
342 .hsr-page-container-wrapper {
343 width: 100%;
344 max-width: 730px;
345 }
346 .hsr-tutorial-wrapper {
347 margin-top: 24px;
348 width: 100%;
349 max-width: 730px;
350 background: #FFFFFF;
351 border: 1px solid #DADCE0;
352 border-radius: 8px;
353 }
354
355 .hsr-wrapper-header {
356 display: flex;
357 padding: 16px 24px;
358 border-bottom: 1px solid #DADCE0;
359 justify-content: space-between;
360 }
361
362 .hsr-header-title {
363 color: #1D1E20;
364 font-weight: 700;
365 font-size: 16px;
366 line-height: 24px;
367
368 @media( max-width: 500px ) {
369 font-size: 14px;
370 }
371 }
372
373 .hsr-header-youtube {
374 width: 172px;
375 display: inline-flex;
376 justify-content: flex-end;
377 cursor: pointer;
378 }
379
380 .hsr-hostinger-youtube-link {
381 text-decoration: none;
382 display: contents;
383 }
384
385 .hsr-youtube-logo {
386 padding: 0 8px;
387 }
388
389 .hsr-youtube-title {
390 font-weight: 700;
391 font-size: 14px;
392 line-height: 24px;
393 color: #673DE6;
394 white-space: pre;
395 }
396
397 .hsr-video-wrapper {
398 display: flex;
399 flex-direction: column;
400 padding: 20px 24px;
401 }
402
403 .hsr-main-video-title {
404 padding-top: 12px;
405 font-weight: 700;
406 font-size: 20px;
407 line-height: 32px;
408 color: #1D1E20;
409 padding-bottom: 20px;
410 }
411
412 .hsr-hsr-playlist-wrapper {
413 height: 288px;
414 border-top: 1px solid #DADCE0;
415 border-bottom: 1px solid #DADCE0;
416 overflow-y: scroll;
417 }
418
419 .hsr-active-video {
420 background: #EBE4FF;
421 }
422
423 .hsr-playlist-item {
424 display: flex;
425 flex-direction: row;
426 cursor: pointer;
427 padding: 2px 0;
428 }
429
430 .hsr-playlist-item-arrow {
431 align-self: center;
432 visibility: hidden;
433 }
434
435 .hsr-arrow-icon {
436 padding: 0 8px;
437 }
438
439 .hsr-playlist-item-thumbnail {
440 padding: 3px 0;
441 overflow: hidden;
442 height: 62px;
443 }
444
445 .hsr-thumbnail-image {
446 margin-top: -14px;
447 }
448
449 .hsr-playlist-item-info {
450 padding: 0 16px;
451 display: flex;
452 flex-direction: column;
453 justify-content: center;
454 }
455
456 .hsr-playlist-item-title {
457 margin-top: -4px;
458 font-style: normal;
459 font-weight: 700;
460 font-size: 14px;
461 line-height: 24px;
462 color: #1D1E20;
463 }
464
465 .hsr-playlist-item-time {
466 font-weight: 400;
467 font-size: 12px;
468 line-height: 20px;
469 color: #727586;
470 }
471
472 .hsr-help-wrapper {
473 margin: 24px 0;
474 display: flex;
475 flex-direction: row;
476 justify-content: space-between;
477 width: 730px;
478 }
479
480 .hsr-help-card {
481 width: 350px;
482 height: 128px;
483 display: flex;
484 flex-direction: row;
485 background: #FFFFFF;
486 border: 1px solid #DADCE0;
487 border-radius: 8px;
488 cursor: pointer;
489 }
490
491 .hsr-card-logo {
492 align-self: center;
493 justify-self: center;
494 grid-row: 1/3;
495 grid-column: 1;
496 padding-left: 24px;
497 padding-right: 16px;
498 }
499
500 .hsr-logo-image {
501 vertical-align: middle;
502 }
503
504 .hsr-card-title {
505 padding-top: 24px;
506 font-weight: 700;
507 font-size: 16px;
508 line-height: 24px;
509 padding-right: 24px;
510 color: #1D1E20;
511 padding-bottom: 8px;
512 }
513
514 .hsr-card-description {
515 font-style: normal;
516 font-weight: 400;
517 font-size: 14px;
518 line-height: 24px;
519 padding-right: 24px;
520 padding-bottom: 24px;
521 color: #727586;
522 }
523
524
525 @media only screen and (max-width: 768px) {
526 .hsr-wrapper-header {
527 justify-content: center;
528 flex-wrap: wrap;
529 }
530
531 .hsr-tutorial-wrapper, .hsr-page-container-wrapper {
532 width: 100%;
533 }
534
535 .hsr-main-video {
536 text-align: -webkit-center;
537 }
538
539 .hsr-main-video-title {
540 margin: 0 10px;
541 }
542
543 .hsr-video-content {
544 font-size: 8px;
545 }
546
547 .hsr-playlist-item-thumbnail {
548 display: none;
549 }
550
551 .hsr-video-frame {
552 height: 200px;
553 width: 325px;
554 }
555
556 .hsr-help-wrapper {
557 display: flex;
558 flex-direction: column;
559 width: unset;
560 }
561
562 .hsr-help-card {
563 margin-bottom: 24px;
564 width: 100%;
565 }
566 }
567
568 @keyframes rotate {
569 100% {
570 transform: rotate(360deg);
571 }
572 }
573
574 .hsr-success-circular {
575 display: none;
576 }
577
578 .hsr-hide {
579 display: none;
580 }
581
582 .hsr-show {
583 display: block;
584 }
585
586 .hts-domain-step {
587
588 .hts-website-url,.hts-nameservers {
589 background-color:$gray-light;
590 padding: 16px;
591 margin-top: 10px;
592 text-align: left;
593 color: $gray-base;
594
595 span {
596 color: $primary-purple;
597 margin-left: 30px;
598 font-weight: 600;
599 }
600
601 }
602 .hts-nameservers {
603 div {
604 display: flex;
605 align-items: baseline;
606
607 p {
608 min-width: 125px;
609 }
610
611 b {
612 color: $dark;
613 display: flex;
614 align-items: center;
615
616 svg {
617 margin-left: 10px;
618 cursor: pointer;
619 }
620 }
621 }
622 }
623
624 .hts-yt-video {
625 display: flex;
626 align-items: center;
627 justify-content: space-between;
628
629 @media(max-width: 767px) {
630 flex-direction: column;
631 align-items: flex-start;
632 }
633
634 .hts-wrap {
635 display: flex;
636 align-items: center;
637
638 @media(max-width: 767px) {
639 img {
640 display: block;
641 margin: 10px auto 10px 0;
642 }
643 display: block;
644 }
645
646 .hts-video-description {
647 margin-left: 15px;
648
649 @media(max-width: 767px) {
650 margin-left: 0;
651 }
652
653 p {
654 font-size: 12px;
655 color: $gray-base;
656 }
657 }
658 }
659
660 .hts-video-button {
661
662 a {
663 display: flex;
664 }
665
666 @media(max-width: 767px) {
667 margin-top: 10px;
668 }
669 }
670
671 }
672
673 }
674
675 .hts-tab-content {
676
677 .wrapper {
678 margin: auto;
679 max-width: 730px;
680 width: 100%;
681 }
682
683 .hts-container {
684 background-color: #fff;
685 border: 1px solid #dadce0;
686 border-radius: 8px;
687 margin-top: 25px;
688 padding: 40px;
689 text-align: left;
690 }
691
692 }
693