Includes significant breaking changes. Default port and transportation changed to http via port 80 Names of environment variables have changed.
13 lines
562 B
Twig
13 lines
562 B
Twig
<style>
|
|
* { margin: 0; padding: 0.25em; }
|
|
html { background-color: {{ env.bg_color }}; color: {{ env.fg_color }}; display: table;
|
|
font-family: sans-serif; font-size: 1.5em; height: 100%; padding: 0; width: 100%; }
|
|
body { display: table-cell; vertical-align: middle; }
|
|
h1 { font-size: 2.5em; font-weight: normal; text-align: center; }
|
|
p { color: {{ env.error_color }}; text-align: center; }
|
|
form { display: flex; flex-wrap: wrap; justify-content: center; }
|
|
form div { width: 45%; }
|
|
div.right { text-align: right; }
|
|
div.center { text-align: center; }
|
|
</style>
|