-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
47 lines (38 loc) · 955 Bytes
/
style.css
File metadata and controls
47 lines (38 loc) · 955 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
/* layout/mobile fixes */
html, body { max-width: 100%; overflow-x: hidden; }
*, *::before, *::after { box-sizing: border-box; }
body {
font-family: 'DejaVu Sans Mono', monospace;
font-size: 16px;
line-height: 1.5;
margin: 0;
padding: 16px 12px;
width: 100%;
max-width: 100%;
min-width: 0;
background-color: #1d1f21;
color: #c5c8c6;
text-align: left;
overflow-x: hidden;
}
pre {
width: 100%;
max-width: 100%;
overflow-x: auto;
background: #111314;
border: 1px solid #c5c8c6;
}
code {
background: #111314;
color: #de935f;
}
/* wrap flex items and long links */
.horizontal { flex-wrap: wrap; gap: 10px; }
.horizontal > * { min-width: 0; overflow-wrap: anywhere; }
/* stop ch-indent from breaking mobile layout */
@media (max-width: 600px) {
.tab30, .tab60 { margin-left: 0; }
}
/* tables scroll internally */
table { display: block; max-width: 100%; overflow-x: auto; }
th, td { overflow-wrap: anywhere; }