style.css 592 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758
  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. h1,
  16. h2,
  17. h3
  18. {
  19. font-family: 'STIX', serif;
  20. font-weight: normal;
  21. font-size: 14pt;
  22. }
  23. h1
  24. {
  25. border-style: solid;
  26. border-width: 1px 0;
  27. text-align: center;
  28. font-size: 34pt;
  29. }
  30. h1 a
  31. {
  32. text-decoration: none;
  33. color: #000;
  34. }
  35. p,
  36. ul
  37. {
  38. font-family: sans-serif;
  39. }
  40. @media (max-width: 560px)
  41. {
  42. .page
  43. {
  44. width: 100%;
  45. }
  46. h1
  47. {
  48. font-size: 9vw;
  49. }
  50. }