patissiere/templates/index.html

48 lines
1.0 KiB
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>patissiere</title>
<style>
body {
background: #fdf6e3;
color: #4a4060;
font-family: monospace;
max-width: 700px;
margin: 2rem auto;
padding: 0 1rem;
}
h1 { color: #d4879c; }
textarea {
width: 100%;
height: 400px;
background: #fff8f0;
border: 2px solid #b48ead;
color: #4a4060;
font-family: monospace;
font-size: 14px;
padding: 8px;
box-sizing: border-box;
}
input[type=submit] {
background: #d4879c;
color: #fdf6e3;
border: none;
padding: 8px 20px;
font-family: monospace;
font-size: 14px;
cursor: pointer;
margin-top: 8px;
}
input[type=submit]:hover { background: #b48ead; }
</style>
</head>
<body>
<h1>patissiere ~</h1>
<form method="POST" action="/">
<textarea name="body" placeholder="paste something..."></textarea>
<br>
<input type="submit" value="bake it">
</form>
</body>
</html>