-
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
c33fc92
commit 14a1335
Showing
7 changed files
with
510 additions
and
70 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,88 @@ | ||
/* FOOTER */ | ||
.footer { | ||
background-color: rgba(22, 22, 21, 1); | ||
color: yellow; | ||
padding: 20px 0; | ||
text-align: center; | ||
position: relative; | ||
bottom: 0; | ||
height: 150px; | ||
width: 100%; | ||
} | ||
|
||
.footer-section { | ||
display: flex; | ||
justify-content: left; | ||
align-items: center; | ||
} | ||
.section:first-child{ | ||
padding-left: 0; | ||
} | ||
.section:last-child{ | ||
padding-right: 0; | ||
} | ||
.section { | ||
flex: 1; | ||
padding: 0 15px; | ||
text-align: left; | ||
} | ||
|
||
|
||
.section h3 { | ||
font-size: 18px; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.section img { | ||
display: block; | ||
margin: 0 auto; | ||
height: auto; | ||
max-height: 40px; | ||
margin-left: 40px; | ||
margin-top: -45px; | ||
} | ||
/* Media query voor schermen met een maximale breedte van 767px (typisch mobiele apparaten) */ | ||
@media only screen and (max-width: 767px) { | ||
.footer { | ||
height: auto; | ||
position: relative; | ||
bottom: 0; | ||
width: 100%; | ||
background-color: rgba(22, 22, 21, 1); | ||
color: yellow; | ||
padding: 20px 0; | ||
text-align: center; | ||
overflow: hidden; /* Voorkom dat inhoud buiten de footer steekt */ | ||
} | ||
|
||
.footer-section { | ||
flex-direction: column; | ||
text-align: center; | ||
} | ||
|
||
.section { | ||
width: 100%; | ||
margin-bottom: 20px; | ||
} | ||
|
||
.section img { | ||
max-width: 200px; | ||
margin-top: 0; | ||
padding-right: 20px; | ||
background-color: rgba(22, 22, 21, 1); | ||
/* padding: 10px; */ | ||
margin-left: 5px; | ||
/* margin-bottom: 20px; */ | ||
} | ||
} | ||
|
||
/* Media query voor mobiele landscape-weergave */ | ||
@media only screen and (min-width: 480px) and (max-width: 767px) { | ||
.footer-section { | ||
flex-direction: row; | ||
} | ||
.section { | ||
width: auto; | ||
margin-bottom: 0; | ||
} | ||
} |
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,132 @@ | ||
/* HEAD NAVBAR / MOBILE RESPONSIVE */ | ||
header{ | ||
background-color: rgba(22, 22, 21, 1); | ||
} | ||
.nav-bar { | ||
display: flex; | ||
justify-content: space-between; | ||
align-items: center; | ||
list-style: none; | ||
padding: 15px ; | ||
|
||
} | ||
|
||
.logo img { | ||
/* max-width: 200px; | ||
height: auto; | ||
padding-right: 20px; | ||
background-color: rgba(22, 22, 21, 1); */ | ||
/* padding: 10px; */ | ||
/* margin-left: 60px; */ | ||
margin-left: 0; | ||
display: block; | ||
/* margin: 0 auto; */ | ||
height: auto; | ||
max-height: 40px; | ||
/* margin-left: 40px; */ | ||
margin-top: 0px; | ||
} | ||
|
||
.open-menu { | ||
display: none; | ||
} | ||
|
||
.menu { | ||
display: flex; | ||
/* align-items: left; */ | ||
/* margin-right: 400px; */ | ||
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; | ||
|
||
} | ||
|
||
.menu li { | ||
padding: 0 10px; | ||
|
||
} | ||
|
||
.menu li a { | ||
display: inline-block; | ||
text-decoration: none; | ||
margin-right: 10px; | ||
padding: 10px 15px; | ||
border-radius: 2px; | ||
margin-right: 5px; | ||
float: left; | ||
color: yellow; | ||
transition: 0.3s ease; | ||
} | ||
|
||
/* Hamburgermenu-stijlen voor mobiele weergave */ | ||
#check { | ||
display: none; | ||
} | ||
|
||
.menu-icon { | ||
display: none; | ||
cursor: pointer; | ||
font-size: 30px; | ||
color: white; | ||
} | ||
|
||
@media(min-width: 862px){ | ||
.menu li a { | ||
background-color: yellow; | ||
color: rgb(0, 0, 0); | ||
padding: 10px; | ||
margin: 5px; | ||
} | ||
} | ||
|
||
/* Mediaquery voor mobiele weergave */ | ||
@media (max-width: 861px) { | ||
|
||
.open-menu { | ||
color: white; | ||
font-size: 24px; | ||
cursor: pointer; | ||
display: block; | ||
|
||
|
||
} | ||
.menu { | ||
display: none; | ||
flex-direction: column; | ||
position: absolute; | ||
top: 70px; | ||
color: white; | ||
left: 0; | ||
right: 0; | ||
/* width: 1200px; */ | ||
padding: 10px; | ||
background-color: rgba(22, 22, 21, 1); | ||
box-shadow: 0 0 2px rgba(254, 234, 9, 0.449); | ||
} | ||
.logo img { | ||
max-width: 200px; | ||
height: auto; | ||
padding-right: 10px; | ||
background-color: rgba(22, 22, 21, 1); | ||
padding: 10px; | ||
margin-left: 5px; | ||
} | ||
|
||
.menu.active { | ||
display: flex; | ||
} | ||
|
||
#check:checked + .menu { | ||
display: flex; | ||
} | ||
|
||
.menu-icon { | ||
font-size: 36px; | ||
color: white; | ||
cursor: pointer; | ||
margin-right: 20px; | ||
} | ||
.menu li { | ||
|
||
padding: 10px; | ||
background-color: transparent; | ||
} | ||
} |
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,156 @@ | ||
*{ | ||
font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif; | ||
} | ||
|
||
/* p{ | ||
color: rgba(199, 205, 205, 1); | ||
} */ | ||
.section-banner p, .card-black p, .footer .section p{ | ||
color: rgba(199, 205, 205, 1); | ||
} | ||
|
||
/* voorouders */ | ||
.row-voorouders{ | ||
background-color: #161615; | ||
/* color: #ffffff; */ | ||
margin-top: 1em; | ||
margin-bottom: 1em; | ||
border-radius: 3px; | ||
} | ||
|
||
/* style row & cards */ | ||
.equal-height { | ||
display: flex; | ||
align-items: stretch; | ||
padding: 0 !important; | ||
} | ||
|
||
@media only screen and (min-width: 576px) { | ||
.equal-height .col-sm-5{ | ||
padding-left: 0; | ||
} | ||
.equal-height .col-sm-7{ | ||
padding-right: 0; | ||
} | ||
} | ||
.card-yellow{ | ||
background-color: #FDF941; | ||
color: #000000 !important; | ||
border-radius: 3px; | ||
border: none; | ||
padding: 2em; | ||
margin-bottom: 0.8em; | ||
} | ||
/* .card-yellow li{ | ||
list-style-image: url('../image/check-mark63.svg'); | ||
} */ | ||
|
||
.card-yellow ul { | ||
list-style-type: none; /* Remove default bullet point */ | ||
padding-left: 0; /* Remove any padding */ | ||
} | ||
|
||
.card-yellow li { | ||
padding-left: 25px; /* Create space for the custom icon */ | ||
position: relative; | ||
margin-top: 0.5em; | ||
} | ||
|
||
.card-yellow li::before { | ||
content: '✓'; /* Add empty content */ | ||
font-weight: 600; | ||
display: inline-block; | ||
width: 20px; /* Set the width of your custom icon */ | ||
height: 20px; /* Set the height of your custom icon */ | ||
position: absolute; | ||
left: 0; | ||
} | ||
|
||
.card-black{ | ||
background-color: #161615; | ||
color: #ffffff; | ||
border-radius: 0; | ||
border: none; | ||
padding: 2em; | ||
border-radius: 3px; | ||
} | ||
|
||
.yellow-btn{ | ||
text-decoration: none; | ||
color: #000000; | ||
background-color: #FDF941; | ||
padding: 10px 35px; | ||
border-radius: 5px; | ||
display: block; | ||
align-items: center; | ||
text-align: center; | ||
border: solid #bfbd21 1px; | ||
} | ||
.komerbij-mobile{ | ||
display: none; | ||
} | ||
.mailto{ | ||
color: #151515; | ||
} | ||
@media only screen and (max-width: 767px) { | ||
.card-yellow{ | ||
margin-bottom: 1em; | ||
} | ||
.row-voorouders{ | ||
margin-left: 0.1em; | ||
margin-right: 0.1em; | ||
} | ||
.komerbij-desktop{ | ||
display: none; | ||
} | ||
.komerbij-mobile{ | ||
display: block; | ||
margin: 0 0.1em; | ||
} | ||
.komerbij-mobile .yellow-btn{ | ||
margin-bottom: 4px; | ||
} | ||
} | ||
|
||
.col-sm-7 .row{ | ||
margin-top: 1em; | ||
} | ||
|
||
|
||
|
||
|
||
/* Bovenste sectie met geletekst enzo */ | ||
|
||
.section-banner { | ||
background-color: rgba(22, 22, 21, 1); | ||
color: white; | ||
padding: 60px 0; | ||
margin-bottom: 30px; | ||
margin-top: -16px; | ||
/* width: 100%; */ | ||
/* margin-right: -50px ; */ | ||
text-align: left; /* Tekst links uitlijnen binnen de sectie */ | ||
} | ||
.section-banner .div-banner{ | ||
max-width: 800px; | ||
} | ||
.section-banner h1 { | ||
color: yellow; | ||
font-size: 35px; | ||
margin-bottom: 10px; | ||
} | ||
|
||
.section-banner p { | ||
color: rgba(199, 205, 205, 1); | ||
font-size: 18px; | ||
margin-bottom: 10px; | ||
line-height: 1.4; | ||
} | ||
|
||
@media (min-width: 1200px) { | ||
.section-banner .container { | ||
|
||
} | ||
} | ||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Oops, something went wrong.