diff --git a/_site_listings/uglyduck.ca.md b/_site_listings/uglyduck.ca.md
index 0c9f8ca..d44999f 100644
--- a/_site_listings/uglyduck.ca.md
+++ b/_site_listings/uglyduck.ca.md
@@ -1,4 +1,4 @@
---
pageurl: uglyduck.ca
-size: 305.7
+size: 42.1
---
diff --git a/index.html b/index.html
index 3acab6d..af78c3c 100644
--- a/index.html
+++ b/index.html
@@ -22,14 +22,12 @@ summary: Listing all websites under 1MB in total size
How can I help support this project?
- If you are feeling generous, I would greatly appreciate any donations to help support the site.
-
- - XMR:
84Pd48H5qSX2B5bBy881A73KmgdQxmRPg9pQ9faftMWEfRpQmbesiishjnYBhRy5dj6No8a1ksCYpdPbiypWxdMw3GD5zwD
- - BTC:
3JGsvjgxamQHi4VCALER4rXvnvzdWUaQGg
- - ETH:
0x5a0c2841aa63c8abd5ee9b9bd67092ecb55221c2
- - BCH:
pze5vzlh7hv9lrdj6s0q2t20ylzp7uvpvc69jkpdsw
- - Or simply buy me a coffee
-
+ If you are feeling generous, I would greatly appreciate any donations to help support the site.
+
+
+
+ Why is the members list randomized?
+ This gives visitors the ability to see interesting and new websites everytime they visit! It also prevents odd instances of "racing to the top".
@@ -42,13 +40,6 @@ summary: Listing all websites under 1MB in total size
Official Members
- Jump to:
- <50KB ·
- <100KB ·
- <250KB ·
- <512KB ·
- <700KB ·
- Just Under 1MB
@@ -57,75 +48,24 @@ summary: Listing all websites under 1MB in total size
| Size (KB) |
-
- {% assign site_items = site.site_listings | sort: 'size' %}
-
|
|
- | <50KB | |
- {% for item in site_items %}
- {% if item.size <= 50 %}
+
+ {% assign websites = site.site_listings %}
+ {% for item in websites %}
| {{ item.pageurl }} |
{{ item.size }} |
- {% endif %}
- {% endfor %}
-
-
|
|
- | <100KB | |
- {% for item in site_items %}
- {% if item.size >= 50.1 and item.size <=100 %}
-
- | {{ item.pageurl }} |
- {{ item.size }} |
-
- {% endif %}
- {% endfor %}
-
-
|
|
- | <250KB | |
- {% for item in site_items %}
- {% if item.size >= 100.1 and item.size <=250 %}
-
- | {{ item.pageurl }} |
- {{ item.size }} |
-
- {% endif %}
- {% endfor %}
-
-
|
|
- | <512KB | |
- {% for item in site_items %}
- {% if item.size >= 250.1 and item.size <=512 %}
-
- | {{ item.pageurl }} |
- {{ item.size }} |
-
- {% endif %}
- {% endfor %}
-
-
|
|
- | <700KB | |
- {% for item in site_items %}
- {% if item.size >= 512.1 and item.size <=700 %}
-
- | {{ item.pageurl }} |
- {{ item.size }} |
-
- {% endif %}
- {% endfor %}
-
-
|
|
- | Just Under 1MB | |
- {% for item in site_items %}
- {% if item.size >= 700.1 and item.size <=1000 %}
-
- | {{ item.pageurl }} |
- {{ item.size }} |
-
- {% endif %}
- {% endfor %}
+ {% endfor %}
+
diff --git a/style.css b/style.css
index bae922a..a85ebae 100644
--- a/style.css
+++ b/style.css
@@ -1,4 +1,4 @@
-body{margin:0 auto;max-width:75ch;padding:10px;}
+body{font-family:sans-serif;margin:0 auto;max-width:75ch;padding:10px;}
pre{overflow:auto;}
table{border-collapse:collapse;width:100%;}
table tbody tr:nth-of-type(even) td{background:#f9f9f9;}