basic.css 511 B

123456789101112131415161718192021222324252627282930313233343536
  1. /* SPDX-License-Identifier: MIT */
  2. @font-face {
  3. font-family: "PT Serif";
  4. src: url("pt-serif-web-regular.ttf") format("truetype");
  5. }
  6. p {
  7. margin-left: 2.5em;
  8. }
  9. code {
  10. color: darkslategrey;
  11. }
  12. h1, h2, h4, ul {
  13. font-family: "PT Serif";
  14. }
  15. .title-main {
  16. text-align: center;
  17. margin-top: 6em;
  18. font-size: 350%;
  19. }
  20. .title-sub {
  21. text-align: center;
  22. font-size: 120%;
  23. color: darkslategrey;
  24. }
  25. .title-dir {
  26. text-align: center;
  27. margin-top: 8.2em;
  28. font-size: 300%;
  29. }