-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1237 from csrdelft/feature/dies2025
Nieuwe dies
- Loading branch information
Showing
18 changed files
with
3,450 additions
and
1 deletion.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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; | ||
} | ||
} |
Oops, something went wrong.