diff options
author | Marvin Borner | 2020-10-10 23:30:52 +0200 |
---|---|---|
committer | Marvin Borner | 2020-10-10 23:30:52 +0200 |
commit | df14518590680fbf54d48a494c873fd7e599e021 (patch) | |
tree | d1403fbc76d667382de1bdc17f521e422129dd8b /auth/public | |
parent | d32ffe5d0e44f591adcf692b98a43efb5e65187a (diff) |
Improved frontend (not sure about #777)
Diffstat (limited to 'auth/public')
-rw-r--r-- | auth/public/style.css | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/auth/public/style.css b/auth/public/style.css index 413ace1..26622e1 100644 --- a/auth/public/style.css +++ b/auth/public/style.css @@ -4,6 +4,8 @@ body { margin: 0; height: 100%; width: 100%; + color: #777; + line-height: 1.6; background-color: #eec0c6; background-image: linear-gradient(315deg, #eec0c6 0%, #7ee8fa 74%); } @@ -14,7 +16,7 @@ div { form { position: absolute; - width: 40%; + width: 50%; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); @@ -31,6 +33,6 @@ button { @media only screen and (max-width: 700px) { form { - width: calc(100% - 50px); + width: calc(100% - 20%); } } |