diff options
| author | Shulhan <ms@kilabit.info> | 2022-06-18 14:54:15 +0700 |
|---|---|---|
| committer | Shulhan <ms@kilabit.info> | 2022-06-18 14:54:57 +0700 |
| commit | 639bd7586bb51f1264a5870170b24c2cf36fa191 (patch) | |
| tree | 9ea02e127999a5102ec451cfc8914872cceb7d0e /_content/index.css | |
| parent | cd244a2747b2b9f85d1c0335a86b078d494dcf47 (diff) | |
| download | kilabit.info-639bd7586bb51f1264a5870170b24c2cf36fa191.tar.xz | |
content: add asciidoc style for admonition block
Currently, the style is only for all admonition types, by surrounding
them with border and background color on icon cell.
Diffstat (limited to '_content/index.css')
| -rw-r--r-- | _content/index.css | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/_content/index.css b/_content/index.css index 217adbe..ca57c40 100644 --- a/_content/index.css +++ b/_content/index.css @@ -143,6 +143,22 @@ pre { margin: 4px; } +.admonitionblock { + border: 1px solid #ddd; +} + +.admonitionblock .icon { + background-color: aliceblue; + border-right: 1px solid #ddd; + margin: 0px; + padding: 8px; +} + +.admonitionblock .content { + margin: 0px; + padding: 8px; +} + @media only screen and (max-width: 992px) { body { width: 100%; |
