diff options
author | sptaule <lecas83@gmail.com> | 2022-01-30 11:25:02 +0100 |
---|---|---|
committer | sptaule <lecas83@gmail.com> | 2022-01-30 11:25:02 +0100 |
commit | e5beba07d6b9e102cc28c7474b9db0ae11ec3c79 (patch) | |
tree | 38dc667fb81be27b3b21e5cfccbf36d5fbc8fefd /src | |
parent | f4e048647410e1655c51ef8086c714b5fdfc2cc2 (diff) | |
download | garagehq.deuxfleurs.fr-e5beba07d6b9e102cc28c7474b9db0ae11ec3c79.tar.gz garagehq.deuxfleurs.fr-e5beba07d6b9e102cc28c7474b9db0ae11ec3c79.zip |
Fix map size, requirements font, cyberduck logo, footer thanks
Diffstat (limited to 'src')
-rwxr-xr-x | src/input.css | 12 |
1 files changed, 10 insertions, 2 deletions
diff --git a/src/input.css b/src/input.css index 8cd7f3e..1f4e978 100755 --- a/src/input.css +++ b/src/input.css @@ -135,12 +135,20 @@ p > code, p > strong > code, li > code, li > strong > code { height: 70vh; } + @media screen and (max-width: 1280px) { + #map-container { + background-position: center; + background-attachment: scroll; + height: 50vh; + } + } + @media screen and (max-width: 768px) { #map-container { - background-position: 25%; + background-position: 25% 50%; background-size: auto; background-attachment: scroll; - height: 50vh; + height: 42vh; } } |