-
Notifications
You must be signed in to change notification settings - Fork 10
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
1 parent
5393706
commit d68701a
Showing
8 changed files
with
567 additions
and
536 deletions.
There are no files selected for viewing
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
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,67 @@ | ||
html, | ||
body { | ||
height: 100%; /* Ensure the parent elements have a height so that the map can take up 100% correctly */ | ||
margin: 0; /* Remove default margins to prevent scrolling */ | ||
overflow: hidden; /* Prevent potential scrollbars */ | ||
font-family: Arial, sans-serif; /* Consistent, clean font */ | ||
} | ||
|
||
#viz-container { | ||
height: 100%; | ||
width: 100%; | ||
} | ||
|
||
h2 { | ||
font-size: 21px; | ||
margin-bottom: 10px; | ||
color: #222; /* Slightly darker color for better readability */ | ||
} | ||
|
||
.panel { | ||
position: absolute; | ||
top: 10px; | ||
left: 10px; | ||
padding: 15px; /* More comfortable spacing */ | ||
background-color: #fff; | ||
font-size: 0.9em; | ||
color: #333; | ||
z-index: 1000; | ||
overflow: auto; | ||
border: solid 1px rgba(0, 0, 0, 0.2); /* Subtle darker border for better definition */ | ||
border-radius: 8px; /* Rounded corners for a modern look */ | ||
box-shadow: 0 2px 10px rgba(0, 0, 0, 0.3); /* Cleaner shadow for depth */ | ||
} | ||
|
||
.first-title { | ||
margin-top: 0; | ||
} | ||
|
||
.radio-group input, | ||
.checkbox-group input { | ||
margin-right: 5px; | ||
} | ||
|
||
.radio-group, | ||
.checkbox-group { | ||
margin-bottom: 10px; /* Separation between groups */ | ||
} | ||
|
||
hr { | ||
border: none; | ||
border-top: 1px solid rgba(0, 0, 0, 0.1); /* Light divider line */ | ||
margin: 10px 0; | ||
} | ||
|
||
.source { | ||
font-size: 0.8em; | ||
color: #555; | ||
} | ||
|
||
.source a { | ||
color: #007bff; | ||
text-decoration: none; | ||
} | ||
|
||
.source a:hover { | ||
text-decoration: underline; | ||
} |
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