diff options
Diffstat (limited to 'quotes/public/style.css')
-rw-r--r-- | quotes/public/style.css | 10 |
1 files changed, 6 insertions, 4 deletions
diff --git a/quotes/public/style.css b/quotes/public/style.css index 6ab5ef0..2c9c695 100644 --- a/quotes/public/style.css +++ b/quotes/public/style.css @@ -4,12 +4,14 @@ body { margin: 0; height: 100%; width: 100%; - background: url(https://images.unsplash.com/photo-1544829728-e5cb9eedc20e?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1500&q=80); - background-size: cover; + background-color: #eec0c6; + background-image: linear-gradient(315deg, #eec0c6 0%, #7ee8fa 74%); } -form { +div { position: absolute; + max-height: 80%; + overflow-y: scroll; width: 30%; left: 50%; top: 50%; @@ -27,7 +29,7 @@ select { } @media only screen and (max-width: 600px) { - form { + div { width: calc(100% - 50px); } } |