From 4403baefbbe2a5e80e54d1946e6fe8ec2ebc74a4 Mon Sep 17 00:00:00 2001 From: Nicholas Pease Date: Mon, 31 May 2021 23:39:07 -0700 Subject: [PATCH] External Mode Added --- css/style.css | 45 +++++++++++++++++++++++++++++++++++++++++- gmap.html | 11 +++++++++++ images/connection.png | Bin 0 -> 1258 bytes js/script2.js | 2 +- 4 files changed, 56 insertions(+), 2 deletions(-) create mode 100644 images/connection.png diff --git a/css/style.css b/css/style.css index 41e6e52..7c6bdbc 100644 --- a/css/style.css +++ b/css/style.css @@ -509,6 +509,12 @@ td#seen { margin: auto; } +#external_mode_button { + position: relative; + left: 50%; + right: 50%; +} + #settingstext>table>tbody>tr>td { padding: 15px; } @@ -692,4 +698,41 @@ td#seen { position: absolute; top: 51%; left: 69%; -} \ No newline at end of file +} + +#external_connected { + width: 100%; + height: 100%; + background-color: black; + color: red; + text-align: center; + font-size: xx-large; + font-weight: bold; + +} + +#external_title { + animation: blinkingText 1s infinite; + position: absolute; + top: 55%; + left: 35%; +} + +#external_image { + animation: blinkingText 1s infinite; + position: absolute; + top: 40%; + left: 48%; +} + +@keyframes blinkingText { + + 0% { + opacity: 0; + } + 50% { + opacity: 1; + } + 100% { + opacity: 0; + } \ No newline at end of file diff --git a/gmap.html b/gmap.html index ad47cb2..2de6460 100644 --- a/gmap.html +++ b/gmap.html @@ -57,6 +57,10 @@ +