Current directory: /home/klas4s23/domains/585455.klas4s23.mid-ica.nl/public_html/Gastenboek/uploads
body {
background-color: #0a2230;
/* overflow: hidden; */
}
.container {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 75px auto;
gap: 0px 0px;
grid-auto-flow: row;
grid-template-areas: "header header"
" main aside "
"main aside";
width: 100vw;
height: 100vh;
}
@media screen and (max-width: 700px) {
.container {
display: grid;
grid-template-columns: 1fr 1fr;
grid-template-rows: 75px auto;
gap: 0px 0px;
grid-auto-flow: row;
grid-template-areas: "header header"
" aside aside "
"main main";
width: 100vw;
height: 100vh;
}
.aside {
flex-direction: column;
align-items: center;
grid-area: aside;
background-color: #3e477c;
list-style: none;
opacity: 0.9;
}
.aside a {
opacity: 2;
text-decoration: none;
color: #79a1c4;
font-size: 25px;
padding-left: 10px;
padding-right: 10px;
line-height: 50px;
border: #aab2e7 solid 1px;
border-radius: 20px;
border-bottom-left-radius: 5px;
transition: all 0.2s ease-in-out;
}
.aside a:hover {
background-color: #a3cbed;
color: #2b3455;
border-color: #2b3455;
border-width: 3px;
}
.aside li {
transition: all 0.2s ease-in-out;
padding-left: 20px;
}
.aside li:hover {
padding-left: 30px;
}
.aside{
display: flex ;
}
}
.header {
grid-area: header;
background-color: #121631;
opacity: 0.97;
}
.main {
grid-area: main;
font-weight: bold;
font-size: 60px;
color: #499fdd;
margin-top: 9%;
max-width: 80%;
}
.aside {
grid-area: aside;
background-color: #3e477c;
list-style: none;
opacity: 0.9;
}
.aside a {
opacity: 2;
text-decoration: none;
color: #79a1c4;
font-size: 25px;
padding-left: 10px;
padding-right: 10px;
line-height: 50px;
border: #aab2e7 solid 1px;
border-radius: 20px;
border-bottom-left-radius: 5px;
transition: all 0.2s ease-in-out;
}
.aside a:hover {
background-color: #a3cbed;
color: #2b3455;
border-color: #2b3455;
border-width: 3px;
}
.aside li {
transition: all 0.2s ease-in-out;
padding-left: 20px;
}
.aside li:hover {
padding-left: 30px;
}