diff options
author | Jedidiah Broadbent <hello@jedidiah.eu> | 2013-07-23 16:15:31 +0100 |
---|---|---|
committer | Jedidiah Broadbent <hello@jedidiah.eu> | 2013-07-23 16:15:31 +0100 |
commit | 2d423d82f08e7d2fda095b5b35c8aebd25b00e87 (patch) | |
tree | 0cdaa2baccb2181d897682e8d5928fed233b6748 /src | |
parent | 1cbe7e60df73bd03e2cc763ec6062b72a44f3fb3 (diff) |
Improve contrast when map is in background
Diffstat (limited to 'src')
-rw-r--r-- | src/css/fms.css | 8 |
1 files changed, 7 insertions, 1 deletions
diff --git a/src/css/fms.css b/src/css/fms.css index f381b61..1c02987 100644 --- a/src/css/fms.css +++ b/src/css/fms.css @@ -199,7 +199,7 @@ position: relative; width: 95%; margin: 20px auto; - background-color: rgba(255, 255, 255, 0.8); + background-color: rgba(255, 255, 255, 0.9); } .notopmargin { @@ -393,6 +393,12 @@ display:block; height: 100%; width: 100%; + transition: all 0.5s linear; + -webkit-transition: all 0.5s linear; + } + #map_box.background-map{ + -webkit-filter: blur(3px); + opacity: 0.9; } #map{ |