This repository has been archived by the owner on Feb 9, 2022. It is now read-only.
forked from michaelko/WiTeX
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
156 lines (123 loc) · 2.73 KB
/
style.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
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
/*********************************************************************
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or
distribute this software, either in source code form or as a compiled
binary, for any purpose, commercial or non-commercial, and by any
means.
For more information, please refer to <http://unlicense.org/>
*********************************************************************/
/*
WiTeX
https://github.com/AndrewBelt/WiTeX
*/
/* Latin Modern (LaTeX default) font */
@font-face {
font-family: 'Latin Modern Roman';
font-weight: normal;
font-style: normal;
/* pls someone offer me a CDN for these fonts so I can save bandwidth for
my email service */
src: url('https://pawnmail.com/fonts/lmroman10-regular.woff') format('woff');
}
@font-face {
font-family: 'Latin Modern Roman';
font-weight: bold;
font-style: normal;
src: url('https://pawnmail.com/fonts/lmroman10-bold.woff') format('woff');
}
@font-face {
font-family: 'Latin Modern Roman';
font-weight: normal;
font-style: italic;
src: url('https://pawnmail.com/fonts/lmroman10-oblique.woff') format('woff');
}
@font-face {
font-family: 'Latin Modern Roman';
font-weight: bold;
font-style: italic;
src: url('https://pawnmail.com/fonts/lmroman10-boldoblique.woff') format('woff');
}
/* Page Layout */
body {
background: none;
font-size: 16pt;
}
body {
font-family: 'Latin Modern Roman', serif;
}
h1, h2, h3, h4, h5, h6 {
border: none;
font-weight: bold;
}
a, a:visited {
color: #a00;
}
ul {
list-style: disc;
}
#mw-navigation, #mw-page-base, #mw-head-base, #footer {
/* nuke everything but the content */
display: none;
}
/* Content Box */
.mw-body {
margin: 2em auto;
padding: 1.6em;
-moz-column-width: 15em;
column-width: 15em;
-moz-column-gap: 3rem;
column-gap: 3rem;
max-width: none;
height: 90vh;
box-sizing: border-box;
}
#content {
border: none;
color: black;
}
#firstHeading, #siteSub {
text-align: center;
display: block;
}
.mw-body h1, .mw-body h2 {
font-family: inherit;
}
#siteSub {
margin-bottom: 4em;
}
/* Article Body */
.mw-editsection {
/* hide more non-content */
display: none;
}
.mw-body-content {
text-align: justify;
}
dl dd {
/* center definitions (most useful for display equations) */
text-align: center;
}
span.texhtml {
/* revert inline math to default font */
font-family: inherit;
font-size: inherit;
line-height: inherit;
}
/* Table of Contents */
#toc, .toc {
border: none;
padding: 0;
background: none;
}
.mw-body #toc h2, .mw-body .toc h2 {
font-family: inherit;
}
#toc h2, .toc h2 {
display:block;
}
#toc #toctitle, .toc #toctitle, #toc .toctitle, .toc .toctitle {
text-align: left;
}
.toctoggle {
display: none;
}