Add blog styles to SCSS

This commit is contained in:
mDuo13
2020-09-14 15:47:31 -07:00
parent 80aaafca20
commit 60cba45eb0
5 changed files with 21 additions and 5 deletions

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long

14
styles/_blog.scss Normal file
View File

@@ -0,0 +1,14 @@
// These styles are used by the dev-blog pages, which are in another repo.
.dev-blog {
.labels-wrap {
display: inline-block;
}
a.badge-primary {
text-decoration: none;
&:hover {
text-decoration: none;
}
}
}

View File

@@ -1,6 +1,6 @@
// Button styling --------------------------------------------------------------
.btn, .content a.button {
.btn, .content a.button, .content .btn {
font-weight: bold;
cursor: pointer;
text-decoration: none;
@@ -28,7 +28,7 @@ button[disabled="disabled"] {
border-width: 2px;
border-style: solid;
&:hover, &:active {
&:not(:disabled):not(.disabled):hover, &:not(:disabled):not(.disabled):active {
color: $primary;
border-color: $primary;
background-color: transparent;

View File

@@ -50,3 +50,4 @@ $font-family-sans-serif: -apple-system, system-ui, 'Roboto', sans-serif;
@import "_print.scss";
@import "_pages.scss";
@import "_rpc-tool.scss";
@import "_blog.scss";