test.css
753 Bytes
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
/* Fixes navigation panel overlaying content */
html {
font-size: 14px;
}
body {
padding-top: 100px; /* make room at top of page for the navbar */
background: #aaa;
}
/* Hack to avoid name clash between pygments and mathjax */
.MathJax .mo,
.MathJax .mi {
color: inherit;
}
/*.card {
margin-top: 70px;
}
*/
/*.drop-shadow {
-webkit-box-shadow: 0 0 5px 2px rgba(0, 0, 0, .5);
box-shadow: 0px 2px 10px 3px rgba(0, 0, 0, .2);
border-radius:5px;
}
*/
textarea {
font-family: monospace !important;
}
/* make markdown tables beautiful */
table {
border-collapse: collapse;
margin-left: 50px;
}
thead, tbody, td, th {
padding: 5px;
border-bottom: 1px solid #ddd;
}
.noleftmargin {
margin-left: 0px;
}