style.css 732 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061
  1. @font-face
  2. {
  3. font-family: STIX;
  4. src: url("http://127.0.0.1:5000/static/STIX2Text-Regular.woff") format("woff"),
  5. url("http://127.0.0.1:5000/static/STIX2Text-Regular.otf") format("truetype");
  6. }
  7. body
  8. {
  9. display: flex;
  10. justify-content: center;
  11. }
  12. .page
  13. {
  14. width: 550px;
  15. }
  16. h1,
  17. h2,
  18. h3
  19. {
  20. font-family: 'STIX', serif;
  21. font-weight: normal;
  22. font-size: 14pt;
  23. }
  24. h1
  25. {
  26. border-style: solid;
  27. border-width: 1px 0;
  28. text-align: center;
  29. font-size: 34pt;
  30. }
  31. p,
  32. ul
  33. {
  34. font-family: sans-serif;
  35. }
  36. .menu
  37. {
  38. list-style-type: none;
  39. padding-left: 0;
  40. display: flex;
  41. justify-content: left;
  42. }
  43. .menu li
  44. {
  45. padding: 0 5px;
  46. }
  47. @media (max-width: 560px)
  48. {
  49. .page
  50. {
  51. width: 100%;
  52. }
  53. }