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 / base / base.scss

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

302 lines 4.4 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 @import "sidebar";
5
6 .hostinger {
7 color: #1D1E20;
8 font-family: DMSans, serif;
9 font-size: 14px;
10 line-height: 24px;
11 }
12
13 .hostinger p, h1, h2, h3, h4 {
14 font-weight: normal;
15 color: #1D1E20;
16 margin: 0;
17 padding: 0;
18 }
19
20 .hsr-btn {
21 text-decoration: none;
22 padding: 8px 24px;
23 font-weight: bold;
24 color: $primary-purple;
25 position: relative;
26 }
27
28 .hsr-primary-btn {
29 background: $primary-purple;
30 border-radius: 4px;
31 color: #FFFFFF;
32 flex-grow: 0;
33 }
34
35 .hsr-secondary-btn {
36 border: 1px #DADCE0 solid;
37 border-radius: 8px;
38 margin-right: 16px;
39 }
40
41 .hsr-purple-btn {
42 display: flex;
43 background-color: $purple;
44 color: $white;
45 padding: 12px 32px;
46 justify-content: center;
47 align-items: center;
48 border-radius: 4px;
49 max-height: 48px;
50 height: 100%;
51 transition: .3s;
52
53 &:hover, &:focus, &:active {
54 opacity: .8;
55 color: $white;
56 }
57 }
58
59 .hsr-secondary-btn:hover {
60 background-color: $light-purple;
61 }
62
63 .hsr-secondary-btn:focus {
64 color: $primary-purple;
65 }
66
67 .hsr-primary-btn:hover {
68 background-color: $primary-purple-dark;
69 color: #FFFFFF;
70 }
71
72 .hsr-publish-btn {
73 margin-top: 24px;
74 background-color: $primary-purple;
75 color: #FFFFFF;
76 padding: 12px 32px;
77 border-radius: 4px;
78 }
79
80 .hsr-publish-btn:hover {
81 color: $primary-purple-dark;
82 background-color: transparent;
83 }
84
85 .hsr-publish-btn.completed {
86 background-color: $primary-purple;
87 color: #FFFFFF;
88 }
89
90 .hsr-publish-btn.completed:hover {
91 background-color: $primary-purple-dark;
92 color: #FFFFFF;
93 }
94
95 .hsr-publish-btn.hsr-preview {
96 display: none;
97 }
98
99 .hsr-preview-btn {
100 display: none;
101 }
102
103 .hsr-no-bg-btn {
104 margin-top: 24px;
105 padding: 12px 32px;
106 color: $primary-purple;
107 background-color: transparent;
108 }
109
110 .hsr-preview-btn.hsr-preview {
111 display: block;
112 }
113
114 .hsr-preview-btn:hover {
115 color: $primary-purple-dark;
116 background-color: transparent;
117 }
118
119 .hsr-outline-btn {
120 padding: 8px 24px;
121 border: 1px solid #DADCE0;
122 border-radius: 4px;
123 }
124
125 .hsr-outline-btn:hover {
126 background-color: $light-purple;
127 color: $primary-purple;
128 }
129
130 .hsr-primary-btn:focus, .hsr-primary-btn:active {
131 color: #FFFFFF;
132 }
133
134 .hsr-no-bg-btn:active, .hsr-no-bg-btn:focus {
135 color: $primary-purple;
136 }
137
138 a.hsr-secondary-btn:hover {
139 color: $primary-purple;
140 }
141
142 .toplevel_page_hostinger .notice {
143 display: none !important;
144 }
145
146 .toplevel_page_hostinger .notice.notice-info .hts-admin-notice {
147 display: block !important;
148 }
149
150 .hts-heading {
151
152 h2 {
153 font-size: 24px;
154 font-weight: 700;
155 line-height: 32px;
156 text-align: center;
157 }
158
159 }
160
161 .hsr-btn.hts-disabled {
162 cursor: initial;
163 background-color: $gray-base;
164 pointer-events: none;
165 }
166
167 .hsr-btn.button--loading {
168 pointer-events: none;
169
170 &::after {
171 content: "";
172 position: absolute;
173 width: 15px;
174 height: 15px;
175 top: -10px;
176 right: 5px;
177 bottom: 0;
178 margin: auto;
179 border: 2px solid $gray-light;
180 border-top-color: $gray-base;
181 border-radius: 50%;
182 animation: button-loading-spinner 1s ease infinite;
183 }
184
185 .button__text {
186 visibility: hidden;
187 }
188
189 }
190
191 .hsr-btn.hts-disabled {
192 cursor: initial;
193 background-color: $gray-base;
194 }
195
196 .hsr-onboarding-navbar__wrapper {
197 display: flex;
198 align-items: center;
199 position: relative;
200
201 .hsr-logo {
202 padding: 0 20px 0 30px;
203
204 .hsr-mobile-logo {
205 display: none;
206 }
207
208 @media( max-width: 1170px) {
209 padding: 0 10px 0 20px;
210 }
211
212 @media(max-width: 1000px) {
213 padding: 0 10px 0 15px;
214
215 svg {
216 display: none;
217 }
218 .hsr-mobile-logo {
219 display: block;
220 }
221 }
222 }
223
224 .hsr-go-to-hpanel {
225 position: absolute;
226 right: 30px;
227 top:25px;
228 display: flex;
229 align-items: center;
230
231 a {
232 text-decoration: none;
233 font-size: 14px;
234 line-height: 24px;
235 font-weight: 700;
236 color:$primary-purple;
237 margin-left: 8px;
238 transition: .3s;
239
240 &:hover {
241 opacity: .8;
242 }
243 &:focus {
244 box-shadow: none;
245 outline: none;
246 }
247 }
248
249 @media(max-width: 1000px) {
250 top:15px;
251 right: 15px;
252
253 svg,a {
254 display: none;
255 }
256 }
257 }
258
259 }
260
261 @media(max-width: 767px) {
262 .hsr-wrapper__list {
263 justify-content: space-between;
264
265 .hsr-list__item {
266 font-size: 13px;
267 padding: 16px 10px;
268 }
269 }
270 .hsr-onboarding {
271 padding: 0 15px;
272 box-sizing: border-box;
273 }
274 }
275
276 @media(max-width: 600px) {
277 .hsr-onboarding-navbar__wrapper {
278
279 .hsr-wrapper__list {
280 flex-direction: column;
281
282 .hsr-list__item {
283 padding: 10px;
284 }
285 }
286 }
287 }
288
289 .toplevel_page_hostinger {
290 #footer-left {
291 display: none;
292 }
293
294 #wpcontent {
295 padding-left: 0;
296 }
297 }
298
299 .hsr-ai-assistant-tab,#affiliate-plugin-app {
300 padding: 0 15px;
301 }
302