libmedium/templates/index.html

65 lines
1.2 KiB
HTML
Raw Permalink Normal View History

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
2021-10-31 23:26:15 +05:30
<title>LibMedium</title>
</head>
<body>
2021-10-31 23:26:15 +05:30
<main>
<div class="center">
<h1>LibMedium</h1>
<p>A free and privacy-respecting medium proxy</p>
<p>
<a
2021-11-02 13:39:02 +05:30
href="/@tylerneely/fear-and-loathing-in-lock-free-programming-7158b1cdd50c"
2021-10-31 23:26:15 +05:30
>Demo Article</a
>
| <a href="SOURCE_CODE_REPLACE">Source Code</a>
2021-10-31 23:26:15 +05:30
</p>
</div>
</main>
</body>
<style>
2021-10-31 23:26:15 +05:30
* {
padding: 0;
margin: 0;
}
body {
width: 100%;
min-height: 100vh;
display: block;
}
main {
display: flex;
flex-direction: column;
align-items: center;
width: 80%;
height: 100vh;
margin: auto;
justify-content: space-between;
}
.center {
margin: auto;
display: flex;
flex-direction: column;
align-items: center;
}
h1 {
font-size: 3rem;
}
2021-11-01 08:51:25 +05:30
@media screen and (max-width: 1200px) {
main {
width: 90%;
}
img {
display: block;
}
}
</style>
</html>