|
- /*********************************************************************
- 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;
- 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-italic.woff') format('woff');
- }
-
- @font-face {
- font-family: 'Latin Modern Roman';
- font-weight: bold;
- font-style: italic;
- src: url('../fonts/lmroman10-bolditalic.woff') format('woff');
- }
-
- @font-face {
- font-family: 'Latin Modern Mono';
- font-weight: normal;
- font-style: normal;
- src: url('../fonts/lmmono10-regular.woff') format('woff');
- }
-
- @font-face {
- font-family: 'Latin Modern Mono';
- font-weight: normal;
- font-style: italic;
- src: url('../fonts/lmmono10-italic.woff') format('woff');
- }
-
-
- /* http://linuxlibertine.sourceforge.net/fonts/ */
- @font-face {
- font-family: 'Linux Libertine'; /* normal */
- src: url('../fonts/LinLibertine_R.woff') format('woff');
- font-weight: normal;
- font-style: normal;
- }
-
- @font-face {
- font-family: 'Linux Libertine'; /* italic */
- src: url('../fonts/LinLibertine_RI.woff') format('woff');
- font-weight: normal;
- font-style: italic;
- }
-
- @font-face {
- font-family: 'Linux Libertine'; /* bold */
- src: url('../fonts/LinLibertine_RB.woff') format('woff');
- font-weight: bold;
- font-style: normal;
- }
-
- @font-face {
- font-family: 'Linux Libertine'; /* bold */
- src: url('../fonts/LinLibertine_RBI.woff') format('woff');
- font-weight: bold;
- font-style: italic;
- }
-
-
- /* Page Layout */
-
- body {
- background: none;
- font-size: 14pt;
- font-family: 'Linux Libertine', 'Latin Modern Roman', serif;
- color: black;
- }
-
- h1, h2, h3, h4, h5, h6 {
- border: none;
- font-weight: bold;
- }
-
-
- a, a:visited {
- color: #009;
- }
-
-
- a.new, a.new:visited {
- color: black;
- }
-
- ul {
- list-style: disc;
- }
|