@teikei/api
Version:
Teikei API server. Teikei is the software that powers ernte-teilen.org, a website that maps out Community-supported Agriculture in Germany.
50 lines (43 loc) • 846 B
HTML
<html>
<head>
<title>Welcome to Feathers</title>
<style>
* {
margin: 0;
padding: 0;
box-sizing: border-box;
}
html, body {
font-family: 'Helvetica Neue', 'Helvetica', 'Arial', 'sans-serif';
font-weight: 400;
font-size: 16px;
color: #333;
}
.center-text {
text-align: center;
}
main {
margin-top: 100px;
padding: 20px;
}
h2 {
font-size: 2em;
font-weight: 100;
}
a {
color: #31D8A0;
text-decoration: none;
}
a:hover,
a:focus {
color: #31D8A0;
}
</style>
</head>
<body>
<main class="container">
<h2 class="center-text">Teikei</h2>
<p class="center-text">API Server</p>
</main>
</body>
</html>