Skip to content

Commit

Permalink
mk-adv-template: make the <code> section grey bg
Browse files Browse the repository at this point in the history
  • Loading branch information
bagder committed Oct 9, 2024
1 parent 40d3743 commit a9a3b8d
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions docs/mk-adv-template.pl
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,19 @@
<head> <title>curl - FLAWNAME - FLAWCVE</title>
#include "css.t"
#include "manpage.t"
<style>
code {
padding: 0px 4px 0px 4px;
background-color: #f0f0f0;
}
@media (prefers-color-scheme: dark) {
code {
padding: 0px 4px 0px 4px;
background-color: #101010;
}
}
</style>
</head>
#define CURL_DOCS
Expand Down

0 comments on commit a9a3b8d

Please sign in to comment.