aboutsummaryrefslogtreecommitdiffstats
path: root/Web/Server/static
diff options
context:
space:
mode:
Diffstat (limited to 'Web/Server/static')
-rw-r--r--Web/Server/static/Server.css22
-rw-r--r--Web/Server/static/Server.js4
2 files changed, 18 insertions, 8 deletions
diff --git a/Web/Server/static/Server.css b/Web/Server/static/Server.css
index 78e53c7..10d8b23 100644
--- a/Web/Server/static/Server.css
+++ b/Web/Server/static/Server.css
@@ -2,15 +2,16 @@
color: white;
background-color: maroon;
border-style: solid;
- border: 1px solid black;
+ border: 1px solid #d5d6d2;
text-align: center;
margin:5px;
}
.button {
background-color: gold;
- border: none;
- color: white;
+ border: solid;
+ border-color:#d5d6d2;
+ color: black;
padding: 15px 32px;
text-align: center;
text-decoration: none;
@@ -20,11 +21,9 @@
.button:hover{
background-color: white;
- color: gold;
cursor: pointer;
}
-
a{
color:white;
text-decoration:none;
@@ -33,6 +32,15 @@ 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;
}
@@ -46,7 +54,9 @@ a:hover{
}
#choose_file{
-
+ border: none;
+ text-decoration: none;
+ display: inline-block;
}
#submit{
diff --git a/Web/Server/static/Server.js b/Web/Server/static/Server.js
index 129951b..6c2be18 100644
--- a/Web/Server/static/Server.js
+++ b/Web/Server/static/Server.js
@@ -1,6 +1,6 @@
function showLoad(){
- var paragraph = document.getElementById("message");
- var text = document.createTextNode("RUNNING TEST");
+ var paragraph = document.getElementById("running");
+ var text = document.createTextNode("Running Test, Please wait for Results");
paragraph.appendChild(text);
var div = document.getElementById("upload");