latest working copy, file backup, tbl entry done, minor tweaks

This commit is contained in:
color.diff=auto
2021-03-22 00:15:01 -06:00
parent 9e494febda
commit d091528112
6 changed files with 73 additions and 14 deletions

View File

@@ -1,16 +1,12 @@
function val() {
w = document.getElementById("w-select");
w.value = '';
a = document.getElementById("a-select");
a.required = "required";
w.required = "";
}
function val2() {
a = document.getElementById("a-select");
a.value = '';
w = document.getElementById("w-select");
w.required = "required";
a.required = "";
}
$(document).ready(function () {

View File

@@ -35,3 +35,14 @@ option {
.col-4 {
padding: 5px;
}
.container-top {
border: 1px solid #ddd;
margin: 30px auto;
padding: 10px;
background: white;
}
body {
background: black;
}