-
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.
chore: minor design adjustments (#16)
* chore: minor design adjustments * chore: update preview images * fix: import correct fonts * fix: attempt to fix fonts * fix: attempt to fix fonts ❓ * fix: attempt to fix fonts⁉️ * chore: improve a11y
- Loading branch information
1 parent
a350b0f
commit 0efa718
Showing
24 changed files
with
115 additions
and
38 deletions.
There are no files selected for viewing
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,12 @@ | ||
<div class='row position-relative'> | ||
<div class='col-lg-8'> | ||
<img class='img-fluid' src='https://picsum.photos/960/540' alt> | ||
<div class=' ratio ratio-16x9'> | ||
<img class='img-fluid' src='https://picsum.photos/960/540' alt> | ||
</div> | ||
</div> | ||
<div class='mt-n5 col-lg-6 position-lg-absolute end-0 top-0 mt-lg-5'> | ||
<div class='mt-n5 col-lg-6 position-lg-absolute z-1 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'> | ||
<h3 class='mb-3'>Title lorem ipsum</h3> | ||
<p class='fs-5 text-lg 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-primary align-self-center align-self-lg-start' href='#'>Weiterlesen</a> | ||
{{ content | raw }} | ||
</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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
<a href='{{ href }}' class='link fs-5'> | ||
{% if icon %} | ||
<i class='bi bi-{{ icon }} text-primary me-2' aria-hidden='true'></i> | ||
{% endif %} | ||
{{ text }} | ||
</a> |
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,9 +1,13 @@ | ||
<div class='col-12 mb-5 d-flex justify-content-between align-items-center'> | ||
<div class='col-12 mt-3 mb-4 d-flex justify-content-between align-items-center'> | ||
<h2 class='display-6 m-0'>{{ title }}</h2> | ||
|
||
{% if link is defined %} | ||
<p class='fs-5 m-0'> | ||
<a href='{{ link.href }}' class='link'><i class='bi bi-arrow-return-right me-2'></i>{{ link.text }} </a> | ||
</p> | ||
{% | ||
include 'partials::base/b_link.twig' with { | ||
href: link.href, | ||
text: link.text, | ||
icon: 'arrow-return-right' | ||
} | ||
%} | ||
{% endif %} | ||
</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
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