mirror of
https://github.com/wkulhanek/bonob.git
synced 2025-12-21 17:33:29 +01:00
50 lines
780 B
Plaintext
50 lines
780 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
|
|
}
|
|
|
|
.one-word-per-line {
|
|
word-spacing: 100000px;
|
|
}
|
|
|
|
.login{
|
|
width: min-intrinsic;
|
|
width: -webkit-min-content;
|
|
width: -moz-min-content;
|
|
width: min-content;
|
|
display: table-caption;
|
|
display: -ms-grid;
|
|
-ms-grid-columns: min-content;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<%~ it.body %>
|
|
</body>
|
|
</html> |