diff --git a/meshview/templates/chat.html b/meshview/templates/chat.html index 48eb783..821f601 100644 --- a/meshview/templates/chat.html +++ b/meshview/templates/chat.html @@ -5,11 +5,17 @@ min-width:10em; } .chat-packet:nth-of-type(odd){ - background-color:#1f1f1f; + background-color: #3a3a3a; /* Lighter than #2a2a2a */ +} +.chat-packet { + border-bottom: 1px solid #555; + padding: 8px; + border-radius: 8px; /* Adjust the value to make the corners more or less rounded */ } .chat-packet:nth-of-type(even){ - background-color:#181818; + background-color: #333333; /* Slightly lighter than the previous #181818 */ } + {% endblock %} diff --git a/meshview/templates/net.html b/meshview/templates/net.html index c6f63e6..b16e0db 100644 --- a/meshview/templates/net.html +++ b/meshview/templates/net.html @@ -5,18 +5,28 @@ min-width:10em; } .chat-packet:nth-of-type(odd){ - background-color:#1f1f1f; + background-color: #3a3a3a; /* Lighter than #2a2a2a */ +} +.chat-packet { + border-bottom: 1px solid #555; + padding: 8px; + border-radius: 8px; /* Adjust the value to make the corners more or less rounded */ } .chat-packet:nth-of-type(even){ - background-color:#181818; + background-color: #333333; /* Slightly lighter than the previous #181818 */ } + {% endblock %} {% block body %} -
- Total Nodes (Last 24 hours): + Total Active Nodes (Last 24 hours): {{ total_nodes }}
- Total Nodes LongFast:
+ Total Active Nodes LongFast:
- Total Nodes MediumSlow:
+ Total Active Nodes MediumSlow:
{{ total_nodes_longfast }}
({{ (total_nodes_longfast / total_nodes * 100) | round(2) }}%)
@@ -33,7 +33,7 @@
{{ total_nodes_mediumslow }}
({{ (total_nodes_mediumslow / total_nodes * 100) | round(2) }}%)