CSS : Apply black colour to all elements, except for element a.

This commit is contained in:
Schimon Jehudah, Adv. 2024-08-28 17:20:32 +03:00
parent 6515233c96
commit 5c477c5fee

View file

@ -1,9 +1,6 @@
* {
color: #000;
}
a {
color: #2c6825; /* #439639 */
font-family: system-ui;
text-decoration: none;
}
@ -12,7 +9,7 @@ a:visited {
}
a:hover {
text-decoration: underline
text-decoration: underline;
}
.tags > a {
@ -24,7 +21,8 @@ body {
background-color: #f5f5f5;
}
a, div, h1, h2, h3, h4, h5, p, span {
div, h1, h2, h3, h4, h5, p, span {
color: #000;
font-family: system-ui;
}
@ -36,7 +34,7 @@ body, h1, h2, html,
dl#navigation,
#related-tags dd {
margin: 0;
padding: 0
padding: 0;
}
body, html {
@ -83,9 +81,9 @@ h3, h4, h5 {
#container #header.row {
flex: 0 1 auto;
/* The above is shorthand for:
flex-grow: 0,
flex-shrink: 1,
flex-basis: auto
flex-grow: 0;
flex-shrink: 1;
flex-basis: auto;
*/
}