summaryrefslogtreecommitdiffstats
path: root/docs/style.css
blob: a6e38434ddea22fd2d9ad8d6bcc3ce6b13e4c83e (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
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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/*
:Author: Alessio Sergi
:Contact: al3hex at gmail dot com

Stylesheet for use with Docutils.

This file is the CSS for the Glances documentation.
*/

body {
  margin-top: 1em;
  margin-left: 1em;
  max-width: 80em;
  font-family: serif;
  font-size: 16px;
}

h1 {
  font-size: 20px;
}

h1.title {
  font-size: 22px;
}

h2, h3, p.topic-title {
  font-size: 18px;
}

.first {
  /* override p.topic-title margin styles */
  margin-top: 0 ! important;
}

a {
  color: #0055df;
  text-decoration: none;
}

a:hover {
  color: #339999;
  text-decoration: underline;
}

a:visited {
  color: #800080;
}

a.toc-backref {
  text-decoration: none;
  color: black;
}

blockquote {
  padding-left: 1ex;
  border-left: 1px solid #008000;
  max-width: 30em;
}

p.topic-title {
  font-weight: bold;
}

pre {
  margin-left: 2em;
  margin-right: 2em;
}

.console, .literal-block {
  background-color: #eeeeee;
  border: 1px solid #cccccc;
  max-width: 60em;
  line-height: 19px;
  overflow: auto;
  padding: 6px 10px;
  border-radius: 3px 3px 3px 3px;
}

span.option, tt.docutils {
  white-space: nowrap;
  border: 1px dotted #008000;
  padding: 1px;
  background-color: #eeeeee;
}

.literal, .literal-block, .option, .var {
  font-family: monospace;
  font-size: 10pt;
}

dl.docutils {
  margin-left: 2em;
}

dl.docutils dd {
  margin-bottom: 0.5em;
}

ol.simple {
  margin-left: 0.5em;
}

table.docutils {
  margin-left: 2em;
}

td.option-group {
  padding-right: 1em;
}