aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/css/itcss/components/welcome-screen.scss
blob: dc8b38399b9e59c5c0a389597a1498f08ab1eef1 (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
.welcome-screen {
    display: flex;
    flex-flow: column;
    justify-content: center;
    align-items: center;
    font-family: Roboto;
    font-weight: 400;
    width: 100%;
    height: 100%;
    padding: 70px 0;
    background: $white;

    &__info {
        display: flex;
        flex-flow: column;
        width: 100%;
        height: 100%;
        align-items: center;

        &__header {
            font-size: 1.65em;
            margin-bottom: 14px;
        }

        &__copy {
            font-size: 1em;
            width: 400px;
            max-width: 90vw;
            text-align: center;
        }
    }

    &__button {
      height: 54px;
      width: 198px;
      box-shadow: 0 2px 4px 0 rgba(0,0,0,0.14);
      color: #FFFFFF;
      font-size: 20px;
      font-weight: 500;
      line-height: 26px;
      text-align: center;
      text-transform: uppercase;
      margin: 35px 0 14px;
      transition: 200ms ease-in-out;
      background-color: rgba(247, 134, 28, 0.9);
    }
}