Modify warning notices markdown

This commit is contained in:
exu 2023-07-11 17:33:08 +02:00
parent e21c9b4429
commit d020ac7cbc
4 changed files with 24 additions and 2 deletions

View File

@ -975,4 +975,13 @@ thead {
.langswitcher li a {
background: none; }
.notices {
padding: 1px 1px 1px 30px;
margin: 15px 0; }
.notices.yellow {
border-left: 10px solid #ffa800;
background: #47310d;
color: #f6af35; }
/*# sourceMappingURL=theme.css.map */

File diff suppressed because one or more lines are too long

View File

@ -35,3 +35,6 @@
// LangSwitcher
@import "theme/langswitcher";
// Markdown notices
@import "theme/notices";

View File

@ -0,0 +1,10 @@
.notices {
padding: 1px 1px 1px 30px;
margin: 15px 0;
}
.notices.yellow {
border-left: 10px solid #ffa800;
background: #47310d;
color: #f6af35;
}