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.

85 lines
1.3 KiB

2 years ago
  1. .footer_container {
  2. display: grid;
  3. grid-template-columns: repeat(2,1fr);
  4. grid-template-rows: repeat(3, 1fr);
  5. justify-items: center;
  6. align-items: center;
  7. text-transform: uppercase;
  8. }
  9. .footer_container p {
  10. grid-column: 1/3;
  11. grid-row: 1;
  12. color: #5c5d61;
  13. font-size: 1.35vh;
  14. }
  15. .footer_container #l1 {
  16. grid-column: 1;
  17. grid-row: 2;
  18. }
  19. .footer_container #l2 {
  20. grid-column: 2;
  21. grid-row: 2;
  22. }
  23. .footer_container #l3 {
  24. grid-column: 1/3;
  25. grid-row: 3;
  26. }
  27. a {
  28. text-decoration: none;
  29. color: #5c5d61;
  30. font-size: 1.35vh;
  31. transition: .3s;
  32. }
  33. p a {
  34. font-size: unset;
  35. color: #a8acb0;
  36. }
  37. a:active {
  38. opacity: 70%;
  39. }
  40. @media (min-width: 1024px) {
  41. .footer_container {
  42. grid-template-columns: repeat(4,1fr);
  43. grid-template-rows: 1fr;
  44. justify-items: center;
  45. align-items: center;
  46. text-transform: uppercase;
  47. }
  48. .footer_container p {
  49. grid-column: 1;
  50. grid-row: 1;
  51. color: #5c5d61;
  52. font-size: 1.35vh;
  53. }
  54. .footer_container #l1 {
  55. grid-column: 2;
  56. grid-row: 1;
  57. }
  58. .footer_container #l2 {
  59. grid-column: 3;
  60. grid-row: 1;
  61. }
  62. .footer_container #l3 {
  63. grid-column: 4;
  64. grid-row: 1;
  65. }
  66. a, p, p a {
  67. font-size: 1.5vh;
  68. }
  69. }