From b355fb1c0a490ea51d751a413da183efc83c5d31 Mon Sep 17 00:00:00 2001 From: Aphanite Date: Wed, 12 Jun 2024 13:45:51 +0200 Subject: [PATCH 1/3] Change unicode characters to svg --- website/assets/style.css | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/website/assets/style.css b/website/assets/style.css index 7ad3423..d0f064e 100644 --- a/website/assets/style.css +++ b/website/assets/style.css @@ -251,10 +251,9 @@ code { } .col-lbl:before { - content: '►'; + /* Triangle pointing right */ + content: url('data:image/svg+xml;utf8,'); margin-right: 1em; - color: #555; - font-size: 0.8em; } .col-cnt { @@ -267,7 +266,8 @@ code { } .col-chk:checked ~ .col-lbl:before { - content: '▼'; + /* Triangle pointing down */ + content: url('data:image/svg+xml;utf8,'); } hr { From 1c9b257b0015f17674c7fffa10c036721d0f383b Mon Sep 17 00:00:00 2001 From: Aphanite Date: Wed, 12 Jun 2024 13:50:28 +0200 Subject: [PATCH 2/3] Phrasing suggestion --- website/blocks/main.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/blocks/main.md b/website/blocks/main.md index 13bb159..054ce7b 100644 --- a/website/blocks/main.md +++ b/website/blocks/main.md @@ -48,7 +48,7 @@ I'll share more about the reasons in a future [blog post](https://blog.hyperknot ## How can this work? How can a one-person project offer unlimited map hosting for free? -There is no technical reason why map hosting costs as much as it does today. Vector tiles are just static files. OK, serving 300 million files is not easy, but at the end of the day, they are just files. +There is no technical reason why map hosting costs as much as it does today. Vector tiles are just static files. Sure, serving 300 million files is not easy, but at the end of the day, they are just files. Financially, the plan is to keep renting servers until they cover the bandwidth. I believe it can be self-sustainable if enough people subscribe to the support plans. @@ -72,7 +72,7 @@ The [styles](https://github.com/hyperknot/openfreemap-styles) are forked and hea ## Domains -`tiles.openfreemap.org` - Cloudflare proxied +`tiles.openfreemap.org` - Cloudflare proxied `direct.openfreemap.org` - direct connection, Round-Robin DNS ## Attribution From bb56a6ae6abeba4edf473f4b45408f9defe7b09b Mon Sep 17 00:00:00 2001 From: Aphanite Date: Wed, 12 Jun 2024 13:58:49 +0200 Subject: [PATCH 3/3] Apply grey fill color --- website/assets/style.css | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/website/assets/style.css b/website/assets/style.css index d0f064e..1eaaf6e 100644 --- a/website/assets/style.css +++ b/website/assets/style.css @@ -252,7 +252,7 @@ code { .col-lbl:before { /* Triangle pointing right */ - content: url('data:image/svg+xml;utf8,'); + content: url('data:image/svg+xml;utf8,'); margin-right: 1em; } @@ -267,7 +267,7 @@ code { .col-chk:checked ~ .col-lbl:before { /* Triangle pointing down */ - content: url('data:image/svg+xml;utf8,'); + content: url('data:image/svg+xml;utf8,'); } hr {