Adds button and author meta styles. #846

This commit is contained in:
Jeffrey Pearce 2019-05-31 15:24:05 +02:00
parent 06cfe68b7f
commit d3520786e1

View file

@ -528,8 +528,8 @@ span.a8c-posts-list-item__datetime:before {
padding-right: 5px; padding-right: 5px;
} }
span.a8c-posts-list-item__author { span.a8c-posts-list-item__author a {
color: #b3b3b1;
} }
div.a8c-posts-list-item__excerpt { div.a8c-posts-list-item__excerpt {
@ -540,4 +540,42 @@ div.a8c-posts-list-item__excerpt {
figure.a8c-posts-list-item__post-thumbnail { figure.a8c-posts-list-item__post-thumbnail {
margin-bottom: 1.75em; margin-bottom: 1.75em;
}
a.a8c-posts-list__view-all {
display: inline-block;
box-sizing: content-box;
padding: .4375em .875em;
cursor: pointer;
-webkit-transition: background 120ms ease-in-out, box-shadow 120ms ease-in-out;
transition: background 120ms ease-in-out, box-shadow 120ms ease-in-out;
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen-Sans", "Ubuntu", "Cantarell", "Helvetica Neue", sans-serif;
font-size: 16px;
font-weight: 400;
font-style: normal;
text-decoration: none;
color: #fff;
border: solid 1px transparent;
border-radius: 3px;
background: #0087be;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
margin: .875em 0;
}
a.a8c-posts-list__view-all:focus,
a.a8c-posts-list__view-all:active {
outline: 0;
background: #767676;
box-shadow: inset 0 2px 2px rgba(0, 0, 0, .25), 0 0 0 6px rgba(0, 0, 0, .08);
}
a.a8c-posts-list__view-all:hover {
text-decoration: none;
color: #fff;
background: #767676;
}
a.a8c-posts-list__view-all:visited {
color: white;
} }