blob: 2fd06360b3fc5fb3aae1f08f4a39b288842847a2 (
plain)
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
|
@import "../../../dojo/resources/dojo.css";
@import "../../../dijit/tests/css/dijitTests.css";
@import "../resources/FloatingPane.css";
@import "../resources/ExpandoPane.css";
body, html {
margin:0;
padding:0;
width:100%;
height:100%;
background: #fafafa;
overflow: hidden;
}
.wrap {
margin: 0;
padding: 15px;
}
.wrap h3 {
margin-top: 5px;
}
#header {
height:32px;
}
.searchBar {
position: absolute;
top: 0;
left: 0;
right: 0;
height: 25px;
border-bottom: 1px solid #666;
background: #fafafa;
}
.searchBar p {
margin: 0;
padding: 2px;
}
.searchStuff {
position: absolute;
top: 25px;
margin: 0 auto;
}
.searchStuff ul {
width: auto;
margin: 0 auto;
padding: 0;
}
div.itty {
font-weight: normal;
font: 8pt Arial,sans-serif;
color:#666;
padding:5px;
padding-left:10px;
}
div.itty:hover {
color:#333;
}
.itemType {
font-style:italic;
font-size:12pt;
}
#runSearchIcon {
border:1px solid #000;
}
|