-
Notifications
You must be signed in to change notification settings - Fork 65
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
Fix: peer review landing page #287
Merged
Merged
Changes from all commits
Commits
Show all changes
23 commits
Select commit
Hold shift + click to select a range
129dea8
Enh: update peer review page
lwasser 255b95a
Fix: title of page
lwasser 1cd3608
Merge branch 'main' into fix-review
lwasser 8ed2f27
Fix: remove commented text
lwasser bd4a2e6
Merge branch 'fix-review' of github.com:lwasser/pyopensci.github.io i…
lwasser 0bc8673
Update _pages/about-peer-review.md
lwasser 2235b97
Update _pages/about-peer-review.md
lwasser bd725f6
Update _pages/about-peer-review.md
lwasser a3ace70
Update _pages/about-peer-review.md
lwasser dd8e3d9
Update _pages/about-peer-review.md
lwasser c44136b
Update _pages/about-peer-review.md
lwasser c3a8d6c
Update _pages/about-peer-review.md
lwasser d4ed897
Update _sass/minimal-mistakes/_pyos-grid.scss
lwasser 16b149a
Update _sass/minimal-mistakes/_pyos-grid.scss
lwasser 7bb0d2f
Fix: broken links
lwasser 7dcc0d7
Fix: Incorporate edits from Jesse
lwasser ce59af6
Update _pages/about-peer-review.md
lwasser 21b45e3
Fix: yaml errors
lwasser b3ad670
Fix: styles cleanup for peer review page
lwasser 24eeef7
Fix: styles and reduce in page html
lwasser 5cc8c17
Fix: copy edit from Carol :sparkles:
lwasser 6698ac4
Fix: copy edit from Carol :sparkles:
lwasser 8669079
Merge branch 'main' into fix-review
lwasser File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
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
Original file line number | Diff line number | Diff line change | ||
---|---|---|---|---|
|
@@ -3,7 +3,8 @@ | |||
/* Create & style a 3x3 grid wrapper */ | ||||
.grid { | ||||
display: grid; | ||||
grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); | ||||
// minmax can be used to modify width | ||||
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); | ||||
grid-gap: 10px; | ||||
|
||||
h4.grid_title { | ||||
|
@@ -78,15 +79,29 @@ | |||
font-size: 1.1em!important; | ||||
} | ||||
|
||||
.bubble:before { | ||||
content: ""; | ||||
position: absolute; | ||||
z-index: -1; | ||||
top: -16px; | ||||
right: -16px; | ||||
background: #967eb6; | ||||
height: 32px; | ||||
width: 32px; | ||||
border-radius: 32px; | ||||
transform: scale(2); | ||||
transform-origin: 50% 50%; | ||||
transition: transform 0.15s ease-out; | ||||
} | ||||
|
||||
.cards { | ||||
display: block; | ||||
top: 0px; | ||||
position: relative; | ||||
max-width: 362px; | ||||
background-color: #f1f0f1;; | ||||
border-radius: 4px; | ||||
padding: 32px 24px; | ||||
margin: 12px; | ||||
// padding: 32px 24px; | ||||
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.
Suggested change
|
||||
text-decoration: none; | ||||
z-index: 0; | ||||
overflow: hidden; | ||||
|
@@ -135,20 +150,6 @@ | |||
cursor: pointer; | ||||
} | ||||
|
||||
&:before { | ||||
content: ""; | ||||
position: absolute; | ||||
z-index: -1; | ||||
top: -16px; | ||||
right: -16px; | ||||
background: #967eb6; | ||||
height: 32px; | ||||
width: 32px; | ||||
border-radius: 32px; | ||||
transform: scale(2); | ||||
transform-origin: 50% 50%; | ||||
transition: transform 0.15s ease-out; | ||||
} | ||||
|
||||
&:hover:before { | ||||
transform: scale(2.15); | ||||
|
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
remove