summaryrefslogtreecommitdiff
path: root/client/colors.less
blob: 87fe9597b927a19f40a5920a0b04fcf646914292 (plain)
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
body {
  .page {
    div.login-wrapper {
      display: flex;
      align-items: center;
      justify-content: center;
      height: auto;
      min-height: 1000px;
      div.login {
        text-align: center;
        flex: 0 0 auto;
        h1 {
          color: #67C288;
          font-size: 6em;
          font-weight: bold;
        }
        h2 {
          margin-top: 80px;
          font-size: 3.3em;
          font-weight: bold;
        }
        button.login {
          margin-top: 100px;
          color: #fff;
          font-size: 2.8em;
          background-color: #67C288;
          padding: 7px 35px;
          border: 0px;
          line-height: 72px;
          &:hover, &:active {
            background-color: #5DA577;
          }
        }
      }
    }
  }
}