aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/welcome.scss
blob: cfdcc80ad3a26810726e39a8b5e6099d13bd33db (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
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
.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 {
      text-align: center;
      width: 480px;
      margin: 80px auto 0 auto;
      display: flex;
      align-items: center;
      flex-wrap: wrap;
      background: #FFF;
      border-radius: 6px;
      padding: 20px 20px 5px;
    }

    &__featured-service {
      width: 35px;
      height: 35px;
      margin: 0 10px 15px;
      filter: grayscale(1)
      opacity(0.5);
      transition: 0.5s filter, 0.5s opacity;

      &:hover {
        filter: grayscale(0);
        opacity: (1);
      }

      img {
        width: 35px;
      }
    }
  }
}