-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathstyle.css
More file actions
125 lines (124 loc) · 1.99 KB
/
Copy pathstyle.css
File metadata and controls
125 lines (124 loc) · 1.99 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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
main {
max-width: 70ch;
margin: auto;
}
pre {
overflow-x: scroll;
}
sup a {
text-decoration: none;
}
kbd {
background-color: WhiteSmoke;
border-radius: 2px;
border: 1px solid Silver;
box-shadow: 1px 1px 2px;
display: inline-block;
line-height: 1;
padding: 2px 4px;
white-space: nowrap;
}
table,
td {
border: 1px solid Black;
}
thead,
tfoot {
background-color: Black;
color: White;
}
blockquote {
margin: 0;
}
blockquote p {
font-style: italic;
}
blockquote p::before {
content: '\201C';
}
blockquote p::after {
content: '\201D';
}
img {
max-width: 100%
}
span.nix:before {
content: url(img/icons/tux.png) / "Linux";
margin: 0 0.2em;
}
span.irc:before {
content: url(img/icons/application_xp_terminal.png) / "Terminal Emulator";
margin: 0 0.2em;
}
a.www:before {
content: url(img/icons/world.png) / "WWW";
margin: 0 0.2em;
}
a.email:before {
content: url(img/icons/email.png) / "E-mail";
margin: 0 0.2em;
}
a.game:before {
content: url(img/icons/controller.png) / "Game";
margin: 0 0.2em;
}
a.pack:before {
content: url(img/icons/package.png) / "Package";
margin: 0 0.2em;
}
a.feed:before {
content: url(img/icons/feed.png) / "News Feed";
margin: 0 0.2em;
}
a.img:before {
content: url(img/icons/image.png) / "Image";
margin: 0 0.2em;
}
a.se:before,span.se:before {
content: url(img/icons/se.png) / "Sweden";
margin: 0 0.2em;
}
a.de:before {
content: url(img/icons/de.png) / "Germany";
margin: 0 0.2em;
}
a.ch:before {
content: url(img/icons/ch.png) / "Switzerland";
margin: 0 0.2em;
}
a.fr:before {
content: url(img/icons/fr.png) / "France";
margin: 0 0.2em;
}
@media (prefers-color-scheme: dark) {
body {
background-color: Black;
color: White;
}
a {
color: LightSkyBlue;
}
a:visited {
color: MediumPurple;
}
button:disabled {
color: DarkGray;
}
kbd {
box-shadow: 1px 1px 2px White;
color: Black;
}
table,
td {
border: 1px solid DarkGray;
}
thead,
tfoot {
background-color: White;
color: Black;
}
div.highlight {
background: Black;
color: White;
}
}