47 lines
725 B
CSS
47 lines
725 B
CSS
@import url(base.css);
|
|
|
|
main { max-width: 1100px; }
|
|
|
|
#headerpic {
|
|
position: relative;
|
|
width: min-content;
|
|
margin: auto;
|
|
}
|
|
|
|
#headerpic figcaption {
|
|
position: absolute;
|
|
bottom: 1.5em;
|
|
right: 2.5em;
|
|
font-style: italic;
|
|
}
|
|
|
|
#headerpic img {
|
|
filter: drop-shadow(0 0 30px var(--glow-col));
|
|
}
|
|
|
|
.contact {
|
|
grid-template-columns: repeat(2, auto auto);
|
|
width: 85%;
|
|
margin: auto;
|
|
}
|
|
|
|
.o {
|
|
filter:
|
|
drop-shadow(0.5px 0.5px black)
|
|
drop-shadow(-0.5px 0.5px black)
|
|
drop-shadow(-0.5px -0.5px black)
|
|
drop-shadow(0.5px -0.5px black);
|
|
}
|
|
|
|
.other {
|
|
font-style: italic;
|
|
}
|
|
dt.other {
|
|
display: flex;
|
|
justify-content: end;
|
|
align-items: center;
|
|
gap: 5px;
|
|
}
|
|
dd.other {
|
|
grid-area: auto / 2 / auto / 5;
|
|
}
|