aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/welcome.scss
blob: 5365921fb52b21f9e43de17c31fcd1c80b51055e (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
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
.auth {
  .welcome {

    &__content {
      display: flex;
      align-items: center;
      justify-content: center;
      color: #FFF;
    }

    &__logo {
      width: 100px;
    }

    &__text {
      margin-left: 40px;
      padding-left: 40px;
      border-left: 1px solid #FFF;

      h1 {
        font-size: 60px;
        letter-spacing: -0.4rem;
        margin-bottom: 5px;
      }

      h2 {
        margin-left: 2px;
        margin-bottom: 0;
      }
    }

    &__services {
      width: 100%;
      max-width: 800px;
      height: 100%;
      max-height: 600px;
      margin-left: -450px;
    }

    &__buttons {
      display: block;
      margin-top: 100px;
      text-align: center;

      .button:first-of-type {
        margin-right: 25px;
      }
    }

    .button {
      border-color: #FFF;
      color: #FFF;

      &:hover {
        background: #FFF;
        color: $theme-brand-primary;
      }
    }

    &__featured-services {
      margin-top: 150px;
      text-align: center;
      margin-top: 80px;
    }

    &__featured-service {
      width: 35px;
      margin-right: 30px;

      &:last-of-type {
        margin-right: 0;
      }
    }
  }
}