blob: 95b80bffcef5799effdb47dd6575d6d5879bf5cf (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
/* Utility classes to prevent blocks from expanding unreasonably. */
.wide-enough {
max-width: 400px;
}
.wider {
max-width: 600px;
}
/* Lighter background for <pre> and <code> elements. */
pre {
font-size: inherit;
background-color: #fbfbfb;
}
.highlight {
background-color: #fbfbfb !important;
}
code {
color: inherit;
background-color: #fbfbfb;
font-size: inherit;
}
|