blob: 9c0a8872bdc97161ee4477ec4b9cec16f0e93bfd (
plain)
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
|
/*
Get rid of the blue background
begind the logo and kill some blank
space around it
*/
div.wy-side-nav-search {
background-color: unset;
padding: unset;
margin: unset;
}
/*
Wide tables are wide.
Default is 800px, which is a waste of screen space.
*/
div.wy-nav-content {
max-width: unset;
}
.wy-table-responsive table td,.wy-table-responsive table th {
/*
The theme sets it to "nowrap", which means tables become
ultra-wide with horizontal scrollbars. Ugh.
*/
white-space:unset;
}
|