File: custom.css

package info (click to toggle)
harp 1.29-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 57,028 kB
  • sloc: xml: 475,954; ansic: 175,442; sh: 4,898; yacc: 2,186; javascript: 1,510; python: 1,148; makefile: 656; lex: 591
file content (26 lines) | stat: -rw-r--r-- 740 bytes parent folder | download | duplicates (10)
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
/* Overrides of the default theme CSS rules. The use of explicit qualifiers
 * "html body div" ensures these rules are preferred over the default CSS rules
 * even if this file is loaded first.
 */

/* Override theme to use all available horizontal space (instead of a fixed
 * maximum of 800 pixels).
 */ 
html body div.wy-nav-content {
    max-width: 100%;
}

/* Override theme to force all tables to the same width (100%). */
html body div.wy-table-responsive table {
    width: 100%;
}

/* Override theme to disable horizontal scroll bars on wide tables. */
html body div.wy-table-responsive table td,
html body div.wy-table-responsive table th {
    white-space: normal;
}

html body div.wy-table-responsive {
    overflow: visible;
}