From 646f783d84a6745f6372a212a18d322700a0716d Mon Sep 17 00:00:00 2001 From: Jason Williams Date: Sun, 12 Aug 2018 18:40:44 -0600 Subject: [PATCH] Added radial gradient as additional background to make map more subtle. Only visible in the center of the page now. --- www/where/index.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/www/where/index.php b/www/where/index.php index bd84faf..71f3e1a 100644 --- a/www/where/index.php +++ b/www/where/index.php @@ -33,7 +33,7 @@ p {font-size: 5vh; color: #FFFFFF; opacity: 0.5;} h1 {font-size: 13.9vh; color: #FFFFFF;} #map {width: 100; height: 100%;} - #container {position: absolute; top: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(139,51,175,0.8) 0%, rgba(0,131,214,0.8) 100%);} + #container {position: absolute; top: 0; width: 100%; height: 100%; background: linear-gradient(135deg, rgba(139,51,175,0.8) 0%, rgba(0,131,214,0.8) 100%), radial-gradient(ellipse at center, rgba(255,255,255,0) 0%, rgba(255,255,255,1) 80%);} #centered {position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%);}