summaryrefslogtreecommitdiff
path: root/WebInterface/NodeJSServer/src/style/about.scss
blob: 3b45674aa1caaec5776eb17f25e876380e72c654 (plain)
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
@import 'partials/base';
@import 'partials/backdrop/base';
@import 'partials/backdrop/menu';
@import 'partials/front-layer/base';
@import 'partials/front-layer/copyright';


h1, h2, p, a {
  margin: 0.5rem 1rem;
}

h1, h2 {
  margin-top: 1rem;
  text-align: center;
}

.front-layer {
  padding-bottom: 5rem;
  display: flex;
}

.about-container {
  flex-grow: 1;
  overflow-y: auto;
  margin: 0.5rem;
  display: flex;
  flex-direction: column;
  .about {
    flex-grow: 1;
  }

  .contact {
    margin: 1rem;
    display: grid;
    grid-template-columns: 1fr 5fr;
    grid-template-rows: 1fr 1fr 1fr 1fr 1fr;
    flex-direction: column;

    h2 {
      grid-column: 1/3;
    }
  }
}