diff --git a/_site_listings/kevq.uk.md b/_site_listings/kevq.uk.md
index dfe934b..43b6d21 100644
--- a/_site_listings/kevq.uk.md
+++ b/_site_listings/kevq.uk.md
@@ -1,4 +1,4 @@
---
pageurl: kevq.uk
-size: 166
+size: 166.0
---
diff --git a/index.html b/index.html
index 9bb92a9..fa174f9 100644
--- a/index.html
+++ b/index.html
@@ -56,7 +56,7 @@ summary: Listing all websites under 1MB in total size
{% assign site_items = site.site_listings | sort: 'size' %}
|
|
- | <50KB | |
+ | <50KB | |
{% for item in site_items %}
{% if item.size <= 50 %}
@@ -67,7 +67,7 @@ summary: Listing all websites under 1MB in total size
{% endfor %}
|
|
- | <100KB | |
+ | <100KB | |
{% for item in site_items %}
{% if item.size >= 50.1 and item.size <=100 %}
@@ -78,7 +78,7 @@ summary: Listing all websites under 1MB in total size
{% endfor %}
|
|
- | <250KB | |
+ | <250KB | |
{% for item in site_items %}
{% if item.size >= 100.1 and item.size <=250 %}
@@ -89,7 +89,7 @@ summary: Listing all websites under 1MB in total size
{% endfor %}
|
|
- | <512KB | |
+ | <512KB | |
{% for item in site_items %}
{% if item.size >= 250.1 and item.size <=512 %}
@@ -100,7 +100,7 @@ summary: Listing all websites under 1MB in total size
{% endfor %}
|
|
- | <700KB | |
+ | <700KB | |
{% for item in site_items %}
{% if item.size >= 512.1 and item.size <=700 %}
@@ -111,7 +111,7 @@ summary: Listing all websites under 1MB in total size
{% endfor %}
|
|
- | Just Under 1MB | |
+ | Just Under 1MB | |
{% for item in site_items %}
{% if item.size >= 700.1 and item.size <=1000 %}
diff --git a/style.css b/style.css
index 27ff41c..9e316ba 100644
--- a/style.css
+++ b/style.css
@@ -1,3 +1,7 @@
+body{margin:0 auto;max-width:75ch;padding:10px;}
+table{border-collapse:collapse;width:100%;}
+table tbody tr:nth-of-type(even) td{background:#f9f9f9;}
+table tbody tr.size-section td{background:#191919;color:white;}
@media (prefers-color-scheme: dark) {
body{background:#191919;filter:invert(1);}
}