-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
a79526a
commit caa8ad6
Showing
16 changed files
with
162 additions
and
61 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
@@ -1,27 +1,58 @@ | ||
<header class='header py-3 mb-5 border-bottom'> | ||
<nav class='container d-flex flex-wrap justify-content-center'> | ||
<header class='header mb-5 border-bottom'> | ||
<nav class='navbar navbar-expand-xl p-3 container d-flex justify-content-between'> | ||
<a | ||
href='./' | ||
aria-current='page' | ||
class='d-flex align-items-center mb-3 mb-md-0 me-md-auto text-dark text-decoration-none fs-4' | ||
class='d-flex align-items-center me-md-auto text-dark text-decoration-none' | ||
> | ||
<img class='h-full' src='./assets/odk-logo.svg' alt='Stadt Koeln Logo'> | ||
</a> | ||
|
||
<ul class='nav'> | ||
<li class='nav-item fs-5'> | ||
<button toggle-dark-mode class='btn nav-link' aria-label='Toggle dark mode'> | ||
<i class='bi bi-moon-fill'></i> | ||
</button> | ||
</li> | ||
<li class='nav-item'><a href='./dataset-overview' class='nav-link fs-5'>Daten</a></li> | ||
<li class='nav-item'><a href='#' class='nav-link fs-5'>News</a></li> | ||
<li class='nav-item'><a href='#' class='nav-link fs-5'>Herausgeber</a></li> | ||
<li class='nav-item'><a href='./apps' class='nav-link fs-5'>Apps</a></li> | ||
<li class='nav-item'><a href='#' class='nav-link fs-5'>Anfragen</a></li> | ||
<li class='nav-item fs-5'> | ||
<a href='./dataset-overview' class='nav-link' aria-label='search'><i class='bi bi-search'></i></a> | ||
</li> | ||
</ul> | ||
<div class='d-flex align-items-center gap-4'> | ||
<div id='header-nav' class='offcanvas offcanvas-end' aria-modal='true' role='dialog'> | ||
<div class='offcanvas-header'> | ||
<h5 class='offcanvas-title'>Stadt Koeln</h5> | ||
<button type='button' class='btn btn-close' data-bs-dismiss='offcanvas' aria-label='Close'> | ||
<i class='bi bi-x-lg'></i> | ||
</button> | ||
</div> | ||
<div class='offcanvas-body'> | ||
<ul class='nav flex-column flex-xl-row fs-5'> | ||
<li> | ||
<button toggle-dark-mode class='btn nav-link rounded-0' aria-label='Toggle dark mode'> | ||
<i class='bi bi-moon-fill'></i> | ||
</button> | ||
</li> | ||
<li><a href='./dataset-overview' class='nav-link'>Daten</a></li> | ||
<li><a href='#' class='nav-link'>News</a></li> | ||
<li><a href='#' class='nav-link'>Herausgeber</a></li> | ||
<li><a href='./apps' class='nav-link'>Apps</a></li> | ||
<li><a href='#' class='nav-link'>Anfragen</a></li> | ||
</ul> | ||
</div> | ||
</div> | ||
|
||
<button | ||
class='navbar-toggler btn btn-sm btn-outline-light' | ||
data-bs-toggle='offcanvas' | ||
data-bs-target='#header-nav' | ||
> | ||
<i class='bi bi-list fs-4'></i> | ||
</button> | ||
|
||
<form action='./dataset-overview' class='d-none d-lg-flex gap-2'> | ||
<input | ||
class='form-control mr-sm-2' | ||
type='search' | ||
placeholder='Datensatze suchen' | ||
aria-label='Datensatze suchen' | ||
> | ||
<button class='btn btn-outline-light' type='submit'>Search</button> | ||
</form> | ||
|
||
<a href='./dataset-overview' class='link d-block d-lg-none fs-3'> | ||
<i class='bi bi-search'></i> | ||
</a> | ||
</div> | ||
</nav> | ||
</header> |
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 |
---|---|---|
@@ -1,15 +1,15 @@ | ||
<div class='row position-relative'> | ||
<div class='col-8'> | ||
<div class='col-lg-8'> | ||
<img class='img-fluid' src='https://picsum.photos/960/540' alt='Virtual Identity AG'> | ||
</div> | ||
<div class='col-6 position-absolute end-0 top-0 mt-5'> | ||
<div class='card-body text-bg-primary p-4'> | ||
<div class='mt-n5 col-lg-6 position-lg-absolute end-0 top-0 mt-lg-5'> | ||
<div class='card-body text-bg-primary p-4 mx-4 mx-lg-0 d-flex flex-column'> | ||
<h5 class='mb-3'>Titel lorem ipsum</h5> | ||
<p class='mb-3'> | ||
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et | ||
dolore magna aliquyam erat, sed diam voluptua... | ||
</p> | ||
<a class='btn btn-secondary' href='#'> Weiterlesen </a> | ||
<a class='btn btn-secondary align-self-center align-self-lg-start' href='#'>Weiterlesen</a> | ||
</div> | ||
</div> | ||
</div> |
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
File renamed without changes.
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,4 @@ | ||
@import 'theme'; | ||
@import 'icons'; | ||
@import 'positions'; | ||
@import 'ratio'; |
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,11 @@ | ||
$positions: (absolute, relative, fixed, sticky); | ||
|
||
@each $breakpoint, $breakpoint-size in $grid-breakpoints { | ||
@each $position in $positions { | ||
.position-#{$breakpoint}-#{$position} { | ||
@include media-breakpoint-up($breakpoint) { | ||
position: #{$position}; | ||
} | ||
} | ||
} | ||
} |
File renamed without changes.
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
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
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
.form-control { | ||
&:focus { | ||
border-color: var(--primary); | ||
box-shadow: 0 0 0 0.25rem rgba(var(--primary-shadow-rgb), 0.25); | ||
box-shadow: 0 0 0 var(--focus-ring-width) var(--focus-ring-color); | ||
} | ||
} |
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
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
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
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
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