-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Infinite scrolling on archive page using JS & REST API - Improved archive page SCSS. - Fixed namespacing for hook names. - Modify posts_per_page to 6
- Loading branch information
Showing
7 changed files
with
273 additions
and
1,057 deletions.
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 |
---|---|---|
@@ -1,13 +1,77 @@ | ||
.bio-circle { | ||
border-radius: 50%; | ||
height: 80; | ||
height: 80px; | ||
width: 80px; | ||
display: block; | ||
margin-left: auto; | ||
margin-right: auto; | ||
} | ||
|
||
.libio-header{ | ||
text-align: center; | ||
padding-top:20px; | ||
//padding-bottom:20px; | ||
height: 150px; | ||
width: 100%; | ||
position: relative; | ||
overflow: visible; | ||
z-index: 1; | ||
border-bottom: 1px solid #ababab | ||
} | ||
|
||
.lib-header { | ||
.libio-page-container{ | ||
text-align: center; | ||
padding-top:20px; | ||
padding-bottom:20px; | ||
} | ||
|
||
.libio-container { | ||
max-width: 960px; | ||
margin: auto; | ||
display: flex; | ||
flex-direction: row; | ||
flex-wrap: wrap | ||
} | ||
|
||
.libio-container .libio-photo-wrapper { | ||
flex: 0 0 auto; | ||
width: 33.3%; | ||
position: relative; | ||
padding: 2px; | ||
box-sizing: border-box | ||
} | ||
|
||
.libio-container .libio-photo-wrapper:after { | ||
content: ""; | ||
display: block; | ||
padding-bottom: 100% | ||
} | ||
|
||
.libio-container .libio-photo-wrapper .libio-photo { | ||
position: relative; | ||
display: block | ||
} | ||
|
||
.libio-container .libio-photo-wrapper .libio-photo img { | ||
width: 100%; | ||
height: auto; | ||
display: block; | ||
position: absolute; | ||
vertical-align: baseline; | ||
left: 0; | ||
top: 0; | ||
right: 0; | ||
bottom: 0 | ||
} | ||
|
||
@media (max-width:960px) { | ||
.libio-container .libio-photo-wrapper { | ||
width: 49.8% | ||
} | ||
.libio-container .libio-photo-wrapper .overlay { | ||
display: none | ||
} | ||
.ls-tip { | ||
background: #f5f5f5 | ||
} | ||
} |
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
Oops, something went wrong.