Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
sagemath
GitHub Repository: sagemath/sagecell
Path: blob/master/static/root.css
447 views
1
body {
2
margin: 20px;
3
font-family: sans-serif;
4
background-color: white;
5
}
6
7
#sagecell_main {
8
/* This is so that an interact that changes size
9
doesn't cause the browser to scroll everything up and down */
10
margin-bottom: 80%;
11
}
12
13
a {
14
text-decoration: none;
15
color: mediumblue;
16
}
17
18
a:hover {
19
text-decoration: underline;
20
}
21
22
.sagecell button.sagecell_evalButton {
23
font-size: 120%;
24
}
25
26
#sagecell_about {
27
position: absolute;
28
top: 5px;
29
right: 5px;
30
font-size: 80%;
31
}
32
33
ol.sagecell_toc,
34
ol.sagecell_toc ol {
35
list-style: none;
36
}
37
38
.sagecell_disclaimer {
39
font-size: 80%;
40
}
41
42
.sagecell .CodeMirror-scroll {
43
min-height: 14em;
44
}
45
46