diff options
author | Christian Hesse <mail@eworm.de> | 2023-03-06 16:54:41 +0100 |
---|---|---|
committer | Christian Hesse <mail@eworm.de> | 2023-03-06 21:07:58 +0100 |
commit | 1e6e0646e256c4acb9f8470853d0699286af010e (patch) | |
tree | aea49bc6a7a751db22dcb65dd6ca9cb9ee8abd94 /contrib/notification.d | |
parent | 4ca8f83a526c71ffa541be8f065e0fec6b768461 (diff) |
add the notification generator
Diffstat (limited to 'contrib/notification.d')
-rw-r--r-- | contrib/notification.d/style.css | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/contrib/notification.d/style.css b/contrib/notification.d/style.css new file mode 100644 index 0000000..c07de89 --- /dev/null +++ b/contrib/notification.d/style.css @@ -0,0 +1,39 @@ +body { + font-family: fira-sans, sans; + font-size: 10pt; + background-color: transparent; +} +div.notification { + position: relative; + float: right; + width: 600px; + border: 3px outset #6c5d53; + /* border-radius: 5px; */ + padding: 10px; + background-color: #e6e6e6; +} +div.content { + padding-left: 60px; +} +img.logo { + float: left; + border-radius: 50%; +} +p.heading { + margin: 0px; + font-weight: bold; + text-decoration: underline; +} +p.hint { + display: none; +} +pre { + font-family: fira-mono, mono; + white-space: pre-wrap; +} +span.link { + color: #863600; +} +tt { + background-color: #e6e6e6; +} |