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.

80 lines
1.4 KiB

3 years ago
  1. @font-face {
  2. font-family: 'Lato', sans-serif;
  3. src: url('fonts/Lato-Thin.ttf') format('truetype');
  4. font-style: normal;
  5. font-weight: 100;
  6. }
  7. *{
  8. margin:0;
  9. padding:0;
  10. box-sizing:border-box;
  11. }
  12. :root{
  13. --top_padding:5px;
  14. }
  15. html,
  16. body {
  17. width: 100%;
  18. height: 100%;
  19. font-weight:500;
  20. }
  21. #top-nav {
  22. grid-area: top-bar;
  23. display: flex;
  24. align-items: center;
  25. }
  26. #main-nav {
  27. grid-area: main-bar;
  28. }
  29. #content {
  30. grid-area: main;
  31. }
  32. #footer {
  33. grid-area:footer;
  34. }
  35. @media screen and (min-width:1024px){
  36. .global-wrapper {
  37. display:grid;
  38. height:100vh;
  39. grid-template-columns: 1fr 1fr 1fr 1fr;
  40. grid-template-rows: 10% 22% auto 40%;
  41. grid-template-areas:
  42. "top-bar top-bar top-bar top-bar"
  43. "main-bar main-bar main-bar main-bar"
  44. "main main main main"
  45. "footer footer footer footer";
  46. font-family: 'Lato', sans-serif;
  47. font-weight: 300;
  48. }
  49. }
  50. @media screen and (max-width:480px) {
  51. .global-wrapper {
  52. grid-template-columns: 100%;
  53. grid-template-rows: auto auto auto;
  54. grid-template-areas:
  55. "main-bar"
  56. "main"
  57. "footer";
  58. font-family: 'Lato', sans-serif;
  59. font-weight:500;
  60. display:grid;
  61. }
  62. }