style.css 783 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. @font-face
  2. {
  3. font-family: STIX;
  4. src: url("/static/STIX2Text-Regular.subset.otf") format("truetype");
  5. }
  6. body
  7. {
  8. display: flex;
  9. justify-content: center;
  10. }
  11. .page
  12. {
  13. width: 550px;
  14. }
  15. .image-page,
  16. .image-page img
  17. {
  18. width: 17.5cm;
  19. }
  20. h1,
  21. h2,
  22. h3
  23. {
  24. font-family: 'STIX', serif;
  25. font-weight: normal;
  26. }
  27. h1
  28. {
  29. border-style: solid;
  30. border-width: 1px 0;
  31. text-align: center;
  32. font-size: 34pt;
  33. }
  34. h2
  35. {
  36. font-size: 16pt;
  37. }
  38. h3
  39. {
  40. font-size: 14pt;
  41. }
  42. h1 a
  43. {
  44. text-decoration: none;
  45. color: #000;
  46. }
  47. p,
  48. ul
  49. {
  50. font-family: sans-serif;
  51. }
  52. @media (max-width: 17.5cm)
  53. {
  54. .image-page,
  55. .image-page img
  56. {
  57. width: 100%;
  58. }
  59. }
  60. @media (max-width: 560px)
  61. {
  62. .page
  63. {
  64. width: 100%;
  65. }
  66. h1
  67. {
  68. font-size: 9vw;
  69. }
  70. }