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

nav.less « less « assets « docs - github.com/twbs/bootstrap.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: fd3b3edec872e6efc147dd1ef64d13d4a96e1362 (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
.bs-docs-nav {
  margin-bottom: 0;
  background-color: #fff;
  border-bottom: 0;

  .bs-nav-b {
    display: none;
  }

  .navbar-brand,
  .navbar-nav > li > a {
    font-weight: 500;
    color: #563d7c;
  }

  .navbar-nav {
    > li > a {
      padding-right: 10px;
      padding-left: 10px;
    }

    > li > a:hover,
    > .active > a,
    > .active > a:hover {
      color: #463265;
      background-color: #f9f9f9;
    }
  }

  .navbar-toggle .icon-bar {
    background-color: #563d7c;
  }

  .navbar-header {
    .navbar-toggle {
      border-color: #fff;

      &:hover,
      &:focus {
        background-color: #f9f9f9;
        border-color: #f9f9f9;
      }
    }
  }

  .navbar-right {
    @media (min-width: 768px) and (max-width: 992px) {
      display: none;
    }
  }
}