aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/modal/admin-welcome-modal.component.scss
blob: d19ff9bded1b567ff7e1a121102636d54d58460b (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
@use '_variables' as *;
@use '_mixins' as *;

.two-columns {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 50px;
}

.mascot-fw {
  width: 170px;
}

.mascot {
  @include margin-right(2rem);

  display: block;
  min-width: 170px;
}

.subtitle {
  font-weight: $font-semibold;
  margin-bottom: 10px;
}

.block-documentation {
  .subtitle {
    margin-bottom: 20px;
  }
}

li {
  margin-bottom: 10px;
}

.configure-instance {
  text-align: center;
  font-weight: 600;
  font-size: 18px;
  margin: 20px 0 40px;
}

.columns {
  display: flex;
}

.link-block {
  @include disable-default-a-behaviour;

  color: pvar(--mainForegroundColor);
  padding: 10px;
  transition: background-color 0.2s ease-in;
  flex-basis: 33%;

  &:hover {
    background-color: rgba(0, 0, 0, 0.05);
  }

  .link-title {
    font-weight: $font-semibold;
    display: flex;
    justify-content: center;
    margin-bottom: 5px;
  }

  .link-title,
  div {
    text-align: center;
  }
}