blob: a74988a726877df7000cd3df1193baa6d4952faf (
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
|
#main_index {
margin-top: 16em;
}
.index {
text-align: center;
.title {
background: url('../img/searx.png') no-repeat;
width: 100%;
min-height: 80px;
background-position: center;
}
h1 {
font-size: 5em;
visibility: hidden;
}
#search {
margin: 0 auto;
background: inherit;
border: inherit;
padding: 0;
}
.search_filters {
display: block;
margin: 1em 0;
}
.category label {
padding: 6px 10px;
border-bottom: initial !important;
}
}
@media screen and (max-width: 80em) {
div.title {
h1 {
font-size: 1em;
}
}
#main_index {
margin-top: 6em;
}
}
@media screen and (max-width: 50em) {
#main_index {
margin-top: 0;
}
}
|