aboutsummaryrefslogtreecommitdiffstats
path: root/static
diff options
context:
space:
mode:
authorMatthias P. Braendli <matthias.braendli@mpb.li>2024-09-20 21:24:32 +0200
committerMatthias P. Braendli <matthias.braendli@mpb.li>2024-09-20 21:24:32 +0200
commitad30bb7aedf6b2e959a0ed90e90e2b991a69f6dc (patch)
tree72ade1a402d3e2e53cf9d976da3ca9a2b66b9a3b /static
parent3189dc23f2abf2060f591219e8256301e7c41aed (diff)
downloadodr-dabmux-gui-ad30bb7aedf6b2e959a0ed90e90e2b991a69f6dc.tar.gz
odr-dabmux-gui-ad30bb7aedf6b2e959a0ed90e90e2b991a69f6dc.tar.bz2
odr-dabmux-gui-ad30bb7aedf6b2e959a0ed90e90e2b991a69f6dc.zip
Write dabmux config, add README
Diffstat (limited to 'static')
-rw-r--r--static/settings.js1
-rw-r--r--static/style.css18
2 files changed, 5 insertions, 14 deletions
diff --git a/static/settings.js b/static/settings.js
index 7f5a067..4b917ae 100644
--- a/static/settings.js
+++ b/static/settings.js
@@ -12,6 +12,7 @@ async function btn_settings_remove_service(element_clicked) {
async function btn_settings_send() {
let data = {
'instance_name': document.getElementById('instance_name').value,
+ 'dabmux_config_location': document.getElementById('dabmux_config_location').value,
'tist': document.getElementById('tist').checked,
'tist_offset': parseInt(document.getElementById('tist_offset').value, 10),
'ensemble_id': parseInt(document.getElementById('ensemble_id').value, 16),
diff --git a/static/style.css b/static/style.css
index 39ca359..c7ab14f 100644
--- a/static/style.css
+++ b/static/style.css
@@ -1,7 +1,6 @@
:root {
--main-color:rgb(7 89 133);
--bg-color:rgb(224 242 254);
- --title-color:rgb(224 242 254);
--title-bg-color:rgb(125 211 252);
--divide-color:rgb(125 211 252);
--active-bg-color:rgb(12 74 110);
@@ -95,8 +94,9 @@ ul {
}
.text-lg {
- font-size: 1.125rem;
- line-height: 1.75rem;
+ font-size: 1.4rem;
+ line-height: 2rem;
+ font-weight: bold;
}
.head-nav-topdiv {
@@ -114,7 +114,7 @@ ul {
border-radius: 0.5rem;
margin-top: 0.5rem;
background-color: var(--title-bg-color);
- color: var(--title-color);
+ color: var(--main-color);
}
main {
@@ -122,16 +122,6 @@ main {
flex: 1 1 auto;
}
-h1 {
- font-size: 1.2rem;
- line-height: 1.75rem;
- font-weight: 700;
-}
-
-h2 {
- font-weight: 700;
-}
-
a {
color: inherit;
text-decoration: none;