Nevar pievienot vairāk kā 25 tēmas Tēmai ir jāsākas ar burtu vai ciparu, tā var saturēt domu zīmes ('-') un var būt līdz 35 simboliem gara.

120 rindas
2.5KB

  1. /*********************************************************************
  2. This is free and unencumbered software released into the public domain.
  3. Anyone is free to copy, modify, publish, use, compile, sell, or
  4. distribute this software, either in source code form or as a compiled
  5. binary, for any purpose, commercial or non-commercial, and by any
  6. means.
  7. For more information, please refer to <http://unlicense.org/>
  8. *********************************************************************/
  9. /*
  10. WiTeX
  11. https://github.com/AndrewBelt/WiTeX
  12. */
  13. /* Latin Modern (LaTeX default) font */
  14. @font-face {
  15. font-family: 'Latin Modern Roman';
  16. font-weight: normal;
  17. font-style: normal;
  18. src: url('../fonts/lmroman10-regular.woff') format('woff');
  19. }
  20. @font-face {
  21. font-family: 'Latin Modern Roman';
  22. font-weight: bold;
  23. font-style: normal;
  24. src: url('../fonts/lmroman10-bold.woff') format('woff');
  25. }
  26. @font-face {
  27. font-family: 'Latin Modern Roman';
  28. font-weight: normal;
  29. font-style: italic;
  30. src: url('../fonts/lmroman10-italic.woff') format('woff');
  31. }
  32. @font-face {
  33. font-family: 'Latin Modern Roman';
  34. font-weight: bold;
  35. font-style: italic;
  36. src: url('../fonts/lmroman10-bolditalic.woff') format('woff');
  37. }
  38. @font-face {
  39. font-family: 'Latin Modern Mono';
  40. font-weight: normal;
  41. font-style: normal;
  42. src: url('../fonts/lmmono10-regular.woff') format('woff');
  43. }
  44. @font-face {
  45. font-family: 'Latin Modern Mono';
  46. font-weight: normal;
  47. font-style: italic;
  48. src: url('../fonts/lmmono10-italic.woff') format('woff');
  49. }
  50. /* http://linuxlibertine.sourceforge.net/fonts/ */
  51. @font-face {
  52. font-family: 'Linux Libertine'; /* normal */
  53. src: url('../fonts/LinLibertine_R.woff') format('woff');
  54. font-weight: normal;
  55. font-style: normal;
  56. }
  57. @font-face {
  58. font-family: 'Linux Libertine'; /* italic */
  59. src: url('../fonts/LinLibertine_RI.woff') format('woff');
  60. font-weight: normal;
  61. font-style: italic;
  62. }
  63. @font-face {
  64. font-family: 'Linux Libertine'; /* bold */
  65. src: url('../fonts/LinLibertine_RB.woff') format('woff');
  66. font-weight: bold;
  67. font-style: normal;
  68. }
  69. @font-face {
  70. font-family: 'Linux Libertine'; /* bold */
  71. src: url('../fonts/LinLibertine_RBI.woff') format('woff');
  72. font-weight: bold;
  73. font-style: italic;
  74. }
  75. /* Page Layout */
  76. body {
  77. background: none;
  78. font-size: 14pt;
  79. font-family: 'Linux Libertine', 'Latin Modern Roman', serif;
  80. color: black;
  81. }
  82. h1, h2, h3, h4, h5, h6 {
  83. border: none;
  84. font-weight: bold;
  85. }
  86. a, a:visited {
  87. color: #009;
  88. }
  89. a.new, a.new:visited {
  90. color: black;
  91. }
  92. ul {
  93. list-style: disc;
  94. }