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