feat: Add post-content styles and improve breadcrumb and link styles
This commit is contained in:
@@ -1,15 +1,15 @@
|
||||
//
|
||||
// Button styles //
|
||||
//
|
||||
a {
|
||||
color: get-color("dark", 0.9);
|
||||
text-decoration: none;
|
||||
@include transition(linear 0.1s);
|
||||
&:hover {
|
||||
color: get-color("dark");
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
// a {
|
||||
// color: get-color("dark", 0.9);
|
||||
// text-decoration: none;
|
||||
// @include transition(linear 0.1s);
|
||||
// &:hover {
|
||||
// color: get-color("dark");
|
||||
// text-decoration: none;
|
||||
// }
|
||||
// }
|
||||
button {
|
||||
background: transparent;
|
||||
box-shadow: none;
|
||||
|
||||
5
assets/css/scss/elements/_post-content.scss
Normal file
5
assets/css/scss/elements/_post-content.scss
Normal file
@@ -0,0 +1,5 @@
|
||||
.post-content {
|
||||
p {
|
||||
line-height: 2rem;
|
||||
}
|
||||
}
|
||||
@@ -1,6 +1,31 @@
|
||||
//
|
||||
// Text Link Styles //
|
||||
//
|
||||
|
||||
a {
|
||||
// color: #007bff;
|
||||
// color: get-color("dark", 0.8);
|
||||
color: #000;
|
||||
text-decoration: none;
|
||||
|
||||
&:hover {
|
||||
color: #0056b3;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
|
||||
.post-content {
|
||||
a {
|
||||
// color: #007bff;
|
||||
color: get-color("dark", 0.8);
|
||||
text-decoration: underline;
|
||||
&:hover {
|
||||
color: #0056b3;
|
||||
text-decoration: none;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
*[class*='text-link-'] {
|
||||
color: get-color("dark", 0.9);
|
||||
&:hover, &:focus {
|
||||
|
||||
Reference in New Issue
Block a user