-
Notifications
You must be signed in to change notification settings - Fork 34
Expand file tree
/
Copy pathstyles.module.scss
More file actions
121 lines (91 loc) · 1.75 KB
/
styles.module.scss
File metadata and controls
121 lines (91 loc) · 1.75 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
@use "../../mixins/section";
.heroBanner {
z-index: 1;
background: transparent;
--ifm-hero-background-color: transparent;
position: relative;
min-height: 480px;
@media screen and (min-width: 768px) {
min-height: 520px;
padding: 0 1rem;
}
}
.container {
width: 100%;
display: flex;
flex-direction: column;
align-items: center;
p {
max-width: 600px;
text-align: center;
@media screen and (min-width: 960px) {
font-size: 18px;
line-height: 28px;
}
@media screen and (min-width: 1900px) {
font-size: 20px;
line-height: 38px;
}
}
}
.subtitle {
letter-spacing: -0.05em;
}
.item {
grid-column: 1/2;
}
.title {
color: black;
html[data-theme="dark"] & {
color: white;
}
padding: 4rem 0 0;
text-align: center;
max-width: 520px;
letter-spacing: -0.15rem;
word-spacing: -0.5rem;
line-height: 1.1;
font-size: 2rem;
font-weight: inherit;
@media screen and (min-width: 480px) {
font-size: 2.5rem;
}
@media screen and (min-width: 768px) {
max-width: 720px;
font-size: 3rem;
}
@media screen and (min-width: 960px) {
max-width: 830px;
font-size: 4rem;
}
}
.actions {
display: flex;
flex-direction: column;
column-gap: 1rem;
row-gap: 1rem;
@media screen and (min-width: 768px) {
display: grid;
grid-template-columns: repeat(2, 1fr);
row-gap: 0.65rem;
}
}
.bold {
font-weight: bold;
}
.ai {
display: inline-flex;
justify-content: center;
gap: 0.25rem;
grid-column-start: 2;
padding: 0.15rem 0 0;
font-size: calc(var(--ifm-font-size-base) * 0.65);
a {
color: var(--ifm-font-color-base);
text-decoration: underline;
&:hover,
&:active {
color: var(--ifm-link-color);
}
}
}