forked from DevExpress/DevExtreme
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
38 lines (33 loc) · 682 Bytes
/
Copy pathstyles.css
File metadata and controls
38 lines (33 loc) · 682 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
.long-title h2 {
font-family: 'Segoe UI Light', 'Helvetica Neue Light', 'Segoe UI', 'Helvetica Neue', 'Trebuchet MS', Verdana;
font-weight: 200;
font-size: 28px;
text-align: center;
letter-spacing: normal;
margin: 28px 0 20px;
}
.export-options {
padding: 20px;
margin-top: 20px;
background-color: rgba(191, 191, 191, 0.15);
}
.caption {
font-size: 18px;
font-weight: 500;
}
.options {
display: grid;
grid-template-columns: repeat(1, 1fr);
gap: 12px;
margin-top: 10px;
}
@media (min-width: 500px) {
.options {
grid-template-columns: 250px 1fr;
}
}
@media (min-width: 1000px) {
.options {
grid-template-columns: repeat(4, 1fr);
}
}