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