Style links in notices

This commit is contained in:
Michael Rose
2016-04-05 21:30:25 -04:00
parent 234368718f
commit 20fe00d058
3 changed files with 14 additions and 23 deletions

View File

@ -93,10 +93,6 @@ blockquote {
font-style: italic;
border-left: 0.25em solid $primary-color;
a {
color: inherit;
}
cite {
font-style: italic;

View File

@ -31,23 +31,10 @@
font-size: 1em;
}
@at-root .page__content #{&} a {
border-bottom-width: 2px;
box-shadow: none !important; // override
&:hover {
background-color: transparent !important; // override
}
}
p {
&:last-child {
margin-bottom: 0 !important; // override
}
a {
border-bottom: 1px solid mix(#fff, $notice-color, 50%) !important; // override
}
}
h4 + p {
@ -56,6 +43,14 @@
padding-top: 0;
}
a {
color: $notice-color;
&:hover {
color: mix(#000, $notice-color, 40%);
}
}
code {
background-color: mix(#fff, $notice-color, 95%)
}