diff --git a/_site_listings/1mb.club.md b/_site_listings/1mb.club.md
new file mode 100644
index 0000000..770c3b5
--- /dev/null
+++ b/_site_listings/1mb.club.md
@@ -0,0 +1,4 @@
+---
+pageurl: 1mb.club
+size: 76.7
+---
diff --git a/index.html b/index.html
index cefa8cc..fc9f162 100644
--- a/index.html
+++ b/index.html
@@ -16,17 +16,81 @@ summary: Personal articles, demos and occasional ramblings
Update
Due to the huge number of submissions on initial launch, requesting new sites to be added is temporarily paused. Once the backlog has been worked through, submissions will open up again. Thanks!
+ Jump to:
+ <50KB ·
+ <100KB ·
+ <250KB ·
+ <512KB ·
+ <700KB ·
+ Just Under 1MB
{% assign site_items = site.site_listings | sort: 'size' %}
+ <50KB
{% for item in site_items %}
- -
-
- {{ item.size }} kb
- {{ item.pageurl }}
-
+ {% if item.size <= 50 %}
+ -
+
+ {{ item.size }} kb
+ {{ item.pageurl }}
+
+ {% endif %}
+ {% endfor %}
+
+ <100KB
+ {% for item in site_items %}
+ {% if item.size >= 50 and item.size <=100 %}
+ -
+
+ {{ item.size }} kb
+ {{ item.pageurl }}
+
+ {% endif %}
+ {% endfor %}
+
+ <250KB
+ {% for item in site_items %}
+ {% if item.size >= 100 and item.size <=250 %}
+ -
+
+ {{ item.size }} kb
+ {{ item.pageurl }}
+
+ {% endif %}
+ {% endfor %}
+
+ <512KB
+ {% for item in site_items %}
+ {% if item.size >= 250 and item.size <=512 %}
+ -
+
+ {{ item.size }} kb
+ {{ item.pageurl }}
+
+ {% endif %}
+ {% endfor %}
+
+ <700KB
+ {% for item in site_items %}
+ {% if item.size >= 512 and item.size <=700 %}
+ -
+
+ {{ item.size }} kb
+ {{ item.pageurl }}
+
+ {% endif %}
+ {% endfor %}
+
+ Just Under 1MB
+ {% for item in site_items %}
+ {% if item.size >= 700 and item.size <=1000 %}
+ -
+
+ {{ item.size }} kb
+ {{ item.pageurl }}
+
+ {% endif %}
{% endfor %}
-
diff --git a/style.css b/style.css
index 62a921e..a7c99fd 100644
--- a/style.css
+++ b/style.css
@@ -71,6 +71,11 @@ blockquote p {
margin: 0;
}
+main h3 {
+ margin-top: 3rem;
+ padding-top: 1rem;
+}
+
footer {
border-top: 1px solid lightgrey;
margin: 3rem auto 0;