File: kea.css

package info (click to toggle)
isc-kea 2.6.4-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 60,064 kB
  • sloc: cpp: 474,344; sh: 28,161; lex: 7,925; yacc: 7,456; makefile: 6,894; python: 481; xml: 94
file content (26 lines) | stat: -rw-r--r-- 773 bytes parent folder | download | duplicates (3)
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
/* give more screen width to the content as by default it is too narrow
   and many tables and boxes are squeezed */
.wy-nav-content {
    max-width: 1100px;
}

/* by default table content is not wrapped and then the tables
   are pretty wide so removing that
 */
.wy-table-responsive table td, .wy-table-responsive table th {
    white-space: normal;
}

/* Paint literal text black. */
.rst-content code.literal {
    color: black;
}

/* Have literal text that references other sections underlined.
 * It helps the reader figure out that it's a clickable link.
 * This type of referencing can be achieved using text roles.
 * https://www.sphinx-doc.org/en/master/usage/restructuredtext/roles.html
 */
.rst-content code.xref {
    text-decoration: underline dotted gray;
}