Skip to content
Open
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
13 changes: 12 additions & 1 deletion public/arf.json
Original file line number Diff line number Diff line change
Expand Up @@ -2388,7 +2388,13 @@
"name": "Fedica",
"type": "url",
"url": "https://fedica.com/"
}]
},
{
"name": "Overpass Turbo",
"type": "url",
"url": "https://overpass-turbo.eu/"
}
]
},
{
"name": "Archive / Deleted Tweets",
Expand Down Expand Up @@ -3931,6 +3937,11 @@
"type": "url",
"url": "http://www.openstreetmap.org/#map=5/40.614/-100.679"
},
{
"name": "Overpass Turbo",
"type": "url",
"url": "https://overpass-turbo.eu/"
},
{
"name": "Flash Earth",
"type": "url",
Expand Down
47 changes: 37 additions & 10 deletions public/css/arf.css
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ body {
background-color: #ffffff;
font-size: 14px;
font-family: "Helvetica Neue", Helvetica;
color: #000;
}

#body {
Expand All @@ -16,18 +17,31 @@ body {
text-align: center;
}

.dark-Mode{
.dark-Mode {
background-color: #000;
color: #fff;
.node text {
fill: #fff;
}
.legend{
color: #fff;
}
path.link{
stroke: #444;
}
}

.dark-Mode .node text {
fill: #fff;
}

.dark-Mode .legend {
color: #fff;
}

.dark-Mode path.link {
stroke: #444;
}

.dark-Mode .legend button {
color: #fff;
background-color: #333;
border: 1px solid #555;
}

.dark-Mode .legend button:hover {
background-color: #444;
}

.legend {
Expand All @@ -39,6 +53,19 @@ body {
color: #000;
}

.legend button {
color: #000;
background-color: #f0f0f0;
border: 1px solid #ccc;
padding: 5px 10px;
border-radius: 3px;
cursor: pointer;
}

.legend button:hover {
background-color: #e0e0e0;
}

.node {
cursor: pointer;
}
Expand Down