diff options
author | Nobuyoshi Nakada <[email protected]> | 2023-11-28 01:06:47 +0900 |
---|---|---|
committer | git <[email protected]> | 2023-11-27 16:07:03 +0000 |
commit | 7973eb7c3f6531a41adb9de63d1b3c4d5d4b7d03 (patch) | |
tree | bfa311f84afae1840899a56b9e9506b0452b678f /lib/rdoc | |
parent | 8427a8a655e2a04bfdc6a645ec967405d3617137 (diff) |
[ruby/rdoc] [DOC] Slightly decorate `em` and `strong`
https://github.com/ruby/rdoc/commit/2161157205
Diffstat (limited to 'lib/rdoc')
-rw-r--r-- | lib/rdoc/generator/template/darkfish/css/rdoc.css | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/lib/rdoc/generator/template/darkfish/css/rdoc.css b/lib/rdoc/generator/template/darkfish/css/rdoc.css index f845d6cecb..2cc55e03b1 100644 --- a/lib/rdoc/generator/template/darkfish/css/rdoc.css +++ b/lib/rdoc/generator/template/darkfish/css/rdoc.css @@ -87,6 +87,17 @@ pre { border-radius: 0.2em; } +em { + text-decoration-color: rgba(52, 48, 64, 0.25); + text-decoration-line: underline; + text-decoration-style: dotted; +} + +strong, +em { + background-color: rgba(158, 178, 255, 0.1); +} + table { margin: 0; border-spacing: 0; |