docs: Improve dark theme warning aside (#12)

Also wrapped @id with backticks to make it look a bit nicer
This commit is contained in:
Francis Lavoie 2020-02-26 15:52:16 -05:00 committed by GitHub
parent cb9a30b124
commit d1997764cf
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
2 changed files with 15 additions and 3 deletions

View file

@ -720,6 +720,18 @@ td code {
border-color: #08575a;
}
article aside.warning {
border-top-color: #462e00;
color: #e1973b;
background: -webkit-radial-gradient(top left, #462e00, transparent 65%);
background: -moz-radial-gradient(top left, #462e00, transparent 65%);
background: radial-gradient(top left, #462e00, transparent 65%);
border-left-color: #462e00;
}
article aside.warning::before {
color: #e1973b;
}
article aside.tip:before {
color: #185f5b;
}