-
Notifications
You must be signed in to change notification settings - Fork 1
48 create two column view #60
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
base: develop
Are you sure you want to change the base?
Changes from all commits
248543b
a2521c1
8439b4b
6248f67
806b0f9
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,20 @@ | ||
| --- | ||
| --- | ||
|
|
||
| @import "{{ site.theme }}"; | ||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
|
|
||
| .wrapper { | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The default header that we're using from Jekyll uses this class already; can you rename this so that it does not override that one? |
||
| max-width: 90% !important; | ||
| } | ||
|
|
||
| #buttonWrapper { | ||
| margin: 15px 0px 15px 0px; | ||
| position: relative; | ||
| display: flex; | ||
| align-items: center; | ||
| } | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,5 +7,5 @@ years_published: 1980 | |
| location: University of British Columbia, Vancouver, BC | ||
| nosheets: 16 | ||
| infourl: http://resolve.library.ubc.ca/cgi-bin/catsearch?bid=12149901 | ||
| geojsonurl: https://github.com/ubc-lib-geo/spatial-indexes/blob/master/canada_britishColumbia_ubc.geojson | ||
| geojsonurl: https://ubc-lib-geo.github.io/spatial-indexes/north-america/canada_britishColumbia_ubc.geojson | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The file URL was changed in the last commit, so it's fixed on develop already. This change can be safely removed. |
||
| --- | ||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -7,5 +7,5 @@ years_published: 1967 | |
| location: Location | ||
| nosheets: 6 | ||
| infourl: http://resolve.library.ubc.ca/cgi-bin/catsearch?bid=2802600 | ||
| geojsonurl: https://github.com/ubc-lib-geo/spatial-indexes/blob/master/canada_britishColumbia_yaletown.geojson | ||
| geojsonurl: https://ubc-lib-geo.github.io/spatial-indexes/north-america/canada_britishColumbia_yaletown.geojson | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. The file URL was changed in the last commit, so it's fixed on develop already. This change can be safely removed. |
||
| --- | ||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's good practice to keep CSS out of any html files and in one place, so that they are easier to find and change later. "id" can be used for one-use styling, and "class" can be reused across multiple elements. I'd move the styling to the map-layout.sccs file that you made.