generated from dhmit/boilerplate
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #21 from dhmit/styling
Eleanor created/designed the homepage, and I updated the navbar to sort the visualizations by data source. Still left to do: maybe add links to the data sources/cite them? and possibly change the navbar to a different color if it doesn't stand out enough. Also, if there are new visualizations for the Lokniti data, we should integrate those into the navbar where there are placeholder links right now (and get rid of the placeholders if not).
- Loading branch information
Showing
9 changed files
with
138 additions
and
24 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
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
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Empty file.
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,6 +1,5 @@ | ||
.map-display { | ||
display: flex; | ||
position: aboslute; | ||
} | ||
|
||
.data-display { | ||
|
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 |
---|---|---|
|
@@ -4,6 +4,7 @@ body { | |
|
||
#main-container { | ||
padding: 1em 2em; | ||
background-color: #e2f4c5; | ||
} | ||
|
||
.bold { | ||
|
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,38 @@ | ||
html, | ||
body { | ||
margin: 0; | ||
padding: 0; | ||
width: 100%; | ||
height: 100%; | ||
} | ||
|
||
#navbar { | ||
width: 100%; | ||
background-color: #333; // Assuming a simple color for the navbar | ||
color: white; | ||
text-align: center; | ||
padding: 10px 0; | ||
} | ||
|
||
#main-content { | ||
display: flex; | ||
justify-content: space-between; | ||
padding: 20px; | ||
margin-top: 20px; // Space below the navbar | ||
background-color: #e2f4c5; | ||
|
||
.text-block, | ||
.image-block { | ||
flex: 1; | ||
padding: 0 20px; | ||
} | ||
|
||
.image-block { | ||
text-align: center; | ||
|
||
img { | ||
max-width: 100%; | ||
height: auto; | ||
} | ||
} | ||
} |
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