style.css 465 B

1234567891011121314151617181920212223242526272829
  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: 500px;
  15. }
  16. h1,
  17. h2,
  18. h3
  19. {
  20. font-family: 'STIX', serif;
  21. font-weight: normal;
  22. font-size: 34pt;
  23. text-align: center;
  24. border-style: solid;
  25. border-width: 1px 0;
  26. }