summaryrefslogtreecommitdiff
path: root/searx/static/themes/simple/src/less/index.less
blob: 9a244da0070a60df077fdc93f6f62df6a5144d88 (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
#main_index {
  margin-top: 26vh;

  #linkto_preferences {
    right: 1.8rem;
  }
}

.index {
  text-align: center;

  .title {
    background: url('../img/searxng.png') no-repeat;
    min-height: 4rem;
    margin: 4rem auto;
    background-position: center;
    background-size: contain;
  }

  h1 {
    font-size: 4em;
    visibility: hidden;
  }

  #search,
  #search_header {
    margin: 0 auto;
    background: inherit;
    border: inherit;
    padding: 0;
    display: block;
  }

  .search_filters {
    display: block;
    margin: 1em 0;
  }

  .category label {
    padding: 6px 10px;
    border-bottom: initial !important;
  }
}

@media screen and (max-width: @tablet) {
  div.title {
    h1 {
      font-size: 1em;
    }
  }

  #main_index {
    margin-top: 6em;
  }
}

@media screen and (max-width: @phone) {
  #main_index {
    margin-top: 0;
  }
}