global
1 year ago
addons_page.css
7 months ago
consent_mapping_table.css
1 year ago
cookiebot_admin_main.css
4 months ago
dashboard-old.css
4 months ago
dashboard.css
1 year ago
gtm_page.css
4 years ago
multiple_page.css
3 years ago
ppg_page.css
4 months ago
settings-page.css
7 months ago
support_page.css
1 year ago
ppg_page.css
71 lines
| 1 | .cb-ppg__page-title { |
| 2 | font-size: 60px; |
| 3 | font-weight: 800; |
| 4 | line-height: 1.2; |
| 5 | letter-spacing: -0.5px; |
| 6 | color: #141414; |
| 7 | margin: 0 0 24px; |
| 8 | } |
| 9 | |
| 10 | .cb-ppg__divider { |
| 11 | height: 1px; |
| 12 | background-color: #d6d6d6; |
| 13 | width: 100%; |
| 14 | margin-bottom: 24px; |
| 15 | } |
| 16 | |
| 17 | .cb-ppg__plugin-container { |
| 18 | display: flex; |
| 19 | flex-direction: column; |
| 20 | gap: 24px; |
| 21 | } |
| 22 | |
| 23 | .cb-ppg__plugin-header { |
| 24 | display: flex; |
| 25 | align-items: center; |
| 26 | gap: 24px; |
| 27 | min-height: 50px; |
| 28 | } |
| 29 | |
| 30 | .cb-ppg__plugin-name { |
| 31 | flex: 1 0 0; |
| 32 | font-size: 28px; |
| 33 | font-weight: 700; |
| 34 | line-height: 1.2; |
| 35 | color: #141414; |
| 36 | margin: 0; |
| 37 | } |
| 38 | |
| 39 | .cb-ppg__plugin-actions { |
| 40 | flex-shrink: 0; |
| 41 | } |
| 42 | |
| 43 | .cb-ppg__plugin-actions .cb-btn { |
| 44 | margin-top: 0; |
| 45 | } |
| 46 | |
| 47 | .cb-ppg__spinner { |
| 48 | display: inline-block; |
| 49 | width: 16px; |
| 50 | height: 16px; |
| 51 | border: 2px solid rgba(255, 255, 255, 0.3); |
| 52 | border-top-color: #ffffff; |
| 53 | border-radius: 50%; |
| 54 | animation: spin 0.6s linear infinite; |
| 55 | margin-right: 8px; |
| 56 | vertical-align: middle; |
| 57 | } |
| 58 | |
| 59 | .cb-ppg__hero { |
| 60 | width: 100%; |
| 61 | border-radius: 16px; |
| 62 | overflow: hidden; |
| 63 | } |
| 64 | |
| 65 | .cb-ppg__hero-image { |
| 66 | display: block; |
| 67 | width: 100%; |
| 68 | height: auto; |
| 69 | border-radius: 16px; |
| 70 | } |
| 71 |