mirror of https://github.com/zulip/zulip.git
Update markdown.css
I've being trying to solve errors on development environment and I need to upload something to the university discipline im in. I've dealing with 3 diferent erros for, if we sum everthing, more than 12 hours: all on the "provision" part.
This commit is contained in:
parent
efd7c06e30
commit
c150d1b421
|
@ -514,3 +514,30 @@
|
|||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* If darkmode is preferred by OS */
|
||||
@media(prefers-color-scheme: dark){
|
||||
.markdown{
|
||||
background-color: #000; /* Dark background. */
|
||||
color: #fff;
|
||||
}
|
||||
|
||||
.markdown a{
|
||||
color: #39ff14; /* Links green neon to dark mode. */
|
||||
}
|
||||
|
||||
.markdown h1,
|
||||
.markdown h2,
|
||||
.markdown h3{
|
||||
color: #ffffff; /* White letters. */
|
||||
}
|
||||
|
||||
.markdown code,
|
||||
.markdown pre{
|
||||
background-color: #333; /* Codes with grey background. */
|
||||
color: #e5e5e5; /* Grey light letters. */
|
||||
}
|
||||
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue