Add style.css based on the stylesheet from the exozyme website

This commit is contained in:
Anthony Wang 2022-07-08 14:30:51 -05:00
parent f439fc6d70
commit f02ace5910
Signed by: a
GPG Key ID: BC96B00AEC5F2D76
2 changed files with 32 additions and 1 deletions

View File

@ -7,7 +7,10 @@
</head>
<body>
<h1>Killed by exozyme</h1>
<p>A parody of <a href="https://killedbygoogle.com/">Killed by Google</a></p>
<img src="https://raw.githubusercontent.com/codyogden/killedbygoogle/main/assets/tombstone.svg" width=180>
<p>
A parody of <a href="https://killedbygoogle.com/">Killed by Google</a>.
</p>
<p>
<b>Pi-hole: 2021-04-05 to 2021-04-05</b> Purged because it doesn't get along well with dnsmasq.
</p>
@ -77,5 +80,8 @@
<p>
<b>The exozyme API: 2021-11-22 to 2022-06-25</b> A Python script with <a href="https://git.exozy.me/exozyme/exozyme/issues/162">way too many security holes</a>. I'm surprised no one got root by exploiting our API. Or maybe they did and we haven't found out yet...
</p>
<p>
<a href="https://git.exozy.me/Ta180m/killedbyexozyme">Source code</a> licensed under the APGL why not.
</p>
</body>
</html>

25
style.css Normal file
View File

@ -0,0 +1,25 @@
/* Dark mode */
@media (prefers-color-scheme: dark) {
body {
background-color: #111111;
color: #cccccc;
}
}
body {
font-family: DejaVu Sans Mono, Noto Sans Mono, Hack, monospace;
width: 720px;
margin-left: auto;
margin-right: auto;
text-align: center;
/* Disable font boosting */
-webkit-text-size-adjust: none;
-moz-text-size-adjust: none;
-ms-text-size-adjust: none;
}
p {
text-align: left;
line-height: 150%;
}