main.css 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118
  1. @font-face {
  2. font-family: league-spartan;
  3. src: url("/static/leaguespartan-bold.ttf");
  4. }
  5. body {
  6. background-color: #eeeeee;
  7. font-family: league-spartan, sans-serif;
  8. font-size: 14pt;
  9. }
  10. .header {
  11. padding: 20px;
  12. text-transform: uppercase;
  13. }
  14. .sitename {
  15. margin: 0px;
  16. font-size: 24pt;
  17. letter-spacing: 4px;
  18. padding-left: 40px;
  19. color: #ccc;
  20. padding-right: 80px;
  21. margin-top: -40px;
  22. text-align: right;
  23. }
  24. .title {
  25. margin-left: 40px;
  26. margin-top: -40px;
  27. letter-spacing: 4px;
  28. }
  29. .contents {
  30. text-align: justify;
  31. line-height: 1.5;
  32. padding: 40px;
  33. font-family: "Helvetica", "Arial", sans-serif;
  34. margin: 40px;
  35. width: 80%;
  36. background-color: #e8e8e8;
  37. margin-left: auto;
  38. margin-right: auto;
  39. }
  40. .menu {
  41. text-transform: uppercase;
  42. letter-spacing: 2px;
  43. text-align: center;
  44. border-top-style: solid;
  45. border-bottom-style: solid;
  46. padding-top: 5px;
  47. padding-bottom: 5px;
  48. border-width: 1px;
  49. width: 60%;
  50. margin-left: auto;
  51. margin-right: auto;
  52. }
  53. a:link {
  54. text-decoration: none;
  55. color: #cc3366;
  56. }
  57. a:visited {
  58. color: #993366;
  59. }
  60. .footer {
  61. text-align: center;
  62. letter-spacing: 4px;
  63. text-transform: uppercase;
  64. }
  65. pre {
  66. text-indent: 0px;
  67. padding-left: 20px;
  68. }
  69. .quote {
  70. border-top-style: solid;
  71. border-bottom-style: solid;
  72. border-width: 1px;
  73. padding: 20px;
  74. margin-top: 20px;
  75. margin-bottom: 20px;
  76. width: 75%;
  77. margin-left: auto;
  78. margin-right: auto;
  79. background-color: #eee;
  80. }
  81. .quotelink {
  82. margin-top: 10px;
  83. text-align: right;
  84. font-size: 12pt;
  85. }
  86. .link {
  87. border-top-style: solid;
  88. border-bottom-style: solid;
  89. border-width: 1px;
  90. padding: 20px;
  91. margin-top: 20px;
  92. margin-bottom: 20px;
  93. width: 75%;
  94. margin-left: auto;
  95. margin-right: auto;
  96. background-color: #eee;
  97. }
  98. .permalink {
  99. margin-top: 10px;
  100. text-align: right;
  101. font-size: 12pt;
  102. }
  103. .author p {
  104. display: inline;
  105. }