PluginProbe ʕ •ᴥ•ʔ
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode / 4.5.0
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode v4.5.0
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 2 years ago consent_mapping_table.css 1 year ago cookiebot_admin_main.css 1 year ago dashboard-old.css 1 year ago dashboard.css 1 year ago debug_info.css 3 years ago gtm_page.css 4 years ago multiple_page.css 3 years ago settings-page.css 1 year ago support_page.css 3 years ago
dashboard-old.css
317 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 {
29 width: 100%;
30 display: grid;
31 }
32
33 .cb-main__card__inner {
34 display: grid;
35 align-self: stretch;
36 position: relative;
37 padding: 25px;
38 border-radius: 25px;
39 overflow: hidden;
40 }
41
42 .cb-main__card__inner.legislations_card {
43 border-radius: initial;
44 grid-row-gap: 7px;
45 align-self: start;
46 padding: 0;
47 }
48
49 .cb-main__card__inner.account_card {
50 position: relative;
51 background-image: url(../../img/existing-account.png);
52 background-size: cover;
53 background-position: center center;
54 }
55
56 .cb-main__card__inner.account_card:before {
57 content: '';
58 position: absolute;
59 width: 100%;
60 height: 100%;
61 background: rgb(0,205,172);
62 background: -moz-linear-gradient(58deg, rgba(0,205,172,1) 0%, rgba(16,50,207,1) 100%);
63 background: -webkit-linear-gradient(58deg, rgba(0,205,172,1) 0%, rgba(16,50,207,1) 100%);
64 background: linear-gradient(58deg, rgba(0,205,172,1) 0%, rgba(16,50,207,1) 100%);
65 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#00cdac",endColorstr="#1032cf",GradientType=1);
66 z-index: 0;
67 opacity: .7;
68 }
69
70 .cb-main__card__inner.new_card {
71 position: relative;
72 background-image: url(../../img/new-account.png);
73 background-size: cover;
74 background-position: center center;
75 }
76
77 .cb-main__card__inner.new_card:before {
78 content: '';
79 position: absolute;
80 width: 100%;
81 height: 100%;
82 background: rgb(16,50,207);
83 background: -moz-linear-gradient(0deg, rgba(16,50,207,1) 20%, rgba(16,50,207,0) 100%);
84 background: -webkit-linear-gradient(0deg, rgba(16,50,207,1) 20%, rgba(16,50,207,0) 100%);
85 background: linear-gradient(0deg, rgba(16,50,207,1) 20%, rgba(16,50,207,0) 100%);
86 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#1032cf",endColorstr="#1032cf",GradientType=1);
87 z-index: 0;
88 opacity: .7;
89 }
90
91 .cb-main__card__inner.start_card {
92 background-color: #efefef;
93 }
94
95 .cb-main__card__content {
96 align-self: end;
97 z-index: 1;
98 }
99
100 .cb-main__card__title {
101 color: #ffffff;
102 font-size: 30px;
103 line-height: 32px;
104 margin: 0;
105 width: 100%;
106 max-width: 370px;
107 }
108
109 .start_card .cb-main__card__title {
110 color: #141414;
111 }
112
113 .cb-main__content.sync-account .cb-main__card__title {
114 max-width: 530px;
115 }
116
117 .cb-main__card__subtitle {
118 margin: 0;
119 }
120
121 .cb-main__success__text {
122 width: 100%;
123 font-size: 16px;
124 line-height: 24px;
125 }
126
127 .cb-main__review__text {
128 font-size: 16px;
129 line-height: 24px;
130 margin-bottom: 0;
131 }
132
133 .cb-wp {
134 z-index: 1;
135 align-self: end;
136 justify-self: center;
137 }
138
139 .cb-main__card__label {
140 display: inline-block;
141 padding: 4px 7px;
142 margin: 0 0 10px;
143 border-radius: 5px;
144 font-size: 12px;
145 font-weight: 700;
146 }
147
148 .new_card .cb-main__card__label {
149 background-color: #00008d;
150 color: #ffffff;
151 }
152
153 .start_card .cb-main__card__label {
154 background-color: #00C6FB;
155 color: #141414;
156 }
157
158 .cb-main__card__success {
159 display: grid;
160 grid-template-columns: auto 1fr;
161 grid-column-gap: 15px;
162 align-items: center;
163 margin-top: 15px;
164 }
165
166 .cb-main__card__success .cb-btn.cb-success-btn {
167 display: flex;
168 border-radius: 8px;
169 margin-top: 0;
170 align-items: center;
171 justify-content: center;
172 column-gap: 4px;
173 }
174
175 .cb-main__card__success .cb-btn.cb-success-btn img {
176 width: 17px;
177 }
178
179 .cb-main__card__success .cb-main__success__text span{
180 display: block;
181 font-size: 18px;
182 font-weight: 700;
183 }
184
185 .cb-main__video {
186 margin-bottom: 25px;
187 }
188
189 .cb-main__legislation__item {
190 display: grid;
191 grid-template-columns: auto auto 2fr 3fr;
192 grid-column-gap: 10px;
193 background-color: #efefef;
194 border-radius: 6px;
195 padding: 20px;
196 align-items: center;
197 }
198
199 .cb-main__legislation__name {
200 font-size: 16px;
201 font-weight: 700;
202 }
203
204 .cb-main__legislation__region {
205 font-weight: 600;
206 color: #666666;
207 }
208
209 .cb-link-btn.legislation-link {
210 margin: 0;
211 justify-self: right;
212 }
213
214 .cb-link-btn.external-icon {
215 display: grid;
216 grid-template-columns: 1fr auto;
217 grid-column-gap: 10px;
218 align-items: center;
219 }
220
221 .cb-link-btn.external-icon span{
222 text-align: right;
223 }
224
225 .legislations_card .cb-btn.cb-right-btn {
226 justify-self: end;
227 }
228
229 .cb-main__dashboard__promo {
230 position: relative;
231 border-radius: 25px;
232 overflow: hidden;
233 }
234
235 .cb-main__dashboard__promo--inner {
236 position: relative;
237 padding: 50px 65px 20px;
238 background: rgb(10,20,62);
239 background: -moz-linear-gradient(90deg, rgba(10,20,62,1) 50%, rgba(10,20,62,0.5046393557422969) 100%);
240 background: -webkit-linear-gradient(90deg, rgba(10,20,62,1) 50%, rgba(10,20,62,0.5046393557422969) 100%);
241 background: linear-gradient(90deg, rgba(10,20,62,1) 50%, rgba(10,20,62,0.5046393557422969) 100%);
242 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0a143e",endColorstr="#0a143e",GradientType=1);
243 z-index: 1;
244 height: 100%;
245 }
246
247 .cb-main__dashboard__promo:before {
248 content: '';
249 position: absolute;
250 width: 50%;
251 height: 100%;
252 background-position: -40px center;
253 background-size: auto 100%;
254 top: 0;
255 right: 0;
256 z-index: 0;
257 }
258
259 .cb-dashboard__promo--label {
260 color: #F4C20E;
261 font-size: 15px;
262 line-height: 24px;
263 font-weight: 700;
264 display: grid;
265 grid-template-columns: 0fr 1fr;
266 }
267
268 .time-icon {
269 margin-right: 8px;
270 width: 25px;
271 height: 25px;
272 transition: background-color .25s ease;
273 -webkit-mask-size: contain;
274 mask-size: contain;
275 -webkit-mask-repeat: no-repeat;
276 mask-repeat: no-repeat;
277 -webkit-mask-position: center;
278 mask-position: center;
279 -webkit-mask-image: url(../../img/icons/clock.svg);
280 mask-image: url(../../img/icons/clock.svg);
281 background-color: #F4C20E;
282 }
283
284 .cb-dashboard__promo--title {
285 color: #FFFFFF;
286 font-size: 58px;
287 line-height: 60px;
288 text-transform: uppercase;
289 margin: 10px 0;
290 width: 100%;
291 max-width: 790px;
292 }
293
294 .cb-dashboard__promo--title .highlight {
295 color: #17EFA6;
296 background: none;
297 }
298
299 .cb-btn.cb-promo-btn {
300 background-color: #17EFA6;
301 color: #141414;
302 width: 100%;
303 max-width: 298px;
304 box-shadow: 0px 4px 52px rgb(23 239 166 / 40%);
305 border-radius: 4px;
306 text-align: center;
307 padding: 20px;
308 }
309
310 .promo-condition {
311 font-size: 13px;
312 line-height: 18px;
313 font-weight: 500;
314 color: #ffffff;
315 width: 100%;
316 max-width: 550px;
317 }