Contact
CoCalc Logo Icon
StoreFeaturesDocsShareSupport News AboutSign UpSign In
| Download
Views: 475
1
/*Some css fixes to use night theme with IPython slides*/
2
/* primjer
3
body {
4
background-color: #111111;
5
}
6
.reveal p {
7
color: white;
8
}
9
.reveal ul, ol {
10
color: white;
11
}
12
div.output_area pre {
13
color: white;
14
}
15
div.output_stderr {
16
background: #F00;
17
}
18
.reveal table th, .reveal table td {
19
color: white;
20
}
21
*/
22
23
.reveal {
24
overflow-y: hidden;
25
font-size: 28px;
26
}
27
28