blob: 7bd4478bf8dc0299d0d19b6fb4375e4d4539654b (
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
65
66
67
68
69
70
71
|
/* Sticky footer styles
-------------------------------------------------- */
html {
position: relative;
min-height: 100%;
}
body {
/* Margin bottom by footer height */
margin-bottom: 80px;
}
.footer {
position: absolute;
bottom: 0;
width: 100%;
/* Set the fixed height of the footer here */
height: 60px;
}
input[type=checkbox]:checked ~ .label_hide_if_checked {
display:none;
}
input[type=checkbox]:not(:checked) ~ .label_hide_if_not_checked {
display:none;
}
.search_categories {
margin:10px 0;
text-transform: capitalize;
}
.result-default {
clear: both;
}
.result-images {
float: left !important;
}
.result-videos {
clear: both;
}
.result-torrents {
clear: both;
}
.img-thumbnail {
margin: 5px;
max-height: 128px;
min-height: 128px;
}
.suggestion_item {
margin: 2px 5px;
}
.result_download {
margin-right: 5px;
}
#pagination {
margin-top: 30px;
padding-bottom: 50px;
}
.cursor-text {
cursor: text !important;
}
|