-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathstyle.css
80 lines (71 loc) · 1.43 KB
/
style.css
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
76
77
78
79
80
body {
font-family: 'Roboto', sans-serif;
background-color:#999;
}
.container .row {
margin-left: 200px;
}
#lumpUL {
margin-left: -35px;
padding-right: 0;
list-style-type: none;
/* copied from sphinx_rtd_theme */
position: fixed;
top: 0;
bottom: 0;
left: 0;
width: 300px;
overflow-x: hidden;
overflow-y: scroll;
min-height: 100%;
background: #343131;
z-index: 200;
}
#lumpTable {
background-color:#777;
}
li {
border-style: solid;
padding : 5px;
margin : 5px;
border-width : 2px;
background-color: #ddd;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
}
#loading {
font-family: 'Inconsolata', monospace;
position: fixed;
border-style: solid;
padding : 5px;
border-width : 2px;
background-color: #ddd;
}
#preview {
font-family: 'Inconsolata', monospace;
white-space:pre;
position: fixed;
border-style: solid;
padding : 5px;
border-width : 2px;
background-color: #ddd;
-webkit-touch-callout: none;
-webkit-user-select: none;
-khtml-user-select: none;
-moz-user-select: none;
-ms-user-select: none;
user-select: none;
cursor: default;
}
#textPreview {
height: 400px;
overflow-y: scroll;
}
li:hover {
background-color: #eee;
}