change "button"-color

This commit is contained in:
creme 2021-08-05 22:46:13 +02:00
parent 668b085fa9
commit d946c5ea36
Signed by: creme
GPG Key ID: C147C3B7FBDF08D0
1 changed files with 6 additions and 0 deletions

View File

@ -1,6 +1,7 @@
main { main {
background-color: #1e202e; background-color: #1e202e;
} }
code{ code{
background-color:#030; background-color:#030;
border:1px solid #666; border:1px solid #666;
@ -9,9 +10,14 @@ code{
.md-nav__item .md-nav__link--active { .md-nav__item .md-nav__link--active {
color: #10A0A0; color: #10A0A0;
} }
.md-typeset a { .md-typeset a {
color: #10A0A0; color: #10A0A0;
} }
.md-typeset a:hover { .md-typeset a:hover {
border-bottom: dotted 1px; border-bottom: dotted 1px;
} }
.md-typeset .md-button {
color: var(--md-default-fg-color--light);
}