From 91b1f4117a37ddb83c3daae4a4475c02e6630efd Mon Sep 17 00:00:00 2001 From: Dat Nguyen Date: Sun, 1 Dec 2019 18:45:38 -0600 Subject: some more changes to make the website look better --- Web/Server/static/Server.css | 21 +++++++++++++++++++++ Web/Server/static/Server.js | 9 +++++++++ 2 files changed, 30 insertions(+) (limited to 'Web/Server/static') diff --git a/Web/Server/static/Server.css b/Web/Server/static/Server.css index 6f366ec..5db22eb 100644 --- a/Web/Server/static/Server.css +++ b/Web/Server/static/Server.css @@ -7,6 +7,27 @@ margin:5px; } +.button { + background-color: gold; + border: none; + color: white; + padding: 15px 32px; + text-align: center; + text-decoration: none; + display: inline-block; + font-size: 16px; +} + +.button:hover{ + background-color: white; + color: gold; + cursor: pointer; +} + +#about{ + display: none; +} + #title{ font-size: xx-large; } diff --git a/Web/Server/static/Server.js b/Web/Server/static/Server.js index 30274f2..129951b 100644 --- a/Web/Server/static/Server.js +++ b/Web/Server/static/Server.js @@ -7,4 +7,13 @@ function showLoad(){ 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