Welcome to mirror list, hosted at ThFree Co, Russian Federation.

search.less « site « less « assets « src - github.com/ForkAwesome/Fork-Awesome.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: a9c8bb68686fc0fa364e43aeb31cd6f92fbaf522 (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
#search {
  position: relative;
  font-size: 18px;
  padding-top: 40px;
  margin: -20px auto 0px;

  label {
    position: absolute;
    left: 17px;
    top: 51px;
  }

  #search-input, .hint {
    padding-left: 43px;
    padding-right: 43px;
    border-radius: 23px;
  }

  .hint {
    color: #aaa;
  }

  #search-clear {
    text-decoration: none;
    position: absolute;
    right: 18px;
    top: 54px;
    color: @text-muted;
    &:hover {
      color: mix(#000, @text-muted, 20%);
    }
  }
}

#search-results {
  em {
    font-style: normal;
    text-decoration: underline;
  }
}