style.css 629 B

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