aboutsummaryrefslogtreecommitdiffstats
path: root/src/styles/welcome.scss
blob: 09d02d2eb235aaa7d9d9d05eae214c135b3a5b64 (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
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
.auth .welcome {
  height: auto;

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

  &__logo {
    width: 100px;
  }

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

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

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

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

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

    .button {
      margin-right: 25px;
    }
  }

  .button {
    border-color: #fff;
    color: #fff;
    cursor: pointer;

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

    &__inverted {
      background: #fff;
      color: $theme-brand-primary;
    }

    &__inverted:hover {
      background: none;
      color: #fff;
    }

    &__change-server {
      display: flex;
      width: 30%;
      margin: 5% auto 5% auto;
      justify-content: center;
    }
  }

  &__featured-services {
    align-items: center;
    background: #fff;
    border-radius: 6px;
    display: flex;
    flex-wrap: wrap;
    margin: 80px auto 0 auto;
    padding: 20px 20px 5px;
    text-align: center;
    width: 480px;
    height: auto;
  }

  &__featured-service {
    margin: 0 10px 15px;
    height: 35px;
    @media (prefers-reduced-motion: no-preference) {
      transition: 0.5s filter, 0.5s opacity;
    }
    width: 35px;

    img {
      width: 35px;
      height: 35px;
    }
  }
}