mirror of
https://github.com/Theodor-Springmann-Stiftung/jacoblenz.git
synced 2026-03-21 06:45:30 +00:00
+3 verzichnisse, Biographische Landkarten
This commit is contained in:
78
docs/static/css/site.css
vendored
78
docs/static/css/site.css
vendored
@@ -89,9 +89,85 @@
|
||||
} */
|
||||
|
||||
body {
|
||||
font-size: 15px;
|
||||
font-size: 17px;
|
||||
}
|
||||
|
||||
.hover-hint {
|
||||
position: relative;
|
||||
}
|
||||
|
||||
.hover-hint img {
|
||||
cursor: pointer;
|
||||
transition: box-shadow 150ms ease, transform 150ms ease;
|
||||
border: 2px solid rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
.hover-hint:hover img {
|
||||
box-shadow: 0 0 0 3px rgba(201, 88, 115, 0.6);
|
||||
transform: none;
|
||||
}
|
||||
|
||||
.map-grid {
|
||||
display: grid;
|
||||
grid-template-columns: 1fr;
|
||||
gap: 2rem;
|
||||
max-width: 980px;
|
||||
}
|
||||
|
||||
.map-card {
|
||||
background: transparent;
|
||||
border: none;
|
||||
padding: 0;
|
||||
}
|
||||
|
||||
.map-card img {
|
||||
width: 100%;
|
||||
height: auto;
|
||||
display: block;
|
||||
}
|
||||
|
||||
.map-img {
|
||||
border: 2px solid rgba(255, 255, 255, 0.85);
|
||||
}
|
||||
|
||||
.map-caption {
|
||||
margin-top: 0.4rem;
|
||||
font-size: 1rem;
|
||||
line-height: 1.45;
|
||||
}
|
||||
|
||||
.map-source {
|
||||
margin-top: 2.5rem;
|
||||
margin-bottom: 2rem;
|
||||
padding: 0.75rem 1rem;
|
||||
border: 1px solid #e2e8f0;
|
||||
background: rgba(248, 250, 252, 0.8);
|
||||
}
|
||||
|
||||
.map-source p {
|
||||
margin: 0;
|
||||
}
|
||||
|
||||
@media (min-width: 700px) {
|
||||
.map-grid-custom {
|
||||
grid-template-columns: repeat(2, minmax(0, 1fr));
|
||||
grid-template-areas:
|
||||
"a b"
|
||||
"c c"
|
||||
"d d"
|
||||
"e .";
|
||||
gap: 1.25rem;
|
||||
max-width: 1120px;
|
||||
}
|
||||
|
||||
.map-a { grid-area: a; }
|
||||
.map-b { grid-area: b; }
|
||||
.map-c { grid-area: c; }
|
||||
.map-d { grid-area: d; }
|
||||
.map-e { grid-area: e; }
|
||||
}
|
||||
|
||||
|
||||
@layer components {
|
||||
|
||||
h2 {
|
||||
|
||||
Reference in New Issue
Block a user