server actix for cannabinieri website
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.

28 lines
594 B

3 years ago
2 years ago
3 years ago
2 years ago
3 years ago
3 years ago
3 years ago
3 years ago
2 years ago
3 years ago
2 years ago
  1. /* add canvas with network to body */
  2. @font-face {
  3. font-family: 'RobotoCondensed';
  4. src: url('/assets/fonts/RobotoCondensed-Bold.ttf ') format('truetype');
  5. font-style: normal;
  6. font-weight: 400;
  7. }
  8. @font-face {
  9. font-family: 'IBMPlexMono';
  10. src: url('/assets/fonts/IBMPlexMono-Regular.ttf') format('truetype');
  11. }
  12. html {
  13. height: 100%;
  14. }
  15. body {
  16. height: 100%;
  17. box-sizing: border-box;
  18. margin: 0;
  19. padding: 0;
  20. font-family: 'RobotoCondensed';
  21. }
  22. .wrapper {
  23. min-height: 100%;
  24. display: grid;
  25. grid-template-rows: auto 1fr auto;
  26. }