]> git.mxchange.org Git - fba.git/commitdiff
Continued:
authorRoland Häder <roland@mxchange.org>
Thu, 22 Jun 2023 16:24:48 +0000 (18:24 +0200)
committerRoland Häder <roland@mxchange.org>
Thu, 22 Jun 2023 16:36:26 +0000 (18:36 +0200)
- CSS notice box added
- text aligned to left, header to centered
- rounded corners look beautiful!

templates/base.html
templates/views/scoreboard.html

index 9d3e735f075fbd52fff6d888e818c63cf507c87d..864291bdafbdd7fea2e9e80524cc2fa51f153d55 100644 (file)
@@ -17,7 +17,7 @@
         }
 
         h1 {
-            background-color: #f0f0f0;
+            background-color: #eaeaea;
             border-radius: 5px;
             padding-left: 5px;
             padding-right: 5px;
@@ -30,7 +30,7 @@
 
         table {
             width: 100%;
-            border: 2px solid #f0f0f0;
+            border: 2px solid #eaeaea;
             border-spacing: 0px;
             border-radius: 5px;
         }
@@ -41,7 +41,7 @@
         }
 
         table tr:nth-of-type(2n), thead {
-            background-color: #f0f0f0;
+            background-color: #eaeaea;
         }
 
         table td {
             min-width: 50%;
             width: 50em;
         }
+        .notes {
+            margin-left: auto;
+            margin-right: auto;
+            margin-bottom: 20px;
+            width: 50em;
+            text-align: left;
+            border: 1px solid #eaeaea;
+            border-radius: 5px;
+        }
+        .notes > h2 {
+            margin: 0px;
+            padding: 5px;
+            background-color: #eaeaea;
+            text-align: center;
+        }
     </style>
 </head>
 
index 53cc3ec78dcb4d42556d83a03c609d1eaad58e49..bb2236b824770bcb794925b8a96a6d8b9b9bd937 100644 (file)
@@ -19,7 +19,7 @@
         <h1>TOP {{amount}} average peer count</h1>
     {% elif mode == 'obsfucator' %}
         <h1>TOP {{amount}} obsfucating software</h1>
-    {% elif mode == 'obsfucator' %}
+    {% elif mode == 'obsfucation' %}
         <h1>Obsfucation metrics</h1>
     {% endif %}
 {% endblock %}
 
 {% block footer %}
     {% if mode == 'error_code' %}
-        <h2>Please note to error codes:</h2>
-        <ul>
-            <li>Error code 999 is fake and covers a lot of reasons why the domain/instance is not reachable. Mostly that the domain is not resolvable or the server refused connection.</li>
-        </ul>
+        <div class="notes">
+            <h2>Please note to error codes:</h2>
+            <ul>
+                <li>Error code 999 is fake and covers a lot of reasons why the domain/instance is not reachable. Mostly that the domain is not resolvable or the server refused connection.</li>
+            </ul>
+        </div>
     {% elif mode == 'obsfucation' %}
-        <h2>Please note to obsfucation status:</h2>
-        <ul>
-            <li>Only supported networks are listed here.</li>
-            <li><em>None</em> means not determined yet.</li>
-        </ul>
+        <div class="notes">
+            <h2>Please note to obsfucation status:</h2>
+            <ul>
+                <li>Only supported networks are counted here.</li>
+                <li><em>None</em> means not determined yet.</li>
+            </ul>
+        </div>
     {% endif %}
     <a href="{{base_url}}/">Index</a> /
     {{ super() }}