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:
Kumi 2024-08-18 11:17:48 +02:00
parent 4d274d8073
commit c4e7acdae4
Signed by: kumi
GPG key ID: ECBCC9082395383F

View file

@ -168,6 +168,14 @@ h1 {
font-style: italic;
}
.ambox {
margin: 1em 0;
padding: 10px;
background-color: #f9f9f9;
border: 1px solid #ddd;
font-size: small;
}
/* Navbox styling */
.navbox {
padding: 3px;