From 5cbc879c60b3bafe29e8f07f82e2f34b55d81a48 Mon Sep 17 00:00:00 2001 From: Matt Strapp Date: Tue, 15 Feb 2022 09:26:36 -0600 Subject: Use newer web interface --- Web/Server/static/Server.css | 64 -------------------------------------------- Web/Server/static/Server.js | 19 ------------- 2 files changed, 83 deletions(-) delete mode 100644 Web/Server/static/Server.css delete mode 100644 Web/Server/static/Server.js (limited to 'Web/Server/static') diff --git a/Web/Server/static/Server.css b/Web/Server/static/Server.css deleted file mode 100644 index 10d8b23..0000000 --- a/Web/Server/static/Server.css +++ /dev/null @@ -1,64 +0,0 @@ -.container{ - color: white; - background-color: maroon; - border-style: solid; - border: 1px solid #d5d6d2; - text-align: center; - margin:5px; -} - -.button { - background-color: gold; - border: solid; - border-color:#d5d6d2; - color: black; - padding: 15px 32px; - text-align: center; - text-decoration: none; - display: inline-block; - font-size: 16px; -} - -.button:hover{ - background-color: white; - cursor: pointer; -} - -a{ - color:white; - text-decoration:none; -} -a:hover{ - text-decoration:underline -} - -#main{ - color: black; - background-color: #d5d6d2; - border-style: solid; - border: 1px solid #d5d6d2; - text-align: center; - margin:5px; -} - -#about{ - display: none; -} - -#title{ - font-size: xx-large; -} - -#subtitle{ - font-size: large; -} - -#choose_file{ - border: none; - text-decoration: none; - display: inline-block; -} - -#submit{ - -} \ No newline at end of file diff --git a/Web/Server/static/Server.js b/Web/Server/static/Server.js deleted file mode 100644 index 6c2be18..0000000 --- a/Web/Server/static/Server.js +++ /dev/null @@ -1,19 +0,0 @@ -function showLoad(){ - var paragraph = document.getElementById("running"); - var text = document.createTextNode("Running Test, Please wait for Results"); - paragraph.appendChild(text); - - var div = document.getElementById("upload"); - if (div.style.display !== 'none') { - div.style.display = 'none'; - } -} - -function toggleAbout(){ - var x = document.getElementById("about"); - if (x.style.display === "none") { - x.style.display = "block"; - } else { - x.style.display = "none"; - } -} \ No newline at end of file -- cgit v1.2.3