-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
65 lines (60 loc) · 860 Bytes
/
Copy pathstyle.css
File metadata and controls
65 lines (60 loc) · 860 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
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
body {
padding-right: 0.75rem;
padding-left: 0.75rem;
margin-right: auto;
margin-left: auto;
}
@media (min-width: 576px) {
body {
max-width: 540px;
}
}
@media (min-width: 768px) {
body {
max-width: 720px;
}
}
@media (min-width: 992px) {
body {
max-width: 960px;
}
}
@media (min-width: 1200px) {
body {
max-width: 1140px;
}
}
@media (min-width: 1400px) {
body {
max-width: 1320px;
}
}
h3 {
margin-top: 2rem;
border-bottom: 1px solid gray;
font-size: 1.35rem;
color: darkblue;
}
@media (min-width: 1200px) {
h3 {
font-size: 1.6rem;
}
}
h4 {
margin-top: 1rem;
margin-bottom: 1rem;
font-size: 1.3rem;
color: forestgreen;
}
@media (min-width: 1200px) {
h4 {
font-size: 1.4rem;
}
}
h5 {
font-size: 1.25rem;
}
pre {
border: 1px solid gray;
padding: 0.3rem 1rem 0.3rem 1rem;
}