/usr/share/doc/cereal/style.howtos.css is in cereal 0.24-1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 | /* CSS stylesheet for how-tos */
BODY {
color: black;
background: #cccccc;
}
pre.console {
background: black;
color: #0f0;
border: thin solid blue;
padding: 0.5em;
margin: 0.5em;
overflow: auto;
}
pre.console .prompt { color: #f00; }
pre.console .input { color: white; font-weight: bold; }
pre.console .input-hidden { color: silver; }
DT { font-weight: bold; }
pre.file {
font-weight: bold;
}
pre.snippet {
background: white;
color: black;
border: thin dashed blue;
padding: 1em;
margin: 0.5em;
overflow: auto;
}
pre.snippet .comment { color: green; }
img { border: thick solid black; }
#input-hidden-example { background: black; color: silver; font-family: monospace; padding: 0.5em; }
|