forked from QuantStack/quantstack.github.io
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyles.module.css
More file actions
30 lines (27 loc) · 735 Bytes
/
styles.module.css
File metadata and controls
30 lines (27 loc) · 735 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
@media only screen and (max-width: 996px) {
.aboutQS_container {
background-color: var(--ifm-color-secondary-s2);
color: white;
padding: var(--ifm-spacing-2xl) var(--ifm-spacing-2xl) 0
var(--ifm-spacing-2xl);
text-align: center;
}
.aboutQS_text {
font-size: 14px;
text-align: center;
margin-bottom: var(--ifm-spacing-xl);
}
}
@media only screen and (min-width: 996px) {
.aboutQS_container {
background-color: var(--ifm-color-primary-p1);
color: var(--ifm-color-primary-p2);
padding: var(--ifm-spacing-2xl) var(--ifm-spacing-5xl) 0
var(--ifm-spacing-5xl);
}
.aboutQS_text {
font-size: 24px;
text-align: center;
margin-bottom: var(--ifm-spacing-lg);
}
}