This commit is contained in:
Alexander 2025-06-22 11:14:02 -04:00
parent f3f4fe296f
commit 7537a968b7
8 changed files with 128 additions and 12 deletions

View file

@ -7,17 +7,27 @@
<link rel="stylesheet" href="/css/fonts.css">
<link rel="stylesheet" href="/css/layout.css">
<link rel="stylesheet" href="/css/looks.css">
<link rel="stylesheet" href="/css/inverted_colors.css">
<link rel="stylesheet" href="/css/code.css">
<link rel="icon" type="image/png" href="/assets/favicon.png">
<script>
const class_ = `font-${window.devicePixelRatio >= 1.3 ? 'hidpi' : 'lodpi'}`;
document.documentElement.className = class_;
// document.documentElement.className += ' invert'; // 'invert' to swap colors
</script>
</head>
<body>
<main class="container">
</main>
<footer class="invert">
<span class="container"
style="display: block; padding-top: 1rem; padding-bottom: 1rem; display: flex; justify-content: space-between">
<span><a href="/" class="er-color">take
me home</a></span><span style="text-align: right; flex: 1">Alexander Lucas — <a
href="mailto:iam@acl.cool" class="er-color">iam@acl.cool</a></span>
</span>
</footer>
</body>
</html>