Deleted unnecessary files
diff --git a/css/autocomplete.css b/css/autocomplete.css
deleted file mode 100644
index cb824d0..0000000
--- a/css/autocomplete.css
+++ /dev/null
@@ -1,54 +0,0 @@
-* {
- box-sizing: border-box;
-}
-
-.autocomplete {
- /*the container must be positioned relative:*/
- position: relative;
- display: inline-block;
-}
-input {
- border: 1px solid transparent;
- background-color: #f1f1f1;
- padding: 10px;
- font-size: 16px;
-}
-input[type=text] {
- background-color: #f1f1f1;
- width: 100%;
-}
-input[type=submit] {
- background-color: DodgerBlue;
- color: #fff;
- cursor: pointer;
-}
-.autocomplete-items {
- position: absolute;
- border: 1px solid #d4d4d4;
- border-bottom: none;
- border-top: none;
- z-index: 99;
- /*position the autocomplete items to be the same width as the container:*/
- top: auto;
- left: 0;
- right: 0;
- color: black;
-}
-.autocomplete-items div {
- padding: 10px;
- cursor: pointer;
- background-color: #fff;
- border-bottom: 1px solid #d4d4d4;
-}
-.autocomplete-items div:hover {
- /*when hovering an item:*/
- background-color: #e9e9e9;
-}
-.autocomplete-active {
- /*when navigating through the items using the arrow keys:*/
- background-color: DodgerBlue !important;
- color: #ffffff;
-}
-.autocomplete-year {
- color: #ccc;
-}
diff --git a/css/modal.css b/css/modal.css
deleted file mode 100644
index cdcba8c..0000000
--- a/css/modal.css
+++ /dev/null
@@ -1,38 +0,0 @@
-/* The Modal (background) */
-.modal {
- display: none; /* Hidden by default */
- position: fixed; /* Stay in place */
- z-index: 1; /* Sit on top */
- padding-top: 100px; /* Location of the box */
- left: 0;
- top: 0;
- width: 100%; /* Full width */
- height: 100%; /* Full height */
- overflow: auto; /* Enable scroll if needed */
- background-color: rgb(0,0,0); /* Fallback color */
- background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
-}
-
-/* Modal Content */
-.modal-content {
- background-color: #fefefe;
- margin: auto;
- padding: 20px;
- border: 1px solid #888;
- width: 80%;
-}
-
-/* The Close Button */
-.closeBox {
- color: #aaaaaa;
- float: right;
- font-size: 28px;
- font-weight: bold;
-}
-
-.closeBox:hover,
-.closeBox:focus {
- color: #000;
- text-decoration: none;
- cursor: pointer;
-}
\ No newline at end of file
diff --git a/js/modal.js b/js/modal.js
deleted file mode 100644
index 4138fde..0000000
--- a/js/modal.js
+++ /dev/null
@@ -1,33 +0,0 @@
-// Get the box
-var searchBox = document.getElementById('searchBox');
-
-// Get the button that opens the box
-var searchButton = document.getElementById("searchButton");
-
-// Get the <span> element that closes the box
-var closeBox = document.getElementsByClassName("closeBox")[0];
-
-// When the user clicks the button, open the box
-searchButton.onclick = function() {
- searchBox.style.display = "block";
- // Focus on the search input bar
- document.getElementById("searchInput").focus();
-}
-
-// When the user clicks on <span> (x), close the box
-closeBox.onclick = function() {
- searchBox.style.display = "none";
- // Empty the input bar
- var searchInput = document.getElementById('searchInput');
- searchInput.value = "";
-}
-
-// When the user clicks anywhere outside of the box, close it
-window.onclick = function(event) {
- if (event.target == searchBox) {
- searchBox.style.display = "none";
- // Empty the input bar
- var searchInput = document.getElementById('searchInput');
- searchInput.value = "";
- }
-}
\ No newline at end of file