Added validation for URL

This commit is contained in:
Andrew Bastin
2019-08-22 20:11:08 +05:30
parent 362ab73026
commit a59aba453f
3 changed files with 23 additions and 2 deletions

View File

@@ -2,6 +2,7 @@
--bg-color: #121212;
--fg-color: #fff;
--ac-color: #51FF0D;
--err-color: #FF0000;
}
* {
@@ -164,6 +165,15 @@ textarea {
font-family: monospace;
}
.error {
border: 1px solid var(--err-color);
}
.disabled {
background-color: #3C3C3C;
color: #B3B3B3;
}
label {
padding: 4px;
}