-
Notifications
You must be signed in to change notification settings - Fork 12
Expand file tree
/
Copy pathhits.css
More file actions
97 lines (81 loc) · 1.14 KB
/
Copy pathhits.css
File metadata and controls
97 lines (81 loc) · 1.14 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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
#hits {
position:relative;
}
/* Container for each result */
.r {
margin:20px 10px;
font-size:13px;
color:#545454;
}
/* Page titles */
.r h3 {
font-size:18px;
font-weight:normal;
margin:0;
}
.r h3 a {
color: #1a0dab;
}
.r h3 a:visited {
color: #609;
}
/* Page URLs */
.r .u a {
color:#006621;
}
.r .u a:hover {
text-decoration:none;
}
/* Ellipsis for the titles and links */
.r h3, .r .u {
white-space: nowrap;
overflow: hidden;
text-overflow: ellipsis;
}
/* Message when there are zero results */
.z {
padding:10px;
}
.info {
position:absolute;
top:-17px;
right:11px;
font-size:11px;
left: 106px;
}
/* Result count */
#c {
color: #999;
float: right;
}
/* Truncate query notice */
#e {
color: #999;
left: 11px;
text-align:left;
font-size:11px;
padding-left: 10px;
float: left;
}
/* Pagination */
#pager {
padding:20px 20px 20px 116px;
}
#pager a {
padding-right:20px;
}
/* Speed debug infos */
#dbg {
float:right;
text-align:right;
padding:10px;
font-size:12px;
color:#999
}
#dbg span {
min-width:110px;
display:inline-block;
}
body.full #dbg, body.full #pager {
display:none;
}