Skip to content
Draft
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
7 changes: 5 additions & 2 deletions docs/css/styles.css
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,11 @@ body:has(#content) {
}
#header-left {
display: flex;
flex-direction: column;
align-items: flex-start;
align-items: center;
gap: 0.75em;
}
.header-logo {
max-width: 72px;
}
#header-title {
font-size: 1.4em;
Expand Down
Binary file added docs/img/logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
2 changes: 2 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<meta charset="utf-8" />
<title>ICE Detention Map</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="img/logo.png">
<link
rel="stylesheet"
href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
Expand All @@ -19,6 +20,7 @@
<header>
<nav id="header-bar">
<div id="header-left">
<img class="header-logo" src="img/logo.png" alt="Icewatch logo"/>
<div id="header-title">ICE Detention Map</div>
</div>
<div id="header-stats"><span><strong>66149</strong> people in ICE detention</span><span><strong>78%</strong> without criminal records</span></div>
Expand Down
2 changes: 2 additions & 0 deletions src/icewatch/templates/map.html
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
<meta charset="utf-8" />
<title>ICE Detention Map</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="icon" href="img/logo.png">
<link
rel="stylesheet"
href="https://unpkg.com/leaflet@1.9.4/dist/leaflet.css"
Expand All @@ -19,6 +20,7 @@
<header>
<nav id="header-bar">
<div id="header-left">
<img class="header-logo" src="img/logo.png" alt="Icewatch logo"/>
<div id="header-title">ICE Detention Map</div>
</div>
<div id="header-stats"><span><strong>{{ total_people }}</strong> people in ICE detention</span><span><strong>{{ pct_noncriminal }}</strong> without criminal records</span></div>
Expand Down
Loading