PluginProbe ʕ •ᴥ•ʔ
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode / trunk
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode vtrunk
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 4 months ago dashboard-old.css 4 months ago dashboard.css 1 year ago gtm_page.css 4 years ago multiple_page.css 3 years ago ppg_page.css 4 months ago settings-page.css 7 months ago support_page.css 1 year ago
dashboard-old.css
523 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 /* Side-by-side card row (e.g. "Your opinion matters" + "Learn more") */
173 .cb-main__dashboard__card--row {
174 display: flex;
175 gap: 24px;
176 align-items: stretch;
177 width: 100%;
178 }
179
180 .cb-main__dashboard__card--row .cb-main__dashboard__card {
181 flex: 1 0 0;
182 margin-bottom: 0;
183 }
184
185 .cb-main__card__inner.bordered_card {
186 background-color: #ffffff;
187 border: 1px solid #d6d6d6;
188 border-radius: 16px;
189 padding: 32px;
190 display: flex;
191 flex-direction: column;
192 gap: 16px;
193 height: 100%;
194 box-sizing: border-box;
195 }
196
197 .cb-main__card__inner.bordered_card .cb-main__card__subtitle {
198 font-size: 21px;
199 font-weight: 600;
200 color: #141414;
201 line-height: 1.4;
202 margin: 0;
203 }
204
205 .cb-main__card__inner.bordered_card .cb-main__review__text {
206 font-size: 15px;
207 font-weight: 400;
208 color: #141414;
209 line-height: 1.6;
210 letter-spacing: 0.3px;
211 margin: 0;
212 }
213
214 .cb-main__card__inner.bordered_card .cb-btn.cb-link-btn {
215 margin: auto 0 0 0;
216 font-size: 15px;
217 font-weight: 600;
218 text-decoration: underline;
219 letter-spacing: 0.1px;
220 }
221
222 .cb-main__card__content {
223 align-self: end;
224 z-index: 1;
225 }
226
227 .cb-main__card__title {
228 color: #ffffff;
229 font-size: 30px;
230 line-height: 32px;
231 margin: 0;
232 width: 100%;
233 max-width: 370px;
234 }
235
236 .start_card .cb-main__card__title {
237 color: #141414;
238 }
239
240 .cb-main__content.sync-account .cb-main__card__title {
241 max-width: 530px;
242 }
243
244 .cb-main__card__subtitle {
245 margin: 0;
246 }
247
248 .cb-main__success__text {
249 width: 100%;
250 font-size: 16px;
251 line-height: 24px;
252 }
253
254 .cb-main__review__text {
255 font-size: 16px;
256 line-height: 24px;
257 margin-bottom: 0;
258 }
259
260 .cb-wp {
261 z-index: 1;
262 align-self: end;
263 justify-self: center;
264 }
265
266 .cb-main__card__label {
267 display: inline-block;
268 padding: 4px 7px;
269 margin: 0 0 10px;
270 border-radius: 5px;
271 font-size: 12px;
272 font-weight: 700;
273 }
274
275 .new_card .cb-main__card__label {
276 background-color: #00008d;
277 color: #ffffff;
278 }
279
280 .account_card .cb-main__card__label {
281 background-color: #1032cf;
282 color: #ffffff;
283 }
284
285 .start_card .cb-main__card__label {
286 background-color: #00C6FB;
287 color: #141414;
288 }
289
290 .cb-main__card__success {
291 display: grid;
292 grid-template-columns: auto 1fr;
293 grid-column-gap: 15px;
294 align-items: center;
295 margin-top: 15px;
296 }
297
298 .cb-main__card__success .cb-btn.cb-success-btn {
299 display: flex;
300 border-radius: 8px;
301 margin-top: 0;
302 align-items: center;
303 justify-content: center;
304 column-gap: 4px;
305 }
306
307 .cb-main__card__success .cb-btn.cb-success-btn img {
308 width: 17px;
309 }
310
311 .cb-main__card__success .cb-main__success__text span{
312 display: block;
313 font-size: 18px;
314 font-weight: 700;
315 }
316
317 .cb-main__video {
318 margin-bottom: 25px;
319 }
320
321 .cb-main__legislation__item {
322 display: grid;
323 grid-template-columns: auto auto 2fr 3fr;
324 grid-column-gap: 10px;
325 background-color: #efefef;
326 border-radius: 6px;
327 padding: 20px;
328 align-items: center;
329 }
330
331 .cb-main__legislation__name {
332 font-size: 16px;
333 font-weight: 700;
334 }
335
336 .cb-main__legislation__region {
337 font-weight: 600;
338 color: #666666;
339 }
340
341 .cb-link-btn.legislation-link {
342 margin: 0;
343 justify-self: right;
344 }
345
346 .cb-link-btn.external-icon {
347 display: grid;
348 grid-template-columns: 1fr auto;
349 grid-column-gap: 10px;
350 align-items: center;
351 }
352
353 .cb-link-btn.external-icon span{
354 text-align: right;
355 }
356
357 .legislations_card .cb-btn.cb-right-btn {
358 justify-self: end;
359 }
360
361 /* PPG Banner Section */
362 .cb-ppg-section {
363 padding:40px 0;
364 margin: 10px 0;
365 border-top: 1px solid #D6D6D6;
366 border-bottom: 1px solid #D6D6D6;
367 }
368
369 .cb-ppg-section__title {
370 font-size: 21px;
371 font-weight: 700;
372 color: #141414;
373 line-height: 1.4;
374 margin: 0 0 16px;
375 }
376
377 .cb-ppg-banner {
378 display: flex;
379 align-items: center;
380 gap: 32px;
381 padding: 32px 40px;
382 border-radius: 16px;
383 background:
384 radial-gradient(ellipse at 95% 105%, rgba(0, 125, 212, 0.48) 0%, rgba(128, 190, 234, 0.24) 30%, rgba(255, 255, 255, 0) 60%),
385 radial-gradient(ellipse at -10% -5%, rgba(0, 125, 212, 0.64) 0%, rgba(128, 190, 234, 0.32) 30%, rgba(255, 255, 255, 0) 60%),
386 #eff2f5;
387 overflow: hidden;
388 flex-wrap: wrap;
389 }
390
391 .cb-ppg-banner__icon {
392 width: 80px;
393 height: 80px;
394 flex-shrink: 0;
395 }
396
397 .cb-ppg-banner__icon img {
398 width: 100%;
399 height: 100%;
400 object-fit: cover;
401 border-radius: 12px;
402 }
403
404 .cb-ppg-banner__content {
405 flex: 1;
406 min-width: 200px;
407 }
408
409 .cb-ppg-banner__headline {
410 font-size: 21px;
411 font-weight: 600;
412 color: #141414;
413 line-height: 1.4;
414 margin: 0 0 4px;
415 }
416
417 .cb-ppg-banner__description {
418 font-size: 15px;
419 font-weight: 400;
420 color: #595959;
421 line-height: 1.6;
422 letter-spacing: 0.3px;
423 margin: 0;
424 }
425
426 .cb-ppg-banner__cta {
427 flex-shrink: 0;
428 }
429
430 .cb-btn.cb-ppg-btn {
431 min-width: 132px;
432 text-align: center;
433 }
434
435 .cb-main__dashboard__promo {
436 position: relative;
437 border-radius: 25px;
438 overflow: hidden;
439 }
440
441 .cb-main__dashboard__promo--inner {
442 position: relative;
443 padding: 50px 65px 20px;
444 background: rgb(10,20,62);
445 background: -moz-linear-gradient(90deg, rgba(10,20,62,1) 50%, rgba(10,20,62,0.5046393557422969) 100%);
446 background: -webkit-linear-gradient(90deg, rgba(10,20,62,1) 50%, rgba(10,20,62,0.5046393557422969) 100%);
447 background: linear-gradient(90deg, rgba(10,20,62,1) 50%, rgba(10,20,62,0.5046393557422969) 100%);
448 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0a143e",endColorstr="#0a143e",GradientType=1);
449 z-index: 1;
450 height: 100%;
451 }
452
453 .cb-main__dashboard__promo:before {
454 content: '';
455 position: absolute;
456 width: 50%;
457 height: 100%;
458 background-position: -40px center;
459 background-size: auto 100%;
460 top: 0;
461 right: 0;
462 z-index: 0;
463 }
464
465 .cb-dashboard__promo--label {
466 color: #F4C20E;
467 font-size: 15px;
468 line-height: 24px;
469 font-weight: 700;
470 display: grid;
471 grid-template-columns: 0fr 1fr;
472 }
473
474 .time-icon {
475 margin-right: 8px;
476 width: 25px;
477 height: 25px;
478 transition: background-color .25s ease;
479 -webkit-mask-size: contain;
480 mask-size: contain;
481 -webkit-mask-repeat: no-repeat;
482 mask-repeat: no-repeat;
483 -webkit-mask-position: center;
484 mask-position: center;
485 -webkit-mask-image: url(../../img/icons/clock.svg);
486 mask-image: url(../../img/icons/clock.svg);
487 background-color: #F4C20E;
488 }
489
490 .cb-dashboard__promo--title {
491 color: #FFFFFF;
492 font-size: 58px;
493 line-height: 60px;
494 text-transform: uppercase;
495 margin: 10px 0;
496 width: 100%;
497 max-width: 790px;
498 }
499
500 .cb-dashboard__promo--title .highlight {
501 color: #17EFA6;
502 background: none;
503 }
504
505 .cb-btn.cb-promo-btn {
506 background-color: #17EFA6;
507 color: #141414;
508 width: 100%;
509 max-width: 298px;
510 box-shadow: 0px 4px 52px rgb(23 239 166 / 40%);
511 border-radius: 4px;
512 text-align: center;
513 padding: 20px;
514 }
515
516 .promo-condition {
517 font-size: 13px;
518 line-height: 18px;
519 font-weight: 500;
520 color: #ffffff;
521 width: 100%;
522 max-width: 550px;
523 }