forked from janl/jscouch
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathjscouch.css
120 lines (96 loc) · 2.29 KB
/
jscouch.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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
/*
Licensed under the Apache License, Version 2.0 (the "License"); you may not
use this file except in compliance with the License. You may obtain a copy
of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
License for the specific language governing permissions and limitations under
the License.
Initial implementation:
* http://www.mudynamics.com
* http://labs.mudynamics.com
* http://www.pcapr.net
*/
body {
background-color: rgb(244, 244, 244);
color: rgb(51, 51, 51);
line-height: 135%;
font-size: 13px;
font-family: Arial, Helvetica, sans-serif;
}
select, textarea, input {
font-size: 13px;
font-family: Arial, Helvetica, sans-serif;
}
.icouch fieldset#tabs legend a {
background-color: transparent;
margin: 2px;
padding: 2px;
border: none;
text-decoration: none;
outline: none;
}
.icouch fieldset#tabs legend a.active {
background-color: #dddddd;
border: 1px solid #9aafe5;
}
.icouch select {
vertical-align: middle;
}
.icouch a {
cursor: pointer;
color: rgb(39, 39, 192);
}
.icouch a:hover {
color: black;
}
.icouch div#doc {
margin-left: 20px;
}
.icouch table#docs thead td {
font-weight: bold;
}
.icouch table#docs td {
border-bottom: 1px inset #9aafe5;
}
.icouch table#docs tbody tr:hover {
background-color: #dddddd;
}
.icouch div#map textarea {
background-color: #fff8dc;
margin-left: 20px;
width: 80%;
}
.icouch div#map table#results thead td {
font-weight: bold;
}
.icouch div#map table#results tbody td.reduced {
vertical-align: middle;
border-left: 2px dotted #9aafe5;
}
.icouch div#map table#results tbody tr:hover {
background-color: #dddddd;
}
.icouch div#blurb {
margin-left: 20px;
padding-left: 20px;
border-left: 2px dotted #9aafe5;
color: #000088;
}
img.icon {
vertical-align: middle;
border: none;
width: 16px;
}
.jstring { color: #008800; }
.jnumber { color: #880000; }
.jkeyword { color: #000088; }
.credits {
margin: -10px 0 2ex 20px;
font-size: 10pt;
}
.intro {
margin-bottom:2ex;
}