PluginProbe
Hostinger Tools / 1.9.7
Hostinger Tools v1.9.7
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 / base / base.scss

base.scss in Hostinger Tools 1.9.7, at src/css/base/base.scss

202 lines 3.2 KB
No matching file
Up and down to move Enter to open Esc to close
Raw Download Zip
1 @import "variables";
2 @import "fonts";
3 @import "animations";
4
5 .hostinger {
6 color: #1D1E20;
7 font-family: DMSans, serif;
8 font-size: 14px;
9 line-height: 24px;
10 }
11
12 .hostinger p, h1, h2, h3, h4 {
13 font-weight: normal;
14 color: #1D1E20;
15 margin: 0;
16 padding: 0;
17 }
18
19 .hsr-btn {
20 text-decoration: none;
21 padding: 8px 24px;
22 font-weight: bold;
23 color: $primary-purple;
24 position: relative;
25 }
26
27 .hsr-primary-btn {
28 background: $primary-purple;
29 border-radius: 4px;
30 color: #FFFFFF;
31 flex-grow: 0;
32 }
33
34 .hsr-secondary-btn {
35 border: 1px #DADCE0 solid;
36 border-radius: 8px;
37 margin-right: 16px;
38 }
39
40 .hsr-secondary-btn:hover {
41 background-color: $light-purple;
42 }
43
44 .hsr-secondary-btn:focus {
45 color: $primary-purple;
46 }
47
48 .hsr-primary-btn:hover {
49 background-color: $primary-purple-dark;
50 color: #FFFFFF;
51 }
52
53 .hsr-publish-btn {
54 margin-top: 24px;
55 background-color: $primary-purple;
56 color: #FFFFFF;
57 padding: 12px 32px;
58 border-radius: 4px;
59 }
60
61 .hsr-publish-btn:hover {
62 color: $primary-purple-dark;
63 background-color: transparent;
64 }
65
66 .hsr-publish-btn.completed {
67 background-color: $primary-purple;
68 color: #FFFFFF;
69 }
70
71 .hsr-publish-btn.completed:hover {
72 background-color: $primary-purple-dark;
73 color: #FFFFFF;
74 }
75
76 .hsr-publish-btn.hsr-preview {
77 display: none;
78 }
79
80 .hsr-preview-btn {
81 display: none;
82 }
83
84 .hsr-no-bg-btn {
85 margin-top: 24px;
86 padding: 12px 32px;
87 color: $primary-purple;
88 background-color: transparent;
89 }
90
91 .hsr-preview-btn.hsr-preview {
92 display: block;
93 }
94
95 .hsr-preview-btn:hover {
96 color: $primary-purple-dark;
97 background-color: transparent;
98 }
99
100 .hsr-outline-btn {
101 padding: 8px 24px;
102 border: 1px solid #DADCE0;
103 border-radius: 4px;
104 }
105
106 .hsr-outline-btn:hover {
107 background-color: $light-purple;
108 color: $primary-purple;
109 }
110
111 .hsr-primary-btn:focus, .hsr-primary-btn:active {
112 color: #FFFFFF;
113 }
114
115 .hsr-no-bg-btn:active, .hsr-no-bg-btn:focus {
116 color: $primary-purple;
117 }
118
119 a.hsr-secondary-btn:hover {
120 color: $primary-purple;
121 }
122
123 .toplevel_page_hostinger .notice {
124 display: none!important;
125 }
126
127 .toplevel_page_hostinger .notice.notice-info .hts-admin-notice {
128 display: block !important;
129 }
130
131 .hts-heading {
132
133 h2 {
134 font-size: 24px;
135 font-weight: 700;
136 line-height: 32px;
137 text-align: center;
138 }
139
140 }
141
142 .hsr-btn.hts-disabled {
143 cursor: initial;
144 background-color: $gray-base;
145 pointer-events: none;
146 }
147
148 .hsr-btn.button--loading {
149 pointer-events: none;
150
151 &::after {
152 content: "";
153 position: absolute;
154 width: 15px;
155 height: 15px;
156 top: -10px;
157 right: 5px;
158 bottom: 0;
159 margin: auto;
160 border: 2px solid $gray-light;
161 border-top-color: $gray-base;
162 border-radius: 50%;
163 animation: button-loading-spinner 1s ease infinite;
164 }
165
166 .button__text {
167 visibility:hidden;
168 }
169
170 }
171
172 .hsr-btn.hts-disabled {
173 cursor: initial;
174 background-color: $gray-base;
175 }
176
177 @media( max-width: 767px) {
178 .hsr-wrapper__list {
179 justify-content: space-between;
180
181 .hsr-list__item {
182 font-size: 13px;
183 padding: 16px 10px;
184 }
185 }
186 .toplevel_page_hostinger #wpcontent {
187 padding-right: 10px;
188 }
189 }
190
191 @media( max-width: 600px) {
192 .hsr-onboarding-navbar__wrapper {
193 height: 100% !important;
194
195 .hsr-wrapper__list {
196 flex-direction: column;
197 .hsr-list__item {
198 padding: 10px;
199 }
200 }
201 }
202 }