blob: 3cfcee4659a551020ca6b924493038de410ad1a9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
/* file : pre-box.css
* license : MIT; see accompanying LICENSE file
*/
/* Note: see also p-code-box.css. */
pre
{
background-color: rgba(0, 0, 0, 0.05);
border-radius: 0.2em;
padding: .8em .4em .8em .4em;
margin: 2em -.4em 2em -.4em; /* Use margins of #content. */
}
|