Getting ready to add logic

* Empty out placeholders in fields
* Slight tweaks to page itself
* Bootstrap updated to 4.5.3
* Include uuid package
* Separate some logic in index.js to new functions
* Add default jsons, as well as code to copy it over on first launch
This commit is contained in:
CakeLancelot
2020-12-17 22:13:54 -06:00
parent 217391b95e
commit 7009328f35
12 changed files with 219 additions and 49 deletions

View File

@@ -3,12 +3,22 @@
user-select: none;
}
#server-table > .table-striped thead th {
background-color: #34476E;
}
#server-table > .table-striped tbody tr:nth-of-type(odd) {
background-color: #34476E;
}
#server-listing-placeholder > td {
background-color: #24314D;
user-select: none;
-webkit-user-select: none;
}
#server-table > .table-striped tbody tr:nth-of-type(even), th {
background-color: #34476E;
background-color: #24314D;
}
#server-table {
@@ -30,11 +40,6 @@ img {
--gray-dark: #343a40;
--primary: #6699FF;
--secondary: #384E7A;
--success: #28a745;
--info: #17a2b8;
--warning: #ffc107;
--danger: #dc3545;
--light: #f8f9fa;
--dark: #384E7A;
}
@@ -101,3 +106,11 @@ button > i {
pointer-events: none;
}
#server-listing-placeholder {
visibility: visible;
}
#of-logo {
opacity: 0.9;
}