feat: added beacon installer generation, download

This commit is contained in:
Andrew Rioux
2025-02-02 02:37:53 -05:00
parent b416f35b63
commit 0576c4fd3b
22 changed files with 554 additions and 87 deletions

View File

@@ -1,5 +1,6 @@
main.beacons div.categories {
padding: 10px;
overflow-y: scroll;
fieldset {
display: grid;

View File

@@ -1,5 +1,6 @@
main.beacons div.config {
padding: 10px;
overflow-y: scroll;
fieldset {
display: grid;

View File

@@ -1,4 +1,6 @@
main.beacons div.listeners {
overflow-y: scroll;
form, p, h2 {
margin: 10px;
}

View File

@@ -1,5 +1,6 @@
main.beacons div.templates {
padding: 10px;
overflow-y: scroll;
fieldset {
display: grid;

View File

@@ -70,7 +70,11 @@ main {
input[type="submit"],
input[type="button"],
button {
button,
a.button {
font-family: sans-serif;
font-size: 0.9rem;
color: black;
background-color: #fff;
border: 1px solid black;
cursor: pointer;
@@ -82,4 +86,13 @@ button {
&:hover {
background-color: #ccc;
}
&.warning {
background-color: #f00;
color: white;
&:hover {
background-color: #c00;
}
}
}