-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathstyle.css
More file actions
106 lines (89 loc) · 1.53 KB
/
style.css
File metadata and controls
106 lines (89 loc) · 1.53 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
html {
font-family: 'Franklin Gothic Medium', Arial, sans-serif;
font-size: 12pt;
color: #222;
}
body {
overflow-wrap: anywhere;
max-width: calc(100vw - 3em);
width: 90ch;
margin: 0 auto;
}
img[width="650"] {
max-width: 85vw;
max-height: 33vw;
}
pre {
padding: 1em;
overflow-x: auto;
}
code {
font-family: TinyPragmataPro, monospace;
}
pre code {
background-color: transparent;
padding: 0;
border-radius: 0;
}
.toc {
border: 1px solid #ddd;
border-radius: 4px;
padding: 1em;
margin-bottom: 2em;
}
.downloads {
border: 1px solid #ddd;
border-radius: 4px;
padding: 1em;
margin-bottom: 2em;
}
table {
width: 100%;
border-collapse: collapse;
margin-bottom: 2em;
}
th, td {
border: 1px solid #ddd;
padding: 8px;
text-align: left;
}
th {
background-color: #f5f5f5;
}
.cli-flags td:first-child {
white-space: nowrap;
}
.site-footer {
background-color: #f8f9fa;
padding: 2rem 0;
margin-top: 3rem;
border-top: 1px solid #eaecef;
color: #6a737d;
font-size: 0.9rem;
}
.site-footer .container {
max-width: 800px;
margin: 0 auto;
padding: 0 1rem;
text-align: center;
}
.site-footer p {
margin: 0.5rem 0;
line-height: 1.6;
}
.site-footer a {
color: #0366d6;
text-decoration: none;
font-weight: 500;
}
.site-footer a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
.site-footer {
padding: 1.5rem 0;
}
.site-footer p {
font-size: 0.85rem;
}
}