made error text red and bold

This commit is contained in:
bill bittner 2017-07-14 09:06:04 -07:00
parent c1297e9021
commit 6f2753445d
2 changed files with 9 additions and 0 deletions

View file

@ -119,6 +119,11 @@ table {
word-wrap: break-word;
}
.input-error {
font-weight: bold;
color: red;
}
@media (max-width: 1250px) {
.wrapper {

View file

@ -11,6 +11,10 @@
<script type ="text/javascript">
function focusThisInput(event){
}
function copyToClipboard(event){
var elementToCopy = event.target.dataset.elementtocopy;
var element = document.getElementById(elementToCopy);