-
Notifications
You must be signed in to change notification settings - Fork 17
Expand file tree
/
Copy pathbanner-cta.module.css
More file actions
61 lines (53 loc) · 993 Bytes
/
Copy pathbanner-cta.module.css
File metadata and controls
61 lines (53 loc) · 993 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
.container {
width: 100%;
margin: var(--size-1) 0;
padding: var(--size-4);
background-color: #e7e8ea;
border-radius: var(--radius-4);
color: var(--color-primary);
font-size: var(--font-size-1);
}
.snippetContainer {
width: 100%;
}
.snippet {
color: var(--color-primary);
border-radius: var(--radius-4);
border: var(--radius-1) solid #c1d3cd;
box-shadow: var(--shadow-2);
margin: var(--size-px-2) 0;
text-align: center;
padding: var(--size-2);
display: block;
& pre {
font-size: var(--font-size-1);
}
& wcc-ctc-button {
display: none;
}
}
@media (min-width: 430px) {
.snippet {
& pre {
display: inline;
vertical-align: text-top;
}
& wcc-ctc-button {
display: inline;
}
}
}
@media (min-width: 768px) {
.container {
width: 80%;
margin: 0 auto;
padding: var(--size-4);
}
}
@media (min-width: 1024px) {
.container {
width: 60%;
margin: 0 auto;
padding: var(--size-4);
}
}