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
cookiebot_admin_main.css
335 lines
| 1 | @font-face { |
| 2 | font-family: 'Inter'; |
| 3 | src: url('../../fonts/Inter-VariableFont.woff2') format('woff2-variations'); |
| 4 | font-weight: 300 900; |
| 5 | font-stretch: 100%; |
| 6 | font-style: normal; |
| 7 | font-display: swap; |
| 8 | } |
| 9 | |
| 10 | #wpcontent { |
| 11 | padding-left: 0; |
| 12 | font-family: Inter,-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Oxygen-Sans,Ubuntu,Cantarell,"Helvetica Neue",sans-serif; |
| 13 | background-color: #ffffff; |
| 14 | } |
| 15 | |
| 16 | .cb-wrapper { |
| 17 | width: 100%; |
| 18 | max-width: 1366px; |
| 19 | margin: 0 auto; |
| 20 | } |
| 21 | |
| 22 | .cb-header { |
| 23 | padding: 20px 25px 15px; |
| 24 | border-bottom: 1px solid #d3d3d3; |
| 25 | } |
| 26 | |
| 27 | .cb-body { |
| 28 | padding: 50px 25px 0; |
| 29 | } |
| 30 | |
| 31 | .cb-body .cb-wrapper { |
| 32 | display: grid; |
| 33 | grid-template-columns: .9fr 3.1fr; |
| 34 | grid-column-gap: 30px; |
| 35 | align-items: start; |
| 36 | } |
| 37 | |
| 38 | .cb-main__tabs { |
| 39 | display: grid; |
| 40 | grid-row-gap: 10px; |
| 41 | } |
| 42 | |
| 43 | .cb-main__tabs_item { |
| 44 | border-radius: 7px; |
| 45 | } |
| 46 | |
| 47 | .cb-main__tabs_item.active-item, .cb-main__tabs_item:hover { |
| 48 | background-color: #ECEFFE; |
| 49 | } |
| 50 | |
| 51 | .cb-main__tabs_item a { |
| 52 | font-size: 15px; |
| 53 | color: #141414; |
| 54 | padding: 10px 15px; |
| 55 | text-decoration: none; |
| 56 | display: grid; |
| 57 | grid-template-columns: 1fr 8fr; |
| 58 | grid-column-gap: 5px; |
| 59 | align-items: center; |
| 60 | font-weight: 600; |
| 61 | } |
| 62 | |
| 63 | .cb-main__tabs_item:hover a, .cb-main__tabs_item.active-item a { |
| 64 | color: #1032cf; |
| 65 | } |
| 66 | |
| 67 | .cb-main__tabs__icon{ |
| 68 | margin-right: 8px; |
| 69 | display: block; |
| 70 | width: 28px; |
| 71 | height: 28px; |
| 72 | background-color: #141414; |
| 73 | transition: background-color .25s ease; |
| 74 | -webkit-mask-size: contain; |
| 75 | mask-size: contain; |
| 76 | -webkit-mask-repeat: no-repeat; |
| 77 | mask-repeat: no-repeat; |
| 78 | -webkit-mask-position: center; |
| 79 | mask-position: center; |
| 80 | } |
| 81 | |
| 82 | .cb-main__tabs_item:hover .cb-main__tabs__icon, .cb-main__tabs_item.active-item .cb-main__tabs__icon{ |
| 83 | background-color: #1032cf; |
| 84 | } |
| 85 | |
| 86 | .dashboard-icon { |
| 87 | -webkit-mask-image: url(../../img/icons/dashboard.svg); |
| 88 | mask-image: url(../../img/icons/dashboard.svg); |
| 89 | } |
| 90 | |
| 91 | .settings-icon { |
| 92 | -webkit-mask-image: url(../../img/icons/settings.svg); |
| 93 | mask-image: url(../../img/icons/settings.svg); |
| 94 | } |
| 95 | |
| 96 | .plugins-icon { |
| 97 | -webkit-mask-image: url(../../img/icons/plugins.svg); |
| 98 | mask-image: url(../../img/icons/plugins.svg); |
| 99 | } |
| 100 | |
| 101 | .support-icon { |
| 102 | -webkit-mask-image: url(../../img/icons/support.svg); |
| 103 | mask-image: url(../../img/icons/support.svg); |
| 104 | } |
| 105 | |
| 106 | .debug-icon { |
| 107 | -webkit-mask-image: url(../../img/icons/debug.svg); |
| 108 | mask-image: url(../../img/icons/debug.svg); |
| 109 | } |
| 110 | |
| 111 | .cb-main__page_title { |
| 112 | font-size: 55px; |
| 113 | line-height: 65px; |
| 114 | font-weight: 700; |
| 115 | margin: 0 0 30px; |
| 116 | } |
| 117 | |
| 118 | .cb-btn { |
| 119 | display: inline-block; |
| 120 | margin-top: 18px; |
| 121 | text-decoration: none; |
| 122 | padding: 15px; |
| 123 | font-size: 15px; |
| 124 | line-height: 20px; |
| 125 | font-weight: 500; |
| 126 | border-radius: 7px; |
| 127 | border: none; |
| 128 | cursor: pointer; |
| 129 | } |
| 130 | |
| 131 | .cb-btn { |
| 132 | box-shadow: unset; |
| 133 | outline: unset; |
| 134 | } |
| 135 | |
| 136 | .cb-btn.hidden { |
| 137 | display: none; |
| 138 | } |
| 139 | |
| 140 | .cb-main-btn, .cb-main-btn:focus { |
| 141 | background-color: #1032cf; |
| 142 | color: #ffffff; |
| 143 | } |
| 144 | |
| 145 | .cb-main-btn:hover { |
| 146 | background-color: #091b70; |
| 147 | color: #ffffff; |
| 148 | } |
| 149 | |
| 150 | .cb-white-btn, .cb-white-btn:focus { |
| 151 | background-color: #ffffff; |
| 152 | color: #141414; |
| 153 | } |
| 154 | |
| 155 | .cb-white-btn:hover { |
| 156 | color: #666666; |
| 157 | } |
| 158 | |
| 159 | .cb-link-btn, .cb-link-btn:focus { |
| 160 | background-color: transparent; |
| 161 | color: #1032cf; |
| 162 | padding: 0; |
| 163 | width: fit-content; |
| 164 | } |
| 165 | |
| 166 | .cb-link-btn:hover { |
| 167 | color: #091b70; |
| 168 | } |
| 169 | |
| 170 | .cb-right-btn { |
| 171 | text-align: right; |
| 172 | } |
| 173 | |
| 174 | .cb-success-btn, .cb-success-btn:focus { |
| 175 | background-color: #076646; |
| 176 | color: #ffffff; |
| 177 | text-align: center; |
| 178 | } |
| 179 | |
| 180 | .cb-main__video { |
| 181 | position: relative; |
| 182 | width: 100%; |
| 183 | height: 0; |
| 184 | padding-bottom: 53%; |
| 185 | } |
| 186 | |
| 187 | .cb-main__video iframe { |
| 188 | position: absolute; |
| 189 | width: 100%; |
| 190 | height: 100%; |
| 191 | } |
| 192 | |
| 193 | input[type="text"] { |
| 194 | width: 100%; |
| 195 | border: 2px solid #d3d3d3; |
| 196 | border-radius: 7px; |
| 197 | padding: 8px 15px; |
| 198 | } |
| 199 | |
| 200 | select#cookiebot-language { |
| 201 | width: 100%; |
| 202 | border: 2px solid #d3d3d3; |
| 203 | border-radius: 7px; |
| 204 | padding: 8px 15px; |
| 205 | max-width: initial; |
| 206 | } |
| 207 | |
| 208 | input[type="radio"] { |
| 209 | width: 22px; |
| 210 | height: 22px; |
| 211 | border: 2px solid #141414; |
| 212 | } |
| 213 | |
| 214 | input[type=radio]:checked::before { |
| 215 | width: 14px; |
| 216 | height: 14px; |
| 217 | margin: 2px; |
| 218 | background-color: #1032cf; |
| 219 | line-height: initial; |
| 220 | } |
| 221 | |
| 222 | input[type="checkbox"] { |
| 223 | width: 22px; |
| 224 | height: 22px; |
| 225 | border: 2px solid #141414; |
| 226 | } |
| 227 | |
| 228 | input[type=checkbox]:checked:before { |
| 229 | content: ''; |
| 230 | width: 26px; |
| 231 | height: 26px; |
| 232 | margin: -4px; |
| 233 | line-height: initial; |
| 234 | background-color: #1032cf; |
| 235 | -webkit-mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E"); |
| 236 | mask-image: url("data:image/svg+xml;utf8,%3Csvg%20xmlns%3D%27http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg%27%20viewBox%3D%270%200%2020%2020%27%3E%3Cpath%20d%3D%27M14.83%204.89l1.34.94-5.81%208.38H9.02L5.78%209.67l1.34-1.25%202.57%202.4z%27%20fill%3D%27%233582c4%27%2F%3E%3C%2Fsvg%3E"); |
| 237 | -webkit-mask-size: contain; |
| 238 | mask-size: contain; |
| 239 | } |
| 240 | |
| 241 | textarea { |
| 242 | width: 100%; |
| 243 | border: 2px solid #d3d3d3; |
| 244 | border-radius: 7px; |
| 245 | padding: 8px 15px; |
| 246 | } |
| 247 | |
| 248 | .switch-checkbox { |
| 249 | display: flex; |
| 250 | align-items: center; |
| 251 | } |
| 252 | |
| 253 | .switch-checkbox input[type=checkbox]{ |
| 254 | height: 0; |
| 255 | width: 0; |
| 256 | visibility: hidden; |
| 257 | border: none; |
| 258 | min-width: initial; |
| 259 | float: left; |
| 260 | } |
| 261 | |
| 262 | .switch-checkbox .switcher { |
| 263 | cursor: pointer; |
| 264 | width: 70px; |
| 265 | height: 40px; |
| 266 | margin-right: 10px; |
| 267 | background-color: #141414; |
| 268 | display: inline-block; |
| 269 | border-radius: 100px; |
| 270 | position: relative; |
| 271 | transition: 0.3s; |
| 272 | } |
| 273 | |
| 274 | .switch-checkbox .switcher:after { |
| 275 | content: ''; |
| 276 | position: absolute; |
| 277 | top: 5px; |
| 278 | left: 5px; |
| 279 | width: 30px; |
| 280 | height: 30px; |
| 281 | background-color: #fff; |
| 282 | border-radius: 90px; |
| 283 | transition: 0.3s; |
| 284 | } |
| 285 | |
| 286 | .switch-checkbox input[type=checkbox]:checked + .switcher { |
| 287 | background-color: #1032cf; |
| 288 | } |
| 289 | |
| 290 | .switch-checkbox input[type=checkbox]:checked + .switcher:after { |
| 291 | left: calc(100% - 5px); |
| 292 | transform: translateX(-100%); |
| 293 | } |
| 294 | |
| 295 | .switch-checkbox .switcher:active:after { |
| 296 | width: 30px; |
| 297 | } |
| 298 | |
| 299 | .switch-checkbox input[type=checkbox]:disabled + .switcher { |
| 300 | opacity: .5; |
| 301 | } |
| 302 | |
| 303 | .cb-submit__msg { |
| 304 | box-sizing: border-box; |
| 305 | width: 468px; |
| 306 | position: fixed; |
| 307 | bottom: 50px; |
| 308 | right: 75px; |
| 309 | background-color: #076646; |
| 310 | color: #ffffff; |
| 311 | padding: 24px 72px; |
| 312 | font-size: 15px; |
| 313 | line-height: 24px; |
| 314 | font-weight: 600; |
| 315 | box-shadow: 0px 8px 24px rgba(0, 0, 0, 0.25); |
| 316 | border-radius: 8px; |
| 317 | cursor: pointer; |
| 318 | z-index: 20; |
| 319 | } |
| 320 | |
| 321 | .cb-submit__msg:before { |
| 322 | content: url(../../img/icons/check.svg); |
| 323 | position: absolute; |
| 324 | left: 30px; |
| 325 | top: 25px; |
| 326 | } |
| 327 | |
| 328 | .cb-submit__msg:after { |
| 329 | content: '✕'; |
| 330 | position: absolute; |
| 331 | right: 30px; |
| 332 | font-weight: 700; |
| 333 | font-family: monospace; |
| 334 | font-size: 23px; |
| 335 | } |