style.css 538 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  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. p,
  31. ul
  32. {
  33. font-family: sans-serif;
  34. }
  35. @media (max-width: 560px)
  36. {
  37. .page
  38. {
  39. width: 100%;
  40. }
  41. h1
  42. {
  43. font-size: 9vw;
  44. }
  45. }