File: extra.css

package info (click to toggle)
dotdrop 1.15.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,812 kB
  • sloc: sh: 13,401; python: 8,186; makefile: 3
file content (46 lines) | stat: -rw-r--r-- 1,027 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
 * from https://github.com/AaltoSciComp/scicomp-docs/blob/master/_static/theme_overrides.css
 */

/* override table width restrictions:
   https://github.com/rtfd/sphinx_rtd_theme/issues/117 */
.wy-table-responsive table td, .wy-table-responsive table th {
  white-space: normal !important;
}

@media screen and (min-width: 767px) {
  .wy-table-responsive {
    max-width: 100%  !important;
    overflow: visible  !important;
  }
}

/* RST has an extra space after sub-lists in unordered lists.  This */
/* fixes that annoying problem. */
.rst-content .section ul p {
    margin-bottom: 0px;
}
.rst-content .section li ol {
    margin-bottom: 0px;
}

/* Strikethrough */
/* https://stackoverflow.com/questions/6518788/rest-strikethrough */
.strike {
    text-decoration: line-through;
}

/*  */
.wy-side-nav-search > a img.logo, .wy-side-nav-search .wy-dropdown > a img.logo {
    max-width: 70%;
}

details summary {
    font-size: large;
    font-weight: bold;
    margin-bottom:12px
}

details {
    margin-bottom:20px
}