summaryrefslogtreecommitdiffstats
path: root/client/src/admin/scss/_mainScreen.scss
blob: 4eec73a2d929b0b554c43f3928244802e5f081f0 (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
.main-screen {
  text-align: center;

  &__header {
    display: block;
    margin-top: 10vh;
    margin-bottom: 20vh;
    font-size: 300%;
    color: white;
    text-align: center;
  }

  &__list {
    display: inline-block;
  }

  &__item {
    font-size: 175%;
    color: white;
    transition: color .3s;
    cursor: pointer;
    margin-top: 5vh;
    margin-bottom: 5vh;

    &:hover {
      color: $text-selected;
    }
  }

}