aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/network-display/index.scss
blob: e9f2f2057406ea13f71b240125110667fcbde49e (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
52
53
54
55
56
57
.network-display {
  &__container {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    padding: 0 10px;
    border-radius: 4px;
    height: 25px;

    &--colored {
      background-color: lighten(rgb(125, 128, 130), 45%);
    }

    &--mainnet {
      background-color: lighten($blue-lagoon, 68%);
    }

    &--ropsten {
      background-color: lighten($crimson, 45%);
    }

    &--kovan {
      background-color: lighten($purple, 65%);
    }

    &--rinkeby {
      background-color: lighten($tulip-tree, 35%);
    }
  }

  &__name {
    font-size: .75rem;
    padding-left: 5px;
  }

  &__icon {
    height: 10px;
    width: 10px;
    border-radius: 10px;

    &--mainnet {
      background-color: $blue-lagoon;
    }

    &--ropsten {
      background-color: $crimson;
    }

    &--kovan {
      background-color: $purple;
    }

    &--rinkeby {
      background-color: $tulip-tree;
    }
  }
}