-
Notifications
You must be signed in to change notification settings - Fork 0
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
ce5afb0
commit 12e75e5
Showing
8 changed files
with
127 additions
and
4 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 |
---|---|---|
@@ -0,0 +1,22 @@ | ||
<header class="template-header"> | ||
<div class="template-header-wrapper"> | ||
<div class="template-header-container"> | ||
<div class="template-header-content"> | ||
<h1 i18n>Template</h1> | ||
<p>Dieser Text beschreibt das Thema der Seite und führt in es ein. Er ist typischerweise etwas | ||
länger und umfasst somit einige Sätze. Manche dieser Sätze haben vielen Kommata, andere nicht. | ||
Es können längere und kürzere Sätze dort vorkommen.</p> | ||
</div> | ||
</div> | ||
</div> | ||
</header> | ||
<div class="portal-plus-filterbar-wrapper"> | ||
<div class="fachportal-filterbar"></div> | ||
<div class="portal-wrapper"> | ||
<div class="portal-wrapper-left"> | ||
<div class="fachportal-header-accordion"> | ||
</div> | ||
</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,78 @@ | ||
:host { | ||
display: flex; | ||
flex-direction: column; | ||
padding: 20px; | ||
max-width: 800px; | ||
margin: auto; | ||
} | ||
|
||
.template-header { | ||
background-color: #ec4a70; | ||
margin-left: calc(50% - 50vw); | ||
margin-right: calc(50% - 50vw); | ||
.template-header-wrapper { | ||
display: flex; | ||
justify-content: space-around; | ||
position: relative; | ||
max-width: 1200px; | ||
margin: 0 auto; | ||
padding: 24px 36px; | ||
padding-bottom: 24px; | ||
padding-bottom: 0; | ||
transition: 0.3s; | ||
.template-header-container { | ||
display: flex; | ||
flex-direction: column; | ||
justify-content: space-between; | ||
width: 70%; | ||
background: #ffffff; | ||
border-radius: 24px 24px 0px 0px; | ||
.template-header-content { | ||
display: flex; | ||
flex-direction: column; | ||
margin: 32px 0; | ||
padding: 0 64px; | ||
h1 { | ||
font-family: "Montserrat-Medium", "Helvetica Neue", Helvetica, Roboto, Arial, sans-serif; | ||
font-size: 40px; | ||
font-weight: normal; | ||
line-height: 1.3; | ||
color: #313131; | ||
margin-bottom: 0.5em; | ||
} | ||
} | ||
} | ||
} | ||
} | ||
|
||
.portal-plus-filterbar-wrapper { | ||
display: block; | ||
.portal-wrapper { | ||
display: flex; | ||
justify-content: center; | ||
max-width: initial; | ||
background: white; | ||
margin: 0 auto; | ||
padding-bottom: 0.5em; | ||
transition: 0.3s; | ||
.portal-wrapper-left { | ||
margin: 0.5em; | ||
width: 0; | ||
flex-grow: 1; | ||
max-width: 1200px; | ||
background: #f4f4f4; | ||
.fachportal-header-accordion { | ||
background: white; | ||
width: 100%; | ||
padding-top: 42px; | ||
.wlo-accordion-wrapper { | ||
background-color: rgba(236,74,112, 0.2); | ||
position: relative; | ||
width: 100%; | ||
padding: 0 0 24px; | ||
border-radius: 24px 24px 0px 0px; | ||
} | ||
} | ||
} | ||
} | ||
} |
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,12 @@ | ||
import {Component} from '@angular/core'; | ||
import {SharedModule} from "../shared/shared.module"; | ||
|
||
@Component({ | ||
standalone: true, | ||
imports: [SharedModule], | ||
selector: 'app-template', | ||
templateUrl: './template.component.html', | ||
styleUrls: ['./template.component.scss'], | ||
}) | ||
export class TemplateComponent { | ||
} |
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