80 lines
1.4 KiB
CSS
80 lines
1.4 KiB
CSS
:root {
|
|
--parvus-background-color: #161618;
|
|
--parvus-color: #f2f5f4;
|
|
--parvus-caption-color: #f2f5f4;
|
|
--parvus-btn-background-color: #F5A9B8;
|
|
--parvus-btn-color: #ffffff;
|
|
--parvus-btn-disabled-background-color: #5BCEFA;
|
|
--parvus-btn-disabled-color: #161618;
|
|
--img-height: 12.5em;
|
|
--max-img-width: 22em; /* So breit wie das breiteste Bild */
|
|
}
|
|
|
|
|
|
body {
|
|
background-color: #161618;
|
|
color: #f2f5f4;
|
|
}
|
|
|
|
a:hover {
|
|
color: #f2f5f4;
|
|
}
|
|
|
|
a.lightbox {
|
|
margin: 10px;
|
|
}
|
|
|
|
.parvus-trigger:has(img) .parvus-zoom__indicator {
|
|
display: none;
|
|
}
|
|
|
|
.image-box {
|
|
height: var(--img-height);
|
|
width: var(--max-img-width);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
background-color: #222222;
|
|
border: 1px solid #222222;
|
|
border-radius: 0.5rem;
|
|
|
|
}
|
|
|
|
.image-box img {
|
|
max-height: 100%;
|
|
max-width: 100%;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.page-title {
|
|
padding-bottom: 3em;
|
|
color: #F5A9B8;
|
|
}
|
|
|
|
.logo {
|
|
height: 8em;
|
|
width: auto;
|
|
}
|
|
|
|
a.svg-link {
|
|
display: inline-block;
|
|
line-height: 0;
|
|
padding: 0;
|
|
margin: 0;
|
|
}
|
|
|
|
a.svg-link svg {
|
|
display: block;
|
|
width: 3em;
|
|
height: auto;
|
|
object-fit: contain;
|
|
}
|
|
|
|
.footer {
|
|
color: #f2f5f4;
|
|
text-align: center;
|
|
margin: 25px auto;
|
|
margin-top: 20px;
|
|
width: 90%;
|
|
max-width: 500px;
|
|
} |