aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/core/menu/menu-admin.component.scss
blob: 5881475f15b8aea9836fc4a86d9ed77ca7639c40 (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
menu {
  background-color: $black-background;
  padding: 25px;
  margin: 0;
  height: 100%;

  .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;
    }
  }
}