forked from PrivateCoffee/wikimore
feat(css): add styling for warning message boxes
Introduced new CSS class .ambox to provide consistent styling for warning and alert message boxes. The style includes margin, padding, background color, border, and font size to improve the visibility and readability of such messages.
This commit is contained in:
parent
4d274d8073
commit
c4e7acdae4
1 changed files with 8 additions and 0 deletions
|
@ -168,6 +168,14 @@ h1 {
|
||||||
font-style: italic;
|
font-style: italic;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
.ambox {
|
||||||
|
margin: 1em 0;
|
||||||
|
padding: 10px;
|
||||||
|
background-color: #f9f9f9;
|
||||||
|
border: 1px solid #ddd;
|
||||||
|
font-size: small;
|
||||||
|
}
|
||||||
|
|
||||||
/* Navbox styling */
|
/* Navbox styling */
|
||||||
.navbox {
|
.navbox {
|
||||||
padding: 3px;
|
padding: 3px;
|
||||||
|
|
Loading…
Reference in a new issue