main.css 948 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283
  1. html, body { height: 100%; }
  2. * {
  3. margin: 0;
  4. padding: 0;
  5. }
  6. body {
  7. background-color: #fefefe;
  8. color: #020202;
  9. font-size: medium;
  10. margin: 0 auto 0;
  11. }
  12. p {
  13. line-height: 120%;
  14. }
  15. pre {
  16. font-style: inherit;
  17. font-family: inherit;
  18. font-size: inherit;
  19. padding: inherit;
  20. line-height: 1.1em;
  21. }
  22. #wrapper {
  23. min-height: 100%;
  24. /* width: 100%; */
  25. }
  26. #main {
  27. overflow: auto;
  28. max-width: 50em;
  29. padding-top: 2em;
  30. padding-bottom: 120px;
  31. margin-left: auto;
  32. margin-right: auto;
  33. }
  34. h1 {
  35. font-size: 250%;
  36. font-weight: normal;
  37. }
  38. h2 {
  39. font-size: 140%;
  40. }
  41. h3, h4, h5, h6 {
  42. font-size: 100%;
  43. }
  44. h1 { margin-bottom: 1em; }
  45. p {
  46. font-size: 16pt;
  47. margin: 1em 0;
  48. }
  49. a {
  50. color: inherit;
  51. text-decoration: inherit;
  52. font-weight: bold;
  53. }
  54. a:hover {
  55. background: rgba(0.5, 0.5, 0.5, 0.125);
  56. }
  57. a:visited {
  58. color: #612;
  59. }
  60. body {
  61. font-size: 115%;
  62. text-align: justify;
  63. line-height: 1.5em;
  64. }
  65. ul {
  66. padding-left: 1em;
  67. }