diff options
Diffstat (limited to 'poll/public/style.css')
-rw-r--r-- | poll/public/style.css | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/poll/public/style.css b/poll/public/style.css index 80f9294..bd455f4 100644 --- a/poll/public/style.css +++ b/poll/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 { main { position: absolute; - width: 40%; + width: 50%; left: 50%; top: 50%; -webkit-transform: translate(-50%, -50%); @@ -28,10 +30,11 @@ input, button, select { width: 100%; + color: #777; } @media only screen and (max-width: 700px) { main { - width: calc(100% - 50px); + width: calc(100% - 20%); } } |