Nessuna descrizione
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.

_featured.scss 511B

1234567891011121314151617181920
  1. /*--------------------------------------------------------------
  2. 24. Feature
  3. ----------------------------------------------------------------*/
  4. .cs_featured_container {
  5. display: grid;
  6. grid-template-columns: repeat(3, 1fr);
  7. grid-gap: 75px;
  8. @media (max-width: 1400px) {
  9. grid-gap: 40px;
  10. }
  11. @media (max-width: 1199px) {
  12. grid-gap: 24px;
  13. }
  14. @media (max-width: 991px) {
  15. grid-template-columns: repeat(2, 1fr);
  16. }
  17. @media (max-width: 575px) {
  18. grid-template-columns: repeat(1, 1fr);
  19. }
  20. }