1
0
Fork 0
yummy.cricket/where.css

48 lines
725 B
CSS
Raw Normal View History

2022-05-18 08:29:00 -04:00
@import url(base.css);
2021-03-31 00:57:25 -04:00
2022-08-14 21:51:49 -04:00
main { max-width: 1100px; }
2021-03-31 00:57:25 -04:00
2022-11-10 08:09:48 -05:00
#headerpic {
position: relative;
width: min-content;
margin: auto;
}
#headerpic figcaption {
position: absolute;
2022-11-10 08:26:11 -05:00
bottom: 1.5em;
right: 2.5em;
2022-11-10 08:09:48 -05:00
font-style: italic;
}
#headerpic img {
filter: drop-shadow(0 0 30px var(--glow-col));
}
2021-03-31 00:57:25 -04:00
2022-08-14 21:51:49 -04:00
.contact {
2022-10-05 22:10:11 -04:00
grid-template-columns: repeat(2, auto auto);
2022-12-30 13:37:17 -05:00
width: 85%;
margin: auto;
2021-03-31 00:57:25 -04:00
}
2022-08-14 21:51:49 -04:00
.o {
2021-03-31 00:57:25 -04:00
filter:
2022-08-14 21:51:49 -04:00
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);
2021-03-31 00:57:25 -04:00
}
2022-12-30 13:37:17 -05:00
.other {
font-style: italic;
}
dt.other {
display: flex;
justify-content: end;
align-items: center;
gap: 5px;
}
dd.other {
grid-area: auto / 2 / auto / 5;
}