PluginProbe ʕ •ᴥ•ʔ
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode / 4.2.9
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode v4.2.9
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
addons_page.css 3 years ago consent_mapping_table.css 4 years ago cookiebot_admin_main.css 3 years ago dashboard_page.css 3 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
285 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.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 max-width: 420px;
120 font-size: 16px;
121 line-height: 24px;
122 }
123
124 .cb-main__review__text {
125 font-size: 16px;
126 line-height: 24px;
127 margin-bottom: 0;
128 }
129
130 .cb-wp {
131 z-index: 1;
132 align-self: end;
133 justify-self: center;
134 }
135
136 .cb-main__card__label {
137 display: inline-block;
138 padding: 4px 7px;
139 margin: 0 0 10px;
140 border-radius: 5px;
141 font-size: 12px;
142 font-weight: 700;
143 }
144
145 .new_card .cb-main__card__label {
146 background-color: #00008d;
147 color: #ffffff;
148 }
149
150 .start_card .cb-main__card__label {
151 background-color: #00C6FB;
152 color: #141414;
153 }
154
155 .cb-main__card__success {
156 display: grid;
157 grid-template-columns: 1fr 3fr;
158 grid-column-gap: 15px;
159 align-items: center;
160 margin-top: 15px;
161 }
162
163 .cb-main__card__success .cb-btn.cb-success-btn {
164 margin-top: 0;
165 }
166
167 .cb-main__video {
168 margin-bottom: 25px;
169 }
170
171 .cb-main__legislation__item {
172 display: grid;
173 grid-template-columns: 1fr 0fr 3fr 2fr;
174 background-color: #efefef;
175 border-radius: 6px;
176 padding: 20px;
177 align-items: center;
178 }
179
180 .cb-main__legislation__name {
181 font-size: 16px;
182 font-weight: 700;
183 margin-right: 7px;
184 }
185
186 .cb-main__legislation__region {
187 font-weight: 600;
188 color: #666666;
189 }
190
191 .cb-link-btn.legislation-link {
192 margin: 0;
193 text-align: right;
194 }
195
196 .cb-main__dashboard__promo {
197 position: relative;
198 border-radius: 25px;
199 overflow: hidden;
200 }
201
202 .cb-main__dashboard__promo--inner {
203 position: relative;
204 padding: 50px 65px 20px;
205 background: rgb(10,20,62);
206 background: -moz-linear-gradient(90deg, rgba(10,20,62,1) 50%, rgba(10,20,62,0.5046393557422969) 100%);
207 background: -webkit-linear-gradient(90deg, rgba(10,20,62,1) 50%, rgba(10,20,62,0.5046393557422969) 100%);
208 background: linear-gradient(90deg, rgba(10,20,62,1) 50%, rgba(10,20,62,0.5046393557422969) 100%);
209 filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0a143e",endColorstr="#0a143e",GradientType=1);
210 z-index: 1;
211 height: 100%;
212 }
213
214 .cb-main__dashboard__promo:before {
215 content: '';
216 position: absolute;
217 width: 50%;
218 height: 100%;
219 background-image: url(../../img/extra/sale-black.jpg);
220 background-position: -40px center;
221 background-size: auto 100%;
222 top: 0;
223 right: 0;
224 z-index: 0;
225 }
226
227 .cb-dashboard__promo--label {
228 color: #F4C20E;
229 font-size: 15px;
230 line-height: 24px;
231 font-weight: 700;
232 display: grid;
233 grid-template-columns: 0fr 1fr;
234 }
235
236 .time-icon {
237 margin-right: 8px;
238 width: 25px;
239 height: 25px;
240 transition: background-color .25s ease;
241 -webkit-mask-size: contain;
242 mask-size: contain;
243 -webkit-mask-repeat: no-repeat;
244 mask-repeat: no-repeat;
245 -webkit-mask-position: center;
246 mask-position: center;
247 -webkit-mask-image: url(../../img/icons/clock.svg);
248 mask-image: url(../../img/icons/clock.svg);
249 background-color: #F4C20E;
250 }
251
252 .cb-dashboard__promo--title {
253 color: #FFFFFF;
254 font-size: 58px;
255 line-height: 60px;
256 text-transform: uppercase;
257 margin: 10px 0;
258 width: 100%;
259 max-width: 790px;
260 }
261
262 .cb-dashboard__promo--title .highlight {
263 color: #17EFA6;
264 background: none;
265 }
266
267 .cb-btn.cb-promo-btn {
268 background-color: #17EFA6;
269 color: #141414;
270 width: 100%;
271 max-width: 298px;
272 box-shadow: 0px 4px 52px rgb(23 239 166 / 40%);
273 border-radius: 4px;
274 text-align: center;
275 padding: 20px;
276 }
277
278 .promo-condition {
279 font-size: 13px;
280 line-height: 18px;
281 font-weight: 500;
282 color: #ffffff;
283 width: 100%;
284 max-width: 550px;
285 }