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.

101 lines
1.7 KiB

3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
3 years ago
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. .content {
  8. height: 120vh !important;
  9. width: 100vw;
  10. }
  11. .content .container {
  12. display: grid;
  13. grid-template-columns: 1fr 1fr;
  14. grid-template-rows: repeat(8, 1fr);
  15. margin-top: .2rem;
  16. font-family: 'Lato', sans-serif;;
  17. }
  18. .container img {
  19. height: 100%;
  20. z-index: 0;
  21. max-width: 100vw;
  22. grid-column: 1/3;
  23. grid-row: 1/9;
  24. justify-self: center;
  25. }
  26. .link {
  27. display: grid;
  28. grid-template-columns: repeat(2, 1fr);
  29. grid-template-rows: repeat(2, 1fr)
  30. }
  31. .link button {
  32. display: flex;
  33. align-items: center;
  34. justify-content: center;
  35. width: 2rem;
  36. height: 2rem;
  37. border-radius: 50%;
  38. border: .1rem solid hsl(300, 100%, 50%);
  39. background-color: hsl(300, 100%, 50%);
  40. }
  41. .link a {
  42. color: #fff;
  43. text-decoration: none;
  44. font-weight: 600;
  45. font-size: 1.25rem;
  46. transition: all .5s ease-in-out;
  47. }
  48. .link button:active {
  49. box-shadow: 0px 0px 10px hsl(300, 100%, 30%);
  50. }
  51. .link .sub_container {
  52. display: none;
  53. }
  54. .link .sub_container p {
  55. font-size: .65rem;
  56. text-align: center;
  57. color: #333;
  58. line-height: 2.25vh;
  59. background-color: rgba(255, 255, 255, 0.7);
  60. border-radius: .03rem;
  61. }
  62. #hemp {
  63. grid-column: 1/3;
  64. grid-row: 1;
  65. z-index: 2;
  66. }
  67. #hemp button {
  68. grid-column: 2;
  69. grid-row: 2;
  70. justify-self: start;
  71. align-self: end;
  72. margin-left: 2.4rem;
  73. margin-bottom: .2rem;
  74. }
  75. #hemp .sub_container {
  76. grid-column: 1;
  77. grid-row: 2;
  78. }
  79. @media (min-width: 992px) {
  80. .content {
  81. height: 250vh !important;
  82. margin-top: 5rem;
  83. }
  84. #hemp {
  85. z-index: 0;
  86. }
  87. }