global
3 years ago
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
312 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 | 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 | } |
| 228 | |
| 229 | .cb-main__dashboard__promo--inner { |
| 230 | position: relative; |
| 231 | padding: 50px 65px 20px; |
| 232 | background: rgb(10,20,62); |
| 233 | background: -moz-linear-gradient(90deg, rgba(10,20,62,1) 50%, rgba(10,20,62,0.5046393557422969) 100%); |
| 234 | background: -webkit-linear-gradient(90deg, rgba(10,20,62,1) 50%, rgba(10,20,62,0.5046393557422969) 100%); |
| 235 | background: linear-gradient(90deg, rgba(10,20,62,1) 50%, rgba(10,20,62,0.5046393557422969) 100%); |
| 236 | filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#0a143e",endColorstr="#0a143e",GradientType=1); |
| 237 | z-index: 1; |
| 238 | height: 100%; |
| 239 | } |
| 240 | |
| 241 | .cb-main__dashboard__promo:before { |
| 242 | content: ''; |
| 243 | position: absolute; |
| 244 | width: 50%; |
| 245 | height: 100%; |
| 246 | background-image: url(../../img/extra/sale-black.jpg); |
| 247 | background-position: -40px center; |
| 248 | background-size: auto 100%; |
| 249 | top: 0; |
| 250 | right: 0; |
| 251 | z-index: 0; |
| 252 | } |
| 253 | |
| 254 | .cb-dashboard__promo--label { |
| 255 | color: #F4C20E; |
| 256 | font-size: 15px; |
| 257 | line-height: 24px; |
| 258 | font-weight: 700; |
| 259 | display: grid; |
| 260 | grid-template-columns: 0fr 1fr; |
| 261 | } |
| 262 | |
| 263 | .time-icon { |
| 264 | margin-right: 8px; |
| 265 | width: 25px; |
| 266 | height: 25px; |
| 267 | transition: background-color .25s ease; |
| 268 | -webkit-mask-size: contain; |
| 269 | mask-size: contain; |
| 270 | -webkit-mask-repeat: no-repeat; |
| 271 | mask-repeat: no-repeat; |
| 272 | -webkit-mask-position: center; |
| 273 | mask-position: center; |
| 274 | -webkit-mask-image: url(../../img/icons/clock.svg); |
| 275 | mask-image: url(../../img/icons/clock.svg); |
| 276 | background-color: #F4C20E; |
| 277 | } |
| 278 | |
| 279 | .cb-dashboard__promo--title { |
| 280 | color: #FFFFFF; |
| 281 | font-size: 58px; |
| 282 | line-height: 60px; |
| 283 | text-transform: uppercase; |
| 284 | margin: 10px 0; |
| 285 | width: 100%; |
| 286 | max-width: 790px; |
| 287 | } |
| 288 | |
| 289 | .cb-dashboard__promo--title .highlight { |
| 290 | color: #17EFA6; |
| 291 | background: none; |
| 292 | } |
| 293 | |
| 294 | .cb-btn.cb-promo-btn { |
| 295 | background-color: #17EFA6; |
| 296 | color: #141414; |
| 297 | width: 100%; |
| 298 | max-width: 298px; |
| 299 | box-shadow: 0px 4px 52px rgb(23 239 166 / 40%); |
| 300 | border-radius: 4px; |
| 301 | text-align: center; |
| 302 | padding: 20px; |
| 303 | } |
| 304 | |
| 305 | .promo-condition { |
| 306 | font-size: 13px; |
| 307 | line-height: 18px; |
| 308 | font-weight: 500; |
| 309 | color: #ffffff; |
| 310 | width: 100%; |
| 311 | max-width: 550px; |
| 312 | } |