-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathget-started.module.css
More file actions
94 lines (83 loc) · 2.05 KB
/
get-started.module.css
File metadata and controls
94 lines (83 loc) · 2.05 KB
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
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
.container {
padding: var(--size-fluid-3) var(--size-fluid-1);
color: var(--color-white);
background-color: var(--color-tertiary);
text-align: center;
}
.heading {
font-family: var(--font-primary-bold);
font-size: var(--font-size-5);
}
.snippet {
display: inline-block;
border-radius: var(--radius-4);
padding: 0 var(--size-1);
box-shadow: var(--shadow-4);
letter-spacing: var(--font-letterspacing-3);
background-color: var(--color-white);
color: var(--color-black);
margin: 10px 0;
max-width: 98%;
}
.snippet pre {
font-size: 13px;
text-align: center;
display: inline-block;
padding: var(--size-px-4) 0;
background-color: transparent;
color: var(--color-black);
}
.snippet app-ctc-button {
display: none;
vertical-align: middle;
}
.buttonSecondary {
display: inline-block;
border-radius: var(--radius-3);
border: var(--border-size-1) solid var(--color-white);
background-color: transparent;
padding: var(--size-fluid-1) var(--size-fluid-2);
min-width: var(--size-px-13);
color: var(--color-white) !important;
box-shadow: var(--shadow-2);
height: fit-content;
text-decoration: none;
}
.buttonPrimary {
display: inline-block;
border-radius: var(--radius-3);
padding: var(--size-fluid-1) var(--size-fluid-2);
background-color: var(--color-primary);
min-width: var(--size-px-13);
color: var(--color-white) !important;
box-shadow: var(--shadow-4);
margin-top: var(--size-fluid-1);
height: fit-content;
text-decoration: none;
}
.buttonSecondary:hover,
.buttonSecondary:focus {
background-color: var(--color-gray);
text-decoration: none;
color: var(--color-black) !important;
}
.buttonPrimary:hover,
.buttonPrimary:focus {
background-color: var(--color-accent);
text-decoration: none;
color: var(--color-black) !important;
}
@media (min-width: 1024px) {
.snippet {
max-width: fit-content;
padding: var(--size-2);
display: inline-block;
}
.snippet pre {
font-size: var(--font-size-1);
width: fit-content;
}
.snippet app-ctc-button {
display: inline-block;
}
}