PluginProbe ʕ •ᴥ•ʔ
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode / 4.2.1
Cookiebot by Usercentrics – Automatic Cookie Banner for GDPR/CCPA & Google Consent Mode v4.2.1
4.7.2 4.7.1 trunk 2.3.0 2.4.0 2.4.1 2.4.2 2.5.0 3.0.0 3.0.1 3.1.0 3.10.0 3.10.1 3.11.1 3.11.2 3.11.3 3.2.0 3.3.0 3.3.1 3.4.0 3.4.1 3.4.2 3.5.0 3.6.0 3.6.1 3.6.2 3.6.5 3.6.6 3.7.0 3.7.1 3.8.0 3.9.0 4.0.0 4.0.1 4.0.2 4.0.3 4.1.0 4.1.1 4.2.0 4.2.1 4.2.10 4.2.11 4.2.12 4.2.13 4.2.14 4.2.2 4.2.3 4.2.4 4.2.5 4.2.6 4.2.7 4.2.8 4.2.9 4.3.0 4.3.1 4.3.10 4.3.11 4.3.12 4.3.2 4.3.3 4.3.4 4.3.5 4.3.6 4.3.7 4.3.7.1 4.3.8 4.3.9 4.3.9.1 4.4.0 4.4.1 4.4.2 4.5.0 4.5.1 4.5.10 4.5.11 4.5.2 4.5.3 4.5.4 4.5.5 4.5.6 4.5.7 4.5.8 4.5.9 4.6.0 4.6.1 4.6.2 4.6.3 4.6.4 4.6.5 4.6.6 4.6.7 4.7.0
cookiebot / assets / css / backend / support_page.css
cookiebot / assets / css / backend Last commit date
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
support_page.css
123 lines
1 .cb-support__content {
2 display: grid;
3 grid-template-columns: 1fr 1fr;
4 grid-column-gap: 18px;
5 margin-bottom: 50px;
6 }
7
8 .cb-support__info__card {
9 padding: 25px 20px 0;
10 }
11
12 .cb-support__info__title {
13 font-size: 22px;
14 font-weight: 700;
15 margin: 0 0 20px;
16 }
17
18 .cb-support__info__text {
19 font-size: 16px;
20 line-height: 24px;
21 }
22
23 .cb-support__video__inner {
24 background-color: #efefef;
25 border-radius: 15px;
26 padding: 25px;
27 }
28
29 .cb-support__video__title {
30 font-size: 15px;
31 margin: 0;
32 }
33
34 .cb-main__video {
35 margin-top: 25px;
36 margin-bottom: 0;
37 }
38
39 .cb-faq__container {
40 border-radius: 8px;
41 background-color: #efefef;
42 padding: 24px 24px 0;
43 }
44
45 .cb-faq__container:not(:first-of-type) {
46 margin-top: 4px;
47 }
48
49 .cb-faq__question {
50 margin: 0;
51 border-bottom: 1px solid transparent;
52 padding-bottom: 16px;
53 display: flex;
54 justify-content: space-between;
55 align-items: center;
56 cursor: pointer;
57 font-size: 16px;
58 font-weight: 600;
59 line-height: 1.6em;
60 letter-spacing: .1px;
61 transition: color .25s ease;
62 }
63
64 .cb-faq__container.cb-faq--opened .cb-faq__question {
65 color: #1032cf;
66 border-bottom: 1px solid #d3d3d3;
67 }
68
69 .cb-faq__toggle {
70 display: inline-block;
71 position: relative;
72 min-width: 24px;
73 height: 24px;
74 margin-left: 10px;
75 }
76
77 .cb-faq__toggle:after, .cb-faq__toggle:before {
78 content: "";
79 width: 14px;
80 height: 2px;
81 background-color: #141414;
82 display: inline-block;
83 position: absolute;
84 left: 5px;
85 top: 11px;
86 transition: color .25s ease;
87 }
88
89 .cb-faq__toggle:after {
90 transform: rotate(90deg);
91 transition: transform .25s ease,color .25s ease;
92 }
93
94 .cb-faq__container.cb-faq--opened .cb-faq__toggle:after {
95 transform: rotate(0deg);
96 }
97
98 .cb-faq__container.cb-faq--opened .cb-faq__toggle:after, .cb-faq__container.cb-faq--opened .cb-faq__toggle:before {
99 background-color: #1032cf;
100 }
101
102 .cb-faq__answer {
103 overflow: hidden;
104 height: 0;
105 transition: height .25s ease;
106 }
107
108 .cb-faq__container.cb-faq--opened .cb-faq__answer {
109 height: initial;
110 padding-bottom: 24px;
111 }
112
113 .cb-faq__code {
114 padding: 0 10px;
115 font-family: monospace;
116 overflow-wrap: initial;
117 overflow-x: auto;
118 background-image: linear-gradient(white 50%, rgb(215 221 250) 50%);
119 background-size: 1em 2.85em;
120 background-origin: content-box;
121 display: inline-block;
122 width: 100%;
123 }