-
-
Notifications
You must be signed in to change notification settings - Fork 626
Expand file tree
/
Copy pathextra.css
More file actions
125 lines (103 loc) · 2.21 KB
/
Copy pathextra.css
File metadata and controls
125 lines (103 loc) · 2.21 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
.md-header {
background-color: #ffffff;
border-bottom: 1px solid rgba(15, 23, 42, 0.12);
box-shadow: none;
color: #17313b;
}
.md-header__button.md-logo img,
.md-header__button.md-logo svg {
height: 1.6rem;
width: 1.6rem;
}
.md-search__form {
background-color: rgba(15, 23, 42, 0.06);
}
.md-search__input {
color: #17313b;
}
.md-search__input::placeholder {
color: rgba(23, 49, 59, 0.68);
}
.md-search__form:hover {
background-color: rgba(15, 23, 42, 0.1);
}
[data-md-color-scheme="slate"] .md-header {
background-color: #111827;
border-bottom-color: rgba(255, 255, 255, 0.12);
color: #f8fafc;
}
[data-md-color-scheme="slate"] .md-search__form {
background-color: rgba(255, 255, 255, 0.1);
}
[data-md-color-scheme="slate"] .md-search__input {
color: #f8fafc;
}
[data-md-color-scheme="slate"] .md-search__input::placeholder {
color: rgba(248, 250, 252, 0.72);
}
[data-md-color-scheme="slate"] .md-search__form:hover {
background-color: rgba(255, 255, 255, 0.16);
}
.hero {
align-items: center;
display: grid;
gap: 2rem;
grid-template-columns: minmax(0, 1fr);
margin: 1rem 0 2.5rem;
}
.md-grid {
max-width: 82rem;
}
.md-typeset .hero__content h1 {
font-size: clamp(2rem, 4vw, 3rem);
line-height: 1.05;
margin: 0.2rem 0 1rem;
}
.hero__lead {
color: var(--md-default-fg-color--light);
font-size: 1.05rem;
max-width: 46rem;
}
.hero__actions {
display: flex;
flex-wrap: wrap;
gap: 0.6rem;
margin-top: 1.3rem;
}
.hero__media {
margin: 0;
}
.hero__media img {
border: 1px solid var(--md-default-fg-color--lightest);
border-radius: 0.5rem;
box-shadow: var(--md-shadow-z3);
display: block;
width: 100%;
}
.eyebrow {
color: var(--md-primary-fg-color);
font-size: 0.78rem;
font-weight: 700;
letter-spacing: 0;
margin: 0;
text-transform: uppercase;
}
.feature-grid {
display: grid;
gap: 1rem;
grid-template-columns: repeat(auto-fit, minmax(14rem, 1fr));
margin: 1.5rem 0 2rem;
}
.feature-card {
border: 1px solid var(--md-default-fg-color--lightest);
border-radius: 0.5rem;
padding: 1rem;
}
.feature-card h3 {
margin-top: 0;
}
@media screen and (min-width: 76.25em) {
.hero {
grid-template-columns: minmax(18rem, 0.9fr) minmax(20rem, 1.1fr);
}
}