aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/core/menu/menu.component.scss
blob: 45679c310b7d4767582cfc95c7a439a68ad21735 (plain) (blame)
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
menu {
  background-color: $black-background;
  padding: 15px;
  margin: 0;
  height: 100%;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  z-index: 1000;

  @media screen and (max-width: 550px) {
    font-size: 90%;
  }

  @media screen and (min-width: 1200px) {
    padding: 25px;
  }

  .panel-block {
    margin-bottom: 15px;
  }

  .block-title {
    text-transform: uppercase;
    font-weight: bold;
    color: $menu-color-block;
    margin-bottom: 10px;
  }

  a {
    display: block;
    margin-left: 5px;
    height: 30px;
    color: $menu-color-link;
    cursor: pointer;
    transition: color 0.3s;

    &:hover, &:focus {
      text-decoration: none !important;
      outline: none !important;
    }

    .glyphicon {
      margin-right: 15px;
    }

    &:hover, &.active {
      color: #fff;
    }
  }
}