PluginProbe ʕ •ᴥ•ʔ
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode / 4.6.4
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode v4.6.4
4.7.2 4.7.1 trunk 2.3.0 2.4.0 2.4.1 2.4.2 2.5.0 3.0.0 3.0.1 3.1.0 3.10.0 3.10.1 3.11.1 3.11.2 3.11.3 3.2.0 3.3.0 3.3.1 3.4.0 3.4.1 3.4.2 3.5.0 3.6.0 3.6.1 3.6.2 3.6.5 3.6.6 3.7.0 3.7.1 3.8.0 3.9.0 4.0.0 4.0.1 4.0.2 4.0.3 4.1.0 4.1.1 4.2.0 4.2.1 4.2.10 4.2.11 4.2.12 4.2.13 4.2.14 4.2.2 4.2.3 4.2.4 4.2.5 4.2.6 4.2.7 4.2.8 4.2.9 4.3.0 4.3.1 4.3.10 4.3.11 4.3.12 4.3.2 4.3.3 4.3.4 4.3.5 4.3.6 4.3.7 4.3.7.1 4.3.8 4.3.9 4.3.9.1 4.4.0 4.4.1 4.4.2 4.5.0 4.5.1 4.5.10 4.5.11 4.5.2 4.5.3 4.5.4 4.5.5 4.5.6 4.5.7 4.5.8 4.5.9 4.6.0 4.6.1 4.6.2 4.6.3 4.6.4 4.6.5 4.6.6 4.6.7 4.7.0
cookiebot / assets / css / backend / dashboard-old.css
cookiebot / assets / css / backend Last commit date
global 1 year ago addons_page.css 7 months ago consent_mapping_table.css 1 year ago cookiebot_admin_main.css 1 year ago dashboard-old.css 7 months ago dashboard.css 1 year ago gtm_page.css 4 years ago multiple_page.css 3 years ago settings-page.css 7 months ago support_page.css 1 year ago
dashboard-old.css
399 lines
1 .cb-main__content {
2 display: grid;
3 grid-template-columns: repeat(1, minmax(100px, 1fr));
4 grid-template-rows: repeat(3, minmax(100px, 1fr));
5 grid-column-gap: 30px;
6 grid-row-gap: 30px;
7 }
8
9 .cb-main__content.no-account {
10 grid-template-rows: minmax(100px, 1fr) auto minmax(100px, 1fr);
11 }
12
13 .cb-main__content.sync-account {
14 grid-template-rows: initial;
15 }
16
17 .cb-main__dashboard__card--container {
18 display: grid;
19 grid-template-columns: 1fr 1fr;
20 grid-column-gap: 30px;
21 }
22
23 .cb-main__content.sync-account .cb-main__dashboard__card--container:first-of-type {
24 grid-template-columns: 1fr;
25 grid-row-gap: 30px;
26 }
27
28 .cb-main__dashboard__card:not(:last-child) {
29 width: 100%;
30 margin-bottom: 30px;
31 }
32
33 .cb-main__dashboard__card__cookiebot {
34 width: 100%;
35 }
36 .cb-main__dashboard__card__cookiebot--flex {
37 display: flex;
38 flex-direction: column;
39 height: 100%;
40 width: 100%;
41 }
42
43 .cb-main__dashboard__card__cookiebot--flex .cb-main__card__inner {
44 flex: 1;
45 }
46 .cb-main__dashboard__card__cookiebot--flex .cb-main__card__subtitle {
47 margin-top: 16px;
48 font-size: 18px;
49 }
50 .cb-main__dashboard__card__cookiebot--flex .cb-main__card__subtitle a{
51 font-weight: 700;
52 font-size: 18px;
53 margin-top: 0;
54 }
55 .cb-main__dashboard__card__cookiebot--flex .cb-main__card__subtitle a:hover{
56 text-decoration: underline;
57 }
58
59 .cb-main__card__inner {
60 display: grid;
61 align-self: stretch;
62 position: relative;
63 padding: 25px;
64 border-radius: 25px;
65 overflow: hidden;
66 }
67
68 .cb-main__card__inner.legislations_card {
69 border-radius: initial;
70 grid-row-gap: 7px;
71 align-self: start;
72 padding: 0;
73 }
74
75 .cb-main__card__inner.setup-steps {
76 background-color: #efefef;
77 padding: 30px;
78 }
79
80 .setup-steps-title {
81 color: #141414 !important;
82 font-size: 24px !important;
83 line-height: 1.3;
84 margin-bottom: 20px !important;
85 max-width: 100% !important;
86 }
87
88 .cb-setup-steps-list {
89 margin: 0;
90 padding-left: 0;
91 list-style: none;
92 counter-reset: step-counter;
93 }
94
95 .cb-setup-steps-list li {
96 font-size: 16px;
97 line-height: 1.6;
98 color: #141414;
99 margin-bottom: 16px;
100 padding-left: 45px;
101 position: relative;
102 counter-increment: step-counter;
103 }
104
105 .cb-setup-steps-list li:last-child {
106 margin-bottom: 0;
107 }
108
109 .cb-setup-steps-list li::before {
110 content: counter(step-counter);
111 position: absolute;
112 left: 0;
113 top: -0.2em;
114 width: 30px;
115 height: 30px;
116 background-color: #1032cf;
117 color: #ffffff;
118 border-radius: 50%;
119 display: flex;
120 align-items: center;
121 justify-content: center;
122 font-weight: 700;
123 font-size: 14px;
124 }
125
126 .cb-main__card__inner.account_card {
127 position: relative;
128 background-image: url(../../img/existing-account.png);
129 background-size: cover;
130 background-position: center center;
131 }
132
133 .cb-main__card__inner.account_card:before {
134 content: '';
135 position: absolute;
136 width: 100%;
137 height: 100%;
138 background: rgb(0,205,172);
139 background: -moz-linear-gradient(58deg, rgba(0,205,172,1) 0%, rgba(16,50,207,1) 100%);
140 background: -webkit-linear-gradient(58deg, rgba(0,205,172,1) 0%, rgba(16,50,207,1) 100%);
141 background: linear-gradient(58deg, rgba(0,205,172,1) 0%, rgba(16,50,207,1) 100%);
142 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00cdac",endColorstr="#1032cf",GradientType=1);
143 z-index: 0;
144 opacity: .7;
145 }
146
147 .cb-main__card__inner.new_card {
148 position: relative;
149 background-image: url(../../img/new-account.png);
150 background-size: cover;
151 background-position: center center;
152 }
153
154 .cb-main__card__inner.new_card:before {
155 content: '';
156 position: absolute;
157 width: 100%;
158 height: 100%;
159 background: rgb(16,50,207);
160 background: -moz-linear-gradient(0deg, rgba(16,50,207,1) 20%, rgba(16,50,207,0) 100%);
161 background: -webkit-linear-gradient(0deg, rgba(16,50,207,1) 20%, rgba(16,50,207,0) 100%);
162 background: linear-gradient(0deg, rgba(16,50,207,1) 20%, rgba(16,50,207,0) 100%);
163 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1032cf",endColorstr="#1032cf",GradientType=1);
164 z-index: 0;
165 opacity: .7;
166 }
167
168 .cb-main__card__inner.start_card {
169 background-color: #efefef;
170 }
171
172 .cb-main__card__content {
173 align-self: end;
174 z-index: 1;
175 }
176
177 .cb-main__card__title {
178 color: #ffffff;
179 font-size: 30px;
180 line-height: 32px;
181 margin: 0;
182 width: 100%;
183 max-width: 370px;
184 }
185
186 .start_card .cb-main__card__title {
187 color: #141414;
188 }
189
190 .cb-main__content.sync-account .cb-main__card__title {
191 max-width: 530px;
192 }
193
194 .cb-main__card__subtitle {
195 margin: 0;
196 }
197
198 .cb-main__success__text {
199 width: 100%;
200 font-size: 16px;
201 line-height: 24px;
202 }
203
204 .cb-main__review__text {
205 font-size: 16px;
206 line-height: 24px;
207 margin-bottom: 0;
208 }
209
210 .cb-wp {
211 z-index: 1;
212 align-self: end;
213 justify-self: center;
214 }
215
216 .cb-main__card__label {
217 display: inline-block;
218 padding: 4px 7px;
219 margin: 0 0 10px;
220 border-radius: 5px;
221 font-size: 12px;
222 font-weight: 700;
223 }
224
225 .new_card .cb-main__card__label {
226 background-color: #00008d;
227 color: #ffffff;
228 }
229
230 .account_card .cb-main__card__label {
231 background-color: #1032cf;
232 color: #ffffff;
233 }
234
235 .start_card .cb-main__card__label {
236 background-color: #00C6FB;
237 color: #141414;
238 }
239
240 .cb-main__card__success {
241 display: grid;
242 grid-template-columns: auto 1fr;
243 grid-column-gap: 15px;
244 align-items: center;
245 margin-top: 15px;
246 }
247
248 .cb-main__card__success .cb-btn.cb-success-btn {
249 display: flex;
250 border-radius: 8px;
251 margin-top: 0;
252 align-items: center;
253 justify-content: center;
254 column-gap: 4px;
255 }
256
257 .cb-main__card__success .cb-btn.cb-success-btn img {
258 width: 17px;
259 }
260
261 .cb-main__card__success .cb-main__success__text span{
262 display: block;
263 font-size: 18px;
264 font-weight: 700;
265 }
266
267 .cb-main__video {
268 margin-bottom: 25px;
269 }
270
271 .cb-main__legislation__item {
272 display: grid;
273 grid-template-columns: auto auto 2fr 3fr;
274 grid-column-gap: 10px;
275 background-color: #efefef;
276 border-radius: 6px;
277 padding: 20px;
278 align-items: center;
279 }
280
281 .cb-main__legislation__name {
282 font-size: 16px;
283 font-weight: 700;
284 }
285
286 .cb-main__legislation__region {
287 font-weight: 600;
288 color: #666666;
289 }
290
291 .cb-link-btn.legislation-link {
292 margin: 0;
293 justify-self: right;
294 }
295
296 .cb-link-btn.external-icon {
297 display: grid;
298 grid-template-columns: 1fr auto;
299 grid-column-gap: 10px;
300 align-items: center;
301 }
302
303 .cb-link-btn.external-icon span{
304 text-align: right;
305 }
306
307 .legislations_card .cb-btn.cb-right-btn {
308 justify-self: end;
309 }
310
311 .cb-main__dashboard__promo {
312 position: relative;
313 border-radius: 25px;
314 overflow: hidden;
315 }
316
317 .cb-main__dashboard__promo--inner {
318 position: relative;
319 padding: 50px 65px 20px;
320 background: rgb(10,20,62);
321 background: -moz-linear-gradient(90deg, rgba(10,20,62,1) 50%, rgba(10,20,62,0.5046393557422969) 100%);
322 background: -webkit-linear-gradient(90deg, rgba(10,20,62,1) 50%, rgba(10,20,62,0.5046393557422969) 100%);
323 background: linear-gradient(90deg, rgba(10,20,62,1) 50%, rgba(10,20,62,0.5046393557422969) 100%);
324 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0a143e",endColorstr="#0a143e",GradientType=1);
325 z-index: 1;
326 height: 100%;
327 }
328
329 .cb-main__dashboard__promo:before {
330 content: '';
331 position: absolute;
332 width: 50%;
333 height: 100%;
334 background-position: -40px center;
335 background-size: auto 100%;
336 top: 0;
337 right: 0;
338 z-index: 0;
339 }
340
341 .cb-dashboard__promo--label {
342 color: #F4C20E;
343 font-size: 15px;
344 line-height: 24px;
345 font-weight: 700;
346 display: grid;
347 grid-template-columns: 0fr 1fr;
348 }
349
350 .time-icon {
351 margin-right: 8px;
352 width: 25px;
353 height: 25px;
354 transition: background-color .25s ease;
355 -webkit-mask-size: contain;
356 mask-size: contain;
357 -webkit-mask-repeat: no-repeat;
358 mask-repeat: no-repeat;
359 -webkit-mask-position: center;
360 mask-position: center;
361 -webkit-mask-image: url(../../img/icons/clock.svg);
362 mask-image: url(../../img/icons/clock.svg);
363 background-color: #F4C20E;
364 }
365
366 .cb-dashboard__promo--title {
367 color: #FFFFFF;
368 font-size: 58px;
369 line-height: 60px;
370 text-transform: uppercase;
371 margin: 10px 0;
372 width: 100%;
373 max-width: 790px;
374 }
375
376 .cb-dashboard__promo--title .highlight {
377 color: #17EFA6;
378 background: none;
379 }
380
381 .cb-btn.cb-promo-btn {
382 background-color: #17EFA6;
383 color: #141414;
384 width: 100%;
385 max-width: 298px;
386 box-shadow: 0px 4px 52px rgb(23 239 166 / 40%);
387 border-radius: 4px;
388 text-align: center;
389 padding: 20px;
390 }
391
392 .promo-condition {
393 font-size: 13px;
394 line-height: 18px;
395 font-weight: 500;
396 color: #ffffff;
397 width: 100%;
398 max-width: 550px;
399 }