aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/css/itcss/components/menu.scss
blob: d01c24a7008a4fdbef47ec2689613fd4c2f4c772 (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
.menu {
  border-radius: 4px;
  background: rgba($black, .8);
  box-shadow: rgba($black, .15) 0 2px 2px 2px;
  min-width: 150px;
  color: $white;

  &__item {
    padding: 18px;
    display: flex;
    flex-flow: row nowrap;
    align-items: center;

    &--clickable {
      cursor: pointer;

      &:hover {
        background-color: rgba($white, .05);
      }

      &:active {
        background-color: rgba($white, .1);
      }
    }

    &__icon {
      height: 16px;
      width: 16px;
      margin-right: 14px;
    }

    &__text {
      font-size: 16px;
      line-height: 21px;
    }
  }

  &__divider {
    background-color: $scorpion;
    width: 100%;
    height: 1px;
  }
}