certs/public/index.html
2023-09-30 21:43:38 +02:00

89 lines
1.7 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<title>Certificates / Zertifikate</title>
<style>
* {
margin: 0;
padding: 0;
gap: 0;
outline: 0;
border: 0;
box-sizing: border-box;
}
:root {
font-size: 16px;
}
html {
background-color: black;
color: white;
font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
margin: 2rem;
}
ul {
margin-top: 1rem;
list-style: none;
}
ul > li > a {
padding: 1rem 1.5rem;
display: block;
color: #ff00ff;
text-decoration: none;
border: #272727 1px solid;
border-radius: 0.5rem;
transition: border 0.2s ease-in-out;
}
.chip {
margin-left: 0.5rem;
display: inline-block;
color: #eee;
}
.chip > span:first-child {
padding: 0.25rem 0.75rem;
background-color: #353535;
border-radius: 0.5rem 0 0 0.5rem;
}
.chip > span:last-child {
padding: 0.25rem 0.75rem;
background-color: #222222;
border-radius: 0 0.5rem 0.5rem 0;
}
ul > li > a:hover {
border: #ff00ff 1px solid;
}
</style>
</head>
<body>
<h1>Certificates / Zertifikate</h1>
<ul>
<li>
<a href="/certificates/root.crt" download>
Root CA / Wurzel-Zertifizierungsstelle
<div class="chip"><span>Expiry</span><span>27.09.2033</span></div>
</a>
</li>
</ul>
</body>
</html>