File: search.css

package info (click to toggle)
python-openstackdocstheme 3.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 3,008 kB
  • sloc: javascript: 8,326; python: 544; makefile: 162; sh: 152
file content (49 lines) | stat: -rw-r--r-- 751 bytes parent folder | download
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
.search-container-mobile
{
  display: none !important;
  position: relative !important;
  width: 100% !important;
}

.search-container {
  position: relative;
  display: none;
  float: left;
  width: 84%;
  top:10px;
}

@media (max-width: 767px), only screen and (max-device-width: 1024px) {
  .search-container-mobile
  {
    display: block !important;
  }

  .search-icon{
    display: none !important;
  }

  .search-container {
    display: none !important;
  }
}

.search-icon {
  display: none;
  padding: 17px 20px 16px;
  float: left;
  text-transform: uppercase;
  color: #8a959e;
  font-size: 12px;
  font-weight: 400;
}

.search-icon:hover {
  cursor: pointer;
  color: #8a959e;
}

.search-icon i {
  margin-right: 5px;
  color: #8a959e;
}