diff options
Diffstat (limited to 'profile/public/style.css')
-rw-r--r-- | profile/public/style.css | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/profile/public/style.css b/profile/public/style.css index e674e71..0ea9c37 100644 --- a/profile/public/style.css +++ b/profile/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; - max-height: 80%; + max-height: calc(100% - 140px); overflow-y: auto; width: 50%; left: 50%; @@ -39,6 +41,6 @@ img { @media only screen and (max-width: 600px) { main { - width: calc(100% - 50px); + width: calc(100% - 20%); } } |