-
Notifications
You must be signed in to change notification settings - Fork 27
/
Copy pathpdfsyntax.css
105 lines (92 loc) · 1.46 KB
/
pdfsyntax.css
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
body {
font-family: system-ui, sans-serif;
}
header, main, footer {
max-width: 900px;
font-size: 1em;
padding: 1em;
margin: 0.5em auto;
}
header, footer {
text-align: center;
}
h1 {
font-size: 2.5em;
margin-top: 0;
}
h2 {
font-size: 1.4em;
color: #770000;
/* text-decoration: underline solid 4px #770000;
border-bottom-style: solid;
border-bottom-color: black;*/
}
h3 {
font-size: 1.2em;
}
h4 {
font-size: 1em;
}
code {
background-color: #eeeeee;
padding: 0.1em;
}
pre {
margin-bottom: 1.5em;
padding-top: 1em;
padding-bottom: 1em;
background-color: #eeeeee;
overflow-y: auto;
border-radius: 8px;
}
blockquote {
margin-top: 2em;
padding-left: 1em;
border-left: 0.3em solid black;
}
img {
max-width: 100%;
border-radius: 25px;
}
section {
display: flex;
flex-flow: row wrap;
align-items: start;
justify-content: space-around;
gap: 50px;
padding-top: 2em;
padding-bottom: 2em;
}
.f {
width: 360px;
}
.b0 {
background-color: #ffffff;
}
.b1 {
background: linear-gradient(#e2e2e2, #f7f7f7);
text-align: center;
padding-top: 20px;
padding-bottom: 20px;
}
.content {
max-width: 1200px;
margin: 0.5em auto;
}
a {
color: #770000;
}
.pad {
padding-left: 2em;
padding-right: 2em;
}
h4 {
margin-top: 10px;
margin-bottom: 8px;
}
p {
margin-top: 8px;
}
.rl {
border-top: solid 1px #770000;
}