style.css 553 B

123456789101112131415161718192021222324252627282930313233343536373839404142
  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. @media (max-width: 560px)
  32. {
  33. .page
  34. {
  35. width: 100%;
  36. }
  37. }