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