style.css 633 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960
  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. .menu
  36. {
  37. list-style-type: none;
  38. padding-left: 0;
  39. display: flex;
  40. justify-content: left;
  41. }
  42. .menu li
  43. {
  44. padding: 0 5px;
  45. }
  46. @media (max-width: 560px)
  47. {
  48. .page
  49. {
  50. width: 100%;
  51. }
  52. }