-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
0 parents
commit ca95b85
Showing
73 changed files
with
148 additions
and
0 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,148 @@ | ||
/********************************************************************* | ||
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 | ||
*/ | ||
|
||
|
||
/* Latin Modern (LaTeX default) font */ | ||
|
||
@font-face { | ||
font-family: 'Latin Modern Roman'; | ||
font-weight: normal; | ||
font-style: normal; | ||
src: url('/fonts/lmroman10-regular.woff') format('woff'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'Latin Modern Roman'; | ||
font-weight: bold; | ||
font-style: normal; | ||
src: url('/fonts/lmroman10-bold.woff') format('woff'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'Latin Modern Roman'; | ||
font-weight: normal; | ||
font-style: italic; | ||
src: url('/fonts/lmroman10-oblique.woff') format('woff'); | ||
} | ||
|
||
@font-face { | ||
font-family: 'Latin Modern Roman'; | ||
font-weight: bold; | ||
font-style: italic; | ||
src: url('/fonts/lmroman10-boldoblique.woff') format('woff'); | ||
} | ||
|
||
/* Page Layout */ | ||
|
||
body { | ||
background: none; | ||
font-size: 16pt; | ||
} | ||
|
||
body { | ||
/* I use the wildcard selector with extreme hesitation | ||
but otherwise have to override every relevant element */ | ||
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; | ||
} | ||
|
||
.ns-subject #mw-navigation, #mw-page-base, #mw-head-base, #footer { | ||
/* nuke everything but the content */ | ||
display: none; | ||
} | ||
|
||
/* Content Box */ | ||
|
||
.mw-body { | ||
max-width: 720px; | ||
margin: 2em auto; | ||
} | ||
|
||
#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; | ||
} |