-
-
Notifications
You must be signed in to change notification settings - Fork 60
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
14 changed files
with
786 additions
and
2,524 deletions.
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,5 @@ | ||
<p>Use the following style in a MapLibre map:</p> | ||
<pre | ||
id="style-url-pre"><code id="style-url-code">https://tiles.openfreemap.org/styles/liberty</code></pre> | ||
|
||
<style> | ||
#style-url-pre { | ||
background: #efefef; | ||
padding: 14px; | ||
font-weight: bold; | ||
} | ||
</style> | ||
<div class="container"> | ||
<p>Use the following style in a MapLibre map:</p> | ||
<pre | ||
id="style-url-pre"><code id="style-url-code">https://tiles.openfreemap.org/styles/liberty</code></pre> | ||
</div> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
--- | ||
layout: '../layouts/Layout.astro' | ||
title: 'Privacy Policy' | ||
container: true | ||
--- | ||
|
||
# OpenFreeMap and your data | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,6 @@ | ||
--- | ||
layout: '../layouts/Layout.astro' | ||
title: 'Terms of Services' | ||
container: true | ||
--- | ||
|
||
# TERMS OF SERVICES | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
@import "reset.css"; | ||
@import "global.css"; | ||
/* */ | ||
@import "map.css"; | ||
@import "donate.css"; | ||
@import "global.css"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
.col-lbl { | ||
display: block; | ||
cursor: pointer; | ||
color: #333; | ||
} | ||
|
||
.col-chk { | ||
display: none; | ||
} | ||
|
||
.col-lbl:before { | ||
content: '►'; | ||
margin-right: 1em; | ||
color: #555; | ||
font-size: 0.8em; | ||
} | ||
|
||
.col-cnt { | ||
display: none; | ||
margin: 1em 0 2em; | ||
} | ||
|
||
.col-chk:checked ~ .col-cnt { | ||
display: block; | ||
} | ||
|
||
.col-chk:checked ~ .col-lbl:before { | ||
content: '▼'; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,4 @@ | ||
#support-plans-slider { | ||
max-width: 600px; | ||
margin: 200px auto 150px; | ||
} | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.