style.css
1.03 KB
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
body {
font-family: Verdana, sans-serif;
font-size: 12px;
color: #000;
background: #111;
}
h1 {
font-size: 20px;
margin: 0
}
h2 {
font-size: 10px;
margin: 0
}
p {
margin: 5px 0;
font-size: 12px;
}
pre.prettyprint {
padding: 15px;
border: 1px solid #eee;
border-radius: 5px;
background: #eee;
border-bottom: 3px solid;
}
.examples {
border-radius: 20px;
background: #fff;
padding: 15px;
margin: 0 150px 0 0;
border-collapse: collapse;
border: 1px solid #000;
}
.slimScrollDiv {
border: 1px solid #eee;
}
#nav {
position: fixed;
top: 0 left : 0;
background: #fff;
padding: 15px;
border-radius: 20px;
width: 200px;
}
#nav ul {
list-style-type: square;
list-style-position: inside;
margin: 20px 0 0 0;
padding: 0;
}
#nav a {
text-decoration: none;
color: #000;
}
#nav a:hover {
text-decoration: underline
}
#git-fork img {
position: fixed;
top: 0;
right: 0;
border: 0;
z-index: 999;
}