Clone
1
Basic template
FranzR edited this page 2025-11-22 12:49:51 +01:00

Style with flex

.project-container {
  display: flex;
  flex-direction: column-reverse;
}
.project-container img {max-width: 100%; height: auto; }
@media only screen and (min-width: 768px) {
  nav { flex-direction: row; }
  .project-container {
    flex-direction: row;
    column-gap: 1em;
  }
  .pagination { width: 30%; }
}