Files
bonob/web/views/layout.eta
2021-03-02 11:54:27 +11:00

36 lines
519 B
Plaintext

<!DOCTYPE html>
<html lang="en">
<head>
<title><%= it.title || "bonob" %></title>
<style>
body {
font-family: -apple-system,BlinkMacSystemFont,"Segoe UI","Roboto","Oxygen","Ubuntu","Cantarell","Fira Sans","Droid Sans","Helvetica Neue",sans-serif;
}
div#content {
margin: auto;
width: 60%;
}
h1 {
font-size: 700%;
}
label {
font-size: 300%;
}
input {
font-size: 300%;
width: 80%;
}
input#submit {
margin-top: 100px
}
</style>
</head>
<body>
<%~ it.body %>
</body>
</html>