You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

style.css 1007B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364
  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. .articleentry {
  28. margin: 1em;
  29. border: 1px solid #ccc;
  30. border-radius: 2px;
  31. padding: 0.5em;
  32. }
  33. .articleentry a:link {
  34. text-decoration: none;
  35. }
  36. .badge {
  37. color: white;
  38. background-color: #f66711;
  39. }
  40. @media screen and (max-width: 52em) {
  41. .uhaul_cont {
  42. font-size: 24pt;
  43. }
  44. .uhaul_main {
  45. font-size: 48pt;
  46. }
  47. .articlereport {
  48. margin-top: 1em;
  49. }
  50. }