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.5 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
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. /* Adjust Media Queries ! */
  36. @media screen and (min-width:1024px){
  37. .global-wrapper {
  38. display:grid;
  39. height:100vh;
  40. grid-template-columns: 1fr 1fr 1fr 1fr;
  41. grid-template-rows: 10% 22% auto 40%;
  42. grid-template-areas:
  43. "top-bar top-bar top-bar top-bar"
  44. "main-bar main-bar main-bar main-bar"
  45. "main main main main"
  46. "footer footer footer footer";
  47. font-family: 'Lato', sans-serif;
  48. font-weight: 300;
  49. }
  50. }
  51. /* Adjust Media Queries ! */
  52. @media screen and (max-width:480px) {
  53. .global-wrapper {
  54. grid-template-columns: 100%;
  55. grid-template-rows: auto auto auto;
  56. grid-template-areas:
  57. "main-bar"
  58. "main"
  59. "footer";
  60. font-family: 'Lato', sans-serif;
  61. font-weight:500;
  62. display:grid;
  63. }
  64. }