您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. @font-face {
  2. /* source: https://www.dafont.com/charlie-brown-m54.font */
  3. font-family: "Charlie Brown M54";
  4. src: url("/static/Charlie_Brown_M54.ttf") format("truetype");
  5. }
  6. body {
  7. font-family: sans-serif;
  8. margin-left: auto;
  9. margin-right: auto;
  10. }
  11. .uhaul_cont {
  12. font-family: "Charlie Brown M54";
  13. font-size: 36pt;
  14. letter-spacing: 0.05em;
  15. text-align: center;
  16. margin-left: auto;
  17. margin-right: auto;
  18. }
  19. .uhaul_main {
  20. color: white;
  21. font-size: 72pt;
  22. background-color: #f66711; /* uhaul orange */
  23. }
  24. .uhaul_days {
  25. font-size: 36pt;
  26. }
  27. @media screen and (max-width: 52em) {
  28. .uhaul_cont {
  29. font-size: 24pt;
  30. }
  31. .uhaul_main {
  32. font-size: 48pt;
  33. }
  34. }