diff --git a/template/header.html b/template/header.html index 44a2be9..af8f51b 100644 --- a/template/header.html +++ b/template/header.html @@ -10,6 +10,14 @@ padding: 0; outline: none; } + html, body { + height: 100%; + } + body { + display: flex; + align-items: center; + justify-content: center; + } ul { list-style-type: none; overflow: auto; @@ -42,13 +50,6 @@ body { background-color: #11111b; } - #container { - position: fixed; - display: block; - top: 50%; - left: 50%; - transform: translate(-50%, -50%); - } input { width: 100%; background-color: #11111b; @@ -61,13 +62,13 @@ margin-top: 20px; text-align: center; } - ::-moz-placeholder { + input::placeholder { color: #313244; opacity: 1; } -
+