Compare commits

..

No commits in common. "e2200fa1cc5ca82d03cdcc4503474fb33097b9a6" and "a19db45f787c3194bd86dcfea02f84ed8291bfa4" have entirely different histories.

2 changed files with 12 additions and 14 deletions

View file

@ -19,7 +19,7 @@ const IMAGE_TRANSFORM_OPTS = {
}
};
const BASE = env.ELEVENTY_PRODUCTION ? 'https://ref-beta.sebin-nyshkim.net' : 'http://localhost:8080';
const BASE = env.ELEVENTY_PRODUCTION ? 'https://ref.sebin-nyshkim.net' : 'http://localhost:8080';
// source: https://notes.jays.net/blog/11ty/
async function getImage(type, src, key) {

View file

@ -96,30 +96,28 @@ layout: base.webc
}
}
footer p {
--text-align: center;
footer p:first-child {
text-align: center;
@media (min-width: 35em) {
text-align: start;
}
}
footer p {
margin: 0;
text-align: var(--text-align);
text-align: center;
@media (min-width: 35em) {
margin: revert;
}
}
footer p:first-child {
text-align: var(--text-align);
@media (min-width: 35em) {
--text-align: start;
}
}
footer p:last-child {
text-align: var(--text-align);
text-align: center;
@media (min-width: 35em) {
--text-align: end;
text-align: end;
}
}
</style>