css: Replace CSS reset for <cite> with local rules.

Browser default font-style for `cite` is `italic` and
there is no default value for `blockquote`.
This commit is contained in:
Tim Abbott
2022-11-20 17:56:15 -08:00
parent 3619fb2c29
commit c8290421a1
2 changed files with 5 additions and 3 deletions

View File

@@ -1678,6 +1678,7 @@ nav {
color: hsl(0, 0%, 100%); color: hsl(0, 0%, 100%);
opacity: 0.7; opacity: 0.7;
font-weight: 400; font-weight: 400;
font-style: normal;
} }
.portico-landing .testimonials blockquote { .portico-landing .testimonials blockquote {
@@ -3942,6 +3943,10 @@ nav {
font-size: 20px; font-size: 20px;
font-weight: 800; font-weight: 800;
} }
cite {
font-style: normal;
}
} }
.intro_quote { .intro_quote {

View File

@@ -207,9 +207,6 @@ p {
small { small {
font-size: 85%; font-size: 85%;
} }
cite {
font-style: normal;
}
.text-warning { .text-warning {
color: #c09853; color: #c09853;
} }