Browse Source

Adds button and author meta styles. #846

Jeffrey Pearce 6 years ago
parent
commit
d3520786e1
1 changed files with 40 additions and 2 deletions
  1. 40 2
      independent-publisher-2/css/blocks.css

+ 40 - 2
independent-publisher-2/css/blocks.css

@@ -528,8 +528,8 @@ span.a8c-posts-list-item__datetime:before {
 	padding-right: 5px;
 }
 
-span.a8c-posts-list-item__author {
-
+span.a8c-posts-list-item__author a {
+	color: #b3b3b1;
 }
 
 div.a8c-posts-list-item__excerpt {
@@ -540,4 +540,42 @@ div.a8c-posts-list-item__excerpt {
 
 figure.a8c-posts-list-item__post-thumbnail {
 	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;
 }