diff options
author | Romain Gonçalves <me@rgoncalves.se> | 2021-11-21 21:20:26 +0100 |
---|---|---|
committer | Romain Gonçalves <me@rgoncalves.se> | 2021-11-24 15:24:31 +0100 |
commit | 78c0df0d9158cdfa4a795fd23568fadafd4829f4 (patch) | |
tree | 98aa8d19887c5833b0772f6a7d9b06f565c47a2d | |
parent | 03decf5120196a774f83c1b70d26abca1356cbb5 (diff) | |
download | rgoncalves.se-78c0df0d9158cdfa4a795fd23568fadafd4829f4.tar.gz |
style: Blue theme for inline code
-rw-r--r-- | src/style/style.css | 10 |
1 files changed, 3 insertions, 7 deletions
diff --git a/src/style/style.css b/src/style/style.css index 9adbb11..8cde3e1 100644 --- a/src/style/style.css +++ b/src/style/style.css @@ -34,10 +34,6 @@ a, a:hover, a:visited { color: blue; } -a:hover { - background-color: #eeeeee; -} - ul.index { padding-inline-start: 0; } @@ -86,9 +82,9 @@ p, ul li { line-height: 1.5em; } -p code { - background-color: #cccccc; - font-style: italic; +p code, li code { + background-color: blue; + color: white; } blockquote { |