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.

22 lines
475 B

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