Skip to content

Commit

Permalink
Fixed issue #3
Browse files Browse the repository at this point in the history
  • Loading branch information
christophery committed Jun 18, 2019
1 parent 0d45a03 commit 1818bb4
Show file tree
Hide file tree
Showing 11 changed files with 66 additions and 2 deletions.
Empty file modified built/customizer.js 100644 → 100755
Empty file.
Empty file modified built/customizer.js.map 100644 → 100755
Empty file.
Empty file modified built/global.css.map 100644 → 100755
Empty file.
Empty file modified built/jquery.fitvids.js.map 100644 → 100755
Empty file.
Empty file modified built/main.js 100644 → 100755
Empty file.
Empty file modified built/main.js.map 100644 → 100755
Empty file.
2 changes: 1 addition & 1 deletion built/screen.css 100644 → 100755

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion built/screen.css.map 100644 → 100755

Large diffs are not rendered by default.

Empty file modified built/skip-link-focus-fix.js 100644 → 100755
Empty file.
Empty file modified built/skip-link-focus-fix.js.map 100644 → 100755
Empty file.
64 changes: 64 additions & 0 deletions css/screen.css 100644 → 100755
Expand Up @@ -767,7 +767,47 @@ make sure this only happens on large viewports / desktop-ish devices.
}
}

/* Sticky Posts */

.sticky{
position: relative;
}

.sticky.has-post-thumbnail .post-card-content{
position: absolute;
height: 100%;
}

.sticky.has-post-thumbnail .post-card-image-link{
opacity: 0.3;
}

.sticky.has-post-thumbnail .post-card-tags,
.sticky.has-post-thumbnail .reading-time,
.sticky.has-post-thumbnail .post-card-content-link{
color: #FFF;
}

.sticky.has-post-thumbnail:before{
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0,0,0,0.8);
}

@media (max-width: 795px) {
.sticky.has-post-thumbnail .post-card-content{
position: relative;
height: auto;
}

.sticky.has-post-thumbnail .post-card-image-link{
opacity: 1;
}
}

/* Single Post
/* ---------------------------------------------------------- */
Expand Down Expand Up @@ -2125,6 +2165,11 @@ embed, iframe, object {
padding-right: 0;
}

.gallery-caption,
.wp-caption-text{
font-size: 70% !important;
}

/* Author Template
/* ---------------------------------------------------------- */

Expand Down Expand Up @@ -2886,6 +2931,25 @@ embed, iframe, object {
word-wrap: break-word;
}

.bypostauthor{
position: relative;
}

.bypostauthor .comment-body{
border-top-left-radius: 0;
border-top-right-radius: 0;
}

.bypostauthor:before{
content: "";
position: absolute;
top: 0;
left: 0.3em;
width: calc(100% - 0.3em);
height: 3px;
background: var(--blue);
}

@media only screen and (max-width: 750px) {
.comment-list>li.comment li.comment{
margin-left: 0;
Expand Down

0 comments on commit 1818bb4

Please sign in to comment.