File: print.css

package info (click to toggle)
elixir-ex-doc 0.35.1%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,784 kB
  • sloc: javascript: 2,848; makefile: 15; xml: 12; sh: 5
file content (77 lines) | stat: -rw-r--r-- 1,230 bytes parent folder | download
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
@media print {
  .body-wrapper {
    display: block;
  }

  .sidebar,
  .sidebar-button {
    display: none;
  }

  .top-search {
    display: none;
  }

  .content {
    padding-left: 0;
    overflow: visible;
    left: 0px;
    width: 100%;
  }

  .summary-row {
    break-inside: avoid;
  }

  #toast {
    display: none;
  }

  .content-inner {
    padding: 0;
  }

  .content-inner .section-heading a.hover-link {
    display: none;
  }

  .content-inner button.icon-action {
    display: none;
  }

  .content-inner a.icon-action {
    display: none;
  }

  .content-inner .bottom-actions {
    display: none;
  }

  /* Hide On Hex.pm text but keep Built Using ExDoc */
  .footer p:first-of-type {
    display: none;
  }

  .content-inner section.admonition {
    border: 2px solid var(--gray400);
  }

  .content-inner section.admonition > .admonition-title {
    color: var(--textHeaders);
    border-bottom: 2px solid var(--gray400);
  }

  .content-inner pre code.makeup {
    border-color: var(--gray400);
    white-space: break-spaces;
    break-inside: avoid;
  }

  .content-inner blockquote code.inline {
    border-color: var(--gray400);
  }

  .content-inner code.inline {
    border-color: var(--gray400);
  }
}