aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/+signup/+register/steps/register-step-about.component.scss
blob: ab6d6dd4dfd0f6aa4a97ef118c71602d0ec81d61 (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
@use '_variables' as *;
@use '_mixins' as *;

h3 {
  font-weight: $font-bold;
  font-size: 24px;
}

h4 {
  font-size: 18px;
  font-weight: $font-bold;
}

.why {
  margin-bottom: 30px;
}

.callout {
  margin: 75px auto 25px;
  border-width: 2px;
  display: flex;

  .mascot-container {
    position: relative;

    .mascot {
      position: absolute;
      top: -65px;
    }
  }

  .callout-content {
    margin-left: 30px;

    p {
      margin: 0;
    }
  }
}

@media screen and (max-width: $small-view) {
  .callout {
    margin-top: 20px;

    .mascot-container {
      display: none;
    }

    .callout-content {
      margin-left: 0;
    }
  }
}