Skip to content

Commit

Permalink
Merge pull request #1237 from csrdelft/feature/dies2025
Browse files Browse the repository at this point in the history
Nieuwe dies
  • Loading branch information
ardjuh authored Dec 13, 2024
2 parents d7e3fad + 1f0176e commit 8b8aaa4
Show file tree
Hide file tree
Showing 18 changed files with 3,450 additions and 1 deletion.
Binary file added assets/fonts/dies2025/calibri.ttf
Binary file not shown.
Binary file added assets/fonts/dies2025/constan.ttf
Binary file not shown.
58 changes: 58 additions & 0 deletions assets/scss/dies2025/colls.scss
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
@import "~bootstrap/scss/functions";
@import "~bootstrap/scss/variables";
@import "~bootstrap/scss/mixins";

// Alleen importeren wat we nodig hebben.

/* drie kolommen op grote schermen, twee kolommon op gemiddelde schermen, één kolom op mobiel */

.fluid-columns {
column-count: 3;
column-gap: 30px;

& > * {
break-inside: avoid;
page-break-inside: avoid;
}
}

.fluid-columns-4 {
column-count: 4;
column-gap: 30px;

& > * {
break-inside: avoid;
page-break-inside: avoid;
}
}

.column-split {
height: 200px;
}

@include media-breakpoint-down(lg) {
.fluid-columns {
column-count: 2;
}
.fluid-columns-4 {
column-count: 3;
}
.column-split {
height: 0;
}
}

@include media-breakpoint-down(md) {
.fluid-columns {
column-count: 1;
}
.fluid-columns-4 {
column-count: 2;
}
}

@include media-breakpoint-down(sm) {
.fluid-columns-4 {
column-count: 1;
}
}
Loading

0 comments on commit 8b8aaa4

Please sign in to comment.