aboutsummaryrefslogtreecommitdiffstats
path: root/apps/Radio/styles/_list.scss
blob: 08e37cc46c71223490840a4346faa640cd8ae3b4 (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
.list {
  padding: 10px;
  height: 100%;
  overflow-y: auto;

  & > div {
    & > div {
      padding: 8px 0;
      display: flex;
      justify-content: left;
      align-items: center;
      transition: .3s background-color;

      @media(hover: hover) {
        &:hover {
          background-color:  var(--color-button-alt);
        }
      }

      & > img {
        margin-right: 10px;
        height: 75px;
        width: 75px;
      }

      & > div {
        padding-top: .5rem;
        & > span {
          display: inline-block;
          font-weight: 600;
          color: var(--color-text-alt);
        }

        & > div {
          & > span {
            color: var(--color-text);
          }
          & > div {
            & > span {
              display: inline-block;
              background-color:  var(--color-button);
              padding: 0.25rem;
              margin: 0.5rem .5rem 0.5rem 0;;
              border-radius: .25rem;
            }
          }
        }
      }
    }
  }
}