Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix chevron display #6

Merged
merged 4 commits into from
Jun 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions website/assets/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -251,10 +251,9 @@ code {
}

.col-lbl:before {
content: '►';
/* Triangle pointing right */
content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="0.8em" height="0.8em" viewBox="0 0 180 180" id="U+25B6"><path d="m20,15v150l130-75" fill="%23555"/></svg>');
margin-right: 1em;
color: #555;
font-size: 0.8em;
}

.col-cnt {
Expand All @@ -267,7 +266,8 @@ code {
}

.col-chk:checked ~ .col-lbl:before {
content: '▼';
/* Triangle pointing down */
content: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" width="0.8em" height="0.8em" viewBox="0 0 180 180" id="U+25BC"><path d="m90,150 75-130H15" fill="%23555"/></svg>');
}

hr {
Expand Down
4 changes: 2 additions & 2 deletions website/blocks/main.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.

Expand All @@ -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
Expand Down
Loading