Skip to content

Commit

Permalink
added pages
Browse files Browse the repository at this point in the history
  • Loading branch information
Bjorn Zschernack committed Nov 20, 2023
1 parent c45a656 commit eb65a84
Show file tree
Hide file tree
Showing 4 changed files with 116 additions and 9 deletions.
15 changes: 12 additions & 3 deletions scss/includes/_main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ body {
font-size: 16px;
color: $copyblue;

h1, h2, h3 {
h1, h2, h3, h4 {
font-family: 'BarlowBold';

&.topline{
Expand All @@ -26,13 +26,22 @@ body {
&.white {
color: white;
}
&.fw500{
font-weight: 500;
font-family: 'BarlowCondensed';
}
&.fs16{
font-size: 16px;
}

&.fs18{
font-size: 18px;
}
&.fs36{
font-size: 36px;
}
}


}

#page-wrap {
max-width: 1320px;
Expand Down
45 changes: 44 additions & 1 deletion scss/includes/_wehiko.scss
Original file line number Diff line number Diff line change
Expand Up @@ -66,4 +66,47 @@

}
}
}
}

#wehiko-app {
background-color: #fff;
padding-top: 1.5rem!important;
padding-bottom: 1.5rem!important;
padding-right: 3rem!important;
padding-left: 3rem!important;
margin-top: -20px;
margin-bottom: 40px;
box-shadow: 0 33px 36px 0 rgba(93, 108, 123, 0.08);
&:after{
content: ' ';
display: block;
background: transparent;
height: 20px;
}
}

#wehiko-app input {
height: 40px;
margin: 0 0 0 10px;
box-sizing: border-box;
outline: none;
border: 0;
text-overflow: ellipsis;
width: 100%;
padding: 15px !important;

background-color: #fff;
max-width: 100%;


}

div[class*="_dropdown_"]{
border:1px solid #000 !important;
border-radius: 0 !important;padding: 10px 15px !important;
color: rgba(0, 0, 0, 0.5) !important;
margin-bottom: 30px;;
}
div[class*="_fineGrain_12ibt_29"]{
column-gap: 20px !important
}
60 changes: 56 additions & 4 deletions scss/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -23,21 +23,31 @@ body {
font-size: 16px;
color: #062b4d;
}
body h1, body h2, body h3 {
body h1, body h2, body h3, body h4 {
font-family: "BarlowBold";
}
body h1.topline:before, body h2.topline:before, body h3.topline:before {
body h1.topline:before, body h2.topline:before, body h3.topline:before, body h4.topline:before {
content: " ";
width: 35px;
height: 5px;
margin: 7.8px 16.3px 30.2px 0;
background-color: #e8a422;
display: block;
}
body h1.white, body h2.white, body h3.white {
body h1.white, body h2.white, body h3.white, body h4.white {
color: white;
}
body h1.fs36, body h2.fs36, body h3.fs36 {
body h1.fw500, body h2.fw500, body h3.fw500, body h4.fw500 {
font-weight: 500;
font-family: "BarlowCondensed";
}
body h1.fs16, body h2.fs16, body h3.fs16, body h4.fs16 {
font-size: 16px;
}
body h1.fs18, body h2.fs18, body h3.fs18, body h4.fs18 {
font-size: 18px;
}
body h1.fs36, body h2.fs36, body h3.fs36, body h4.fs36 {
font-size: 36px;
}
body #page-wrap {
Expand Down Expand Up @@ -558,4 +568,46 @@ h2.content-h2:after {
color: rgba(0, 0, 0, 0.6);
margin-right: 20px;
display: block;
}

#wehiko-app {
background-color: #fff;
padding-top: 1.5rem !important;
padding-bottom: 1.5rem !important;
padding-right: 3rem !important;
padding-left: 3rem !important;
margin-top: -20px;
margin-bottom: 40px;
box-shadow: 0 33px 36px 0 rgba(93, 108, 123, 0.08);
}
#wehiko-app:after {
content: " ";
display: block;
background: transparent;
height: 20px;
}

#wehiko-app input {
height: 40px;
margin: 0 0 0 10px;
box-sizing: border-box;
outline: none;
border: 0;
text-overflow: ellipsis;
width: 100%;
padding: 15px !important;
background-color: #fff;
max-width: 100%;
}

div[class*=_dropdown_] {
border: 1px solid #000 !important;
border-radius: 0 !important;
padding: 10px 15px !important;
color: rgba(0, 0, 0, 0.5) !important;
margin-bottom: 30px;
}

div[class*=_fineGrain_12ibt_29] {
column-gap: 20px !important;
}
5 changes: 4 additions & 1 deletion template-parts/header/pageheader.php
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,10 @@


<div class="row">
<div class="col-12 bg-white">
<div class="col-12 p-0 mt-5">
<div class="w-100 bg-white px-5 py-4">
<h3 class="fs18 fw500"><?php echo get_post_meta($post->ID, 'headeruberschrift', true); ?></h3>
</div>
<?php echo apply_filters('the_content', get_post_meta($post->ID, 'headerinhalt', true)); ?>
</div>
</div>
Expand Down

0 comments on commit eb65a84

Please sign in to comment.