forked from TieBaMma/InstallTutorial
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcayman-patch.css
More file actions
82 lines (69 loc) · 1.53 KB
/
cayman-patch.css
File metadata and controls
82 lines (69 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
/*!
* Modifications to Cayman theme for accessibility
*
* Copyright (c) Lemming
* Released under the MIT License.
* https://github.com/Lemmingh
*/
.main-content {
color: black;
}
.main-content blockquote {
color: #606c71;
}
.main-content h2 {
text-align: center;
font-weight: bold;
}
.main-content h2,
.main-content h3,
.main-content h4,
.main-content h5,
.main-content h6 {
border-top: 1px solid #eaecef;
padding-top: 0.3em;
}
.main-content a {
text-decoration: underline dashed;
}
blockquote strong {
color: crimson;
}
/* ! Caution: We override any other rules on `font-family` here. */
code,
kbd,
pre,
samp {
font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Droid Sans Mono", "Courier New",
"Sarasa Mono T SC", "SimHei", monospace, "Droid Sans Fallback" !important;
}
details summary {
cursor: pointer;
display: list-item;
text-decoration: underline dashed;
}
/* Based on https://github.githubassets.com/assets/github-89d9d3c9d19ddf234d9355a9ff50bcbd.css */
kbd {
background-color: #fafbfc;
border: 1px solid #c6cbd1;
border-bottom-color: #959da5;
border-radius: 3px;
box-shadow: inset 0 -1px 0 #959da5;
color: #444d56;
display: inline-block;
font-weight: 700;
line-height: 0.7em;
padding: 3px 5px;
vertical-align: middle;
white-space: nowrap;
}
/* Based on https://interactive-examples.mdn.mozilla.net/pages/tabbed/del.html */
del {
text-decoration: line-through;
background-color: #fbb;
color: #555;
}
ins {
text-decoration: none;
background-color: #d4fcbc;
}