summaryrefslogtreecommitdiff
path: root/docs/_themes/searx/static/searx.css
blob: 747cb0507a2a5b0d094dd427a29a52ab0b372e5a (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
@import url("pocoo.css");

a, a.reference, a.footnote-reference {
  color: #004b6b;
  border-color: #004b6b;
}

a:hover {
  color: #6d4100;
  border-color: #6d4100;
}

p.version-warning {
  background-color: #004b6b;
}

div.sidebar {
  background-color: whitesmoke;
  border-color: lightsteelblue;
  border-radius: 3pt;
}

p.sidebar-title, .sidebar p {
  margin: 6pt;
}

.sidebar li {
  list-style-type: disclosure-closed;
}


div.admonition,
div.topic {
  background-color: #fafafa;
  margin: 8px 0px;
  padding: 1em;
  border: none;
}

/* admonitions with (rendered) reST markup examples (:class: rst-example)
 *
 * .. admonition:: title of the example
 *     :class: rst-example
 *     ....
/* navigation menu: use sans font and select light/dark colors for better
* contrast.
*/

div.rst-example {
    padding-left: 12px;
    padding-right: 12px;
    background-color: white;
    transform: scale(0.9);
    transition: transform 1s;
}

/* div.rst-example > .admonition-title { */
/*     background-color: inherit; */
/*     color: inherit; */
/* } */

/* div.rst-example > .admonition-title:after{ */
/*     font-family: inherit; */
/*     font-style: italic; */
/*     content: "     // hover mouse over .."; */
/* } */

@media screen {
   div.rst-example:hover {
       transform: scale(1);
       background-color: inherit;
       padding-left: inherit;
       padding-right: inherit;
       border-left: inherit;
   }

   div.rst-example:hover > .admonition-title {
       display: none;
   }
}