CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutSign UpSign In

Real-time collaboration for Jupyter Notebooks, Linux Terminals, LaTeX, VS Code, R IDE, and more,
all in one place.

| Download

GAP 4.8.9 installation with standard packages -- copy to your CoCalc project to get it

Views: 418346
1
/* toggless.css Frank Lübeck */
2
3
/* Using javascript we change all div.ContSect to div.ContSectOpen or
4
div.ContSectClosed. This way the config for div.ContSect in manual.css
5
is no longer relevant. Here we add the CSS for the new elements. */
6
/* This layout is based on an idea by Burkhard Höfling. */
7
8
div.ContSectClosed {
9
text-align: left;
10
margin-left: 1em;
11
}
12
div.ContSectOpen {
13
text-align: left;
14
margin-left: 1em;
15
}
16
div.ContSectOpen div.ContSSBlock {
17
display: block;
18
text-align: left;
19
margin-left: 1em;
20
}
21
div.ContSectOpen div.ContSSBlock a {
22
display: block;
23
width: 100%;
24
margin-left: 1em;
25
}
26
span.tocline a:hover {
27
display: inline;
28
background: #eeeeee;
29
}
30
span.ContSS a:hover {
31
display: inline;
32
background: #eeeeee;
33
}
34
span.toctoggle {
35
font-size: 80%;
36
display: inline-block;
37
width: 1.2em;
38
}
39
span.toctoggle:hover {
40
background-color: #aaaaaa;
41
}
42
43
44