home · contact · privacy
Improve CSS.
authorChristian Heller <c.heller@plomlompom.de>
Fri, 3 Jul 2020 20:41:13 +0000 (22:41 +0200)
committerChristian Heller <c.heller@plomlompom.de>
Fri, 3 Jul 2020 20:41:13 +0000 (22:41 +0200)
enhance_table.py

index 1ba459e7e1e73240d45a409ff34539c6138e40d2..46e0b41b85b9fe5eddc1935204c435b7838ca1ce 100755 (executable)
@@ -135,9 +135,11 @@ if output_type == 'html':
 <html>
 <head>
 <style>
-table, tr, th, td { border: 1px solid black; }
+table, tr, th, td { border: 1px solid black; text-align: center; }
 .day_row:nth-child(7n+2) { background-color: yellow; }
 .district_name { writing-mode: vertical-rl; transform: rotate(180deg); }
+.bonus_data th { font-weight: normal; }
+.new_infections { font-weight: bold; }
 </style>
 <title>Berlin's Corona infection numbers, development by districts</title>
 </head>
@@ -172,10 +174,10 @@ table, tr, th, td { border: 1px solid black; }
             if 'week_incidence' in district_data:
                 week_inc = '%.1f' % district_data['week_incidence']
             print('<td>')
-            print(new_infections)
+            print('<span class="new_infections">%s</span>' % new_infections)
             if district != sum_district:
                 print('<details><summary></summary>')
-            print('<table>')
+            print('<table class="bonus_data">')
             print('<tr><th>%s</th><td>%s</td></tr>' % (long_wsum, week_sum))
             print('<tr><th>%s</th><td>%s</td></tr>' % (long_wavg, week_avg))
             print('<tr><th>%s</th><td>%s</td></tr>' % (long_winc, week_inc))