Using nginx SSI, building theme.

This commit is contained in:
Bob Vandevliet 2024-06-07 20:35:55 +02:00
parent ce1bda0afd
commit bd1ff485f2
7 changed files with 132 additions and 10 deletions

View file

@ -0,0 +1,28 @@
/* Style for active link based on body class */
body.home .home-link,
body.about .about-link,
body.contact .contact-link {
color: red;
}
nav.bg-dark {
background-color: rgba(var(--bs-dark-rgb), 0.7) !important;
}
section.hero {
position: relative;
min-height: 20rem;
height: 100vh;
overflow: hidden;
/* background-color: darkred; */
}
section.hero video {
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
object-fit: cover;
z-index: -1;
}