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

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