mirror of
https://codeberg.org/openpgp/notes.git
synced 2024-11-23 16:12:05 +01:00
ec761273df
Add a lightgray `background-color` for all admonition environments. Add a palevioletred `background-color` for all admonition-warning and warning environments. Signed-off-by: David Runge <dave@sleepmap.de>
13 lines
No EOL
225 B
CSS
13 lines
No EOL
225 B
CSS
/*
|
|
SPDX-FileCopyrightText: 2023 The "Notes on OpenPGP" project
|
|
SPDX-License-Identifier: CC0-1.0
|
|
*/
|
|
|
|
div.admonition {
|
|
background-color: lightgray;
|
|
}
|
|
|
|
div.warning,
|
|
div.admonition-warning {
|
|
background-color: palevioletred;
|
|
} |