Change some css colors

This commit is contained in:
Solene Rapenne 2021-09-29 13:27:06 +02:00
parent 5e96836257
commit 94d47cdd96
1 changed files with 14 additions and 10 deletions

View File

@ -26,18 +26,22 @@
text-align: center; text-align: center;
} }
/*.permalink:hover::after { */
/* content: "🔗 "; */
/*} */
.permalink { .permalink {
color: black; color: blue;
text-decoration: none; text-decoration: underline;
} }
.permalink:visited { /*.permalink:visited {
color: black; color: black;
} }
.permalink:hover { .permalink:hover {
color: darkgrey; color: darkgrey;
} }*/
p { p {
text-align: justify; text-align: justify;
@ -74,7 +78,7 @@ img {
} }
@media print { @media print {
body { background-color:white; max-width:100%;} body { background-color:white; max-width:100%;}
main { column-count:1; } main { column-count:1; }
} }
@ -83,11 +87,11 @@ img {
} }
@media (prefers-color-scheme: dark) { @media (prefers-color-scheme: dark) {
body { color: #eee; background-color: #111; } body { color: #eee; background-color: #111; }
html { background-color: black; } html { background-color: black; }
.permalink { color: #eee; } .permalink { color: deepskyblue;; }
.permalink:visited { color:#eee; } /* .permalink:visited { color:#eee; }*/
img {border-color: #eee;} img {border-color: #eee;}
#banner {border-color:#eee;} #banner {border-color:#eee;}
} }
</style> </style>