Template:EyeGalleryItem/style.css

From Tempest's Unofficial Solar Ash Speedrunning Wiki
Jump to navigation Jump to search
.solar-eyegallery {
  margin: 16px 0;
  display: grid;
  grid-template-columns: repeat(auto-fill, 250px);
  column-gap: 16px;
  row-gap: 16px;
}

.solar-eyegallery .eye {
  max-width: 250px;
  justify-self: stretch;
  border: solid 1px var(--border-color-muted);
  position: relative;
}

.solar-eyegallery .eye img {
  max-width: 100%;
  aspect-ratio: 1.2;
  object-fit: cover;
}

.solar-eyegallery .eye-name a {
  display: block;
  width: 100%;
  box-sizing: border-box;
  padding: 8px;
  text-align: center;
}

.solar-eyegallery .eye-name a::before {
  content: ' ';
  position: absolute;
  inset: 0;
  background: white;
  opacity: .1;
  z-index: -1;
}

.solar-eyegallery .eye-name a::after {
  content:" ";
  position:absolute;
  inset:0;
}