Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads
body {
margin: 0;
padding: 0;
font-family: "Agency FB", sans-serif;
font-size: 14pt;
background-image: url(https://wallpaperaccess.com/full/3211465.jpg);
}
.container {
max-width: 960px;
display: grid;
grid-template-columns: 1fr;
grid-template-areas:
"header"
"sidebar"
"main"
"footer";
margin: 0 auto;
box-shadow: none;
}
header {
background-color: darkslateblue;
color:black;
text-align: center;
padding: 10px 0;
grid-area: header;
height: fit-content;
}
footer {
grid-area: footer;
padding: 10px;
background-color: #00DAFF;
color: black;
}
.main-content {
grid-area: main;
padding: 20px;
background-color: #00BBFF;
border-left: 1px solid lightgrey;
border-right: 1px solid lightgrey;
color: black;
}
/* Stijlen voor de hamburgerknop */
.hamburger-btn {
background: transparent;
border: none;
cursor: pointer;
padding: 10px;
z-index: 2;
display: block;
margin: auto;
}
/* Stijlen voor het hamburgerpictogram */
.hamburger-btn i {
font-size: 24px;
color: #fff;
}
/* Stijlen voor het menu dat aan en uit schakelt */
nav.active {
display: block !important;
}
nav {
background-color: #00DAFF;
color: black;
padding: 10px;
position: sticky;
top: 0;
right: -250px;
display: none;
z-index: 1;
grid-area: sidebar;
}
nav a {
color: black;
text-decoration: none;
display: block;
margin-bottom: 10px;
}
nav a:hover {
text-decoration: underline;
}
.timeline {
list-style: none;
padding: 0;
display: flex;
flex-direction: column;
align-items: left;
}
.tijdstip {
list-style: disc;
margin-left: 1.3em;
}
.line {
border-left: 1px solid black;
position: absolute;
height: 240%;
margin-left: 10px;
}
.linesilvalley {
border-left: 1px solid black;
position: absolute;
height: 380%;
margin-left: 10px;
}
.timeline-item {
margin-bottom: 20px;
width: 75%;
margin-left:50px;
}
.timeline-logo {
width: 50px;
height: 50px;
margin-right: 10px;
vertical-align: middle;
}
.hall-of-fame {
list-style: none;
padding: 0;
}
.hall-of-fame-item {
margin-bottom: 40px;
display: flex;
align-items: center;
justify-content: space-between;
}
.hall-of-fame-image {
width: 100px;
height: 100px;
border-radius: 50%;
margin-right: 20px;
}
header img{
max-width: 350px;
width: 90%;
}
@media (min-width: 980px) {
.container {
margin: 10px auto 10px auto;
box-shadow: -5px 0px 5px rgba(0, 0, 0, 0.2), 5px 0px 5px rgba(0, 0, 0, 0.2);
}
}
/* mobile responsive zaken */
@media (min-width: 768px) {
.container {
grid-template-columns: 1fr 250px;
grid-template-areas:
"header header"
"main sidebar"
"footer footer";
}
nav {
display: block;
}
.hamburger-btn {
display: none;
}
.main-content {
border-right: none;
}
}
.h3 {
font-size: 14pt;
}