summaryrefslogtreecommitdiffstats
path: root/client/src/login/scss/_loginPanel.scss
blob: 8afb066684779c555b867312f421514bb3f3440d (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
.login-panel {
  text-align: center;

  &__form {
    display: inline-block;
  }

  &__header {
    color: white;
    font-size: 2em;
    margin-bottom: 4em;
  }

  &__button {
    display: inline-block;
    color: $text-inactive;
    background: $background;
    font-size: 1.25em;
    border-radius: 1em;
    border: 2px solid $text-inactive;
    padding: .5em 1.5em;
    margin: 0 auto;
    transition: .3s color, .3s background;
    cursor: pointer;

    &:hover {
      background: $text-inactive;
      color: $background;
    }

    &.active {
      background: $background;
      color: $text-selected;
      border: 2px solid $text-selected;

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

}