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