aboutsummaryrefslogtreecommitdiff
path: root/frontend/scss/special.scss
blob: 1d92eb3a7cda18c03bec97cc7ab3ac2e8abe7601 (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
44
45
46
47
48
49
50
header {
  max-width: var(--width-deco);
  height: var(--height-header);

  margin: 0 auto var(--margin-header) auto;
  padding-bottom: 2rem;

  display: flex;
  flex-direction: row;
  gap: 2rem;

  border-bottom: var(--color-light) 2px solid;

  @media only screen and (max-width: 600px) {
    flex-direction: column;
    height: auto;
    min-height: var(--height-header);
    & img {
      width: max(33%, 128px);
      margin: 0 auto;
    }
  }

  & nav {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 0.5rem;

    & a {
      display: block;

      min-width: 8rem;

      font-family: monospace;
    }
  }
}

footer {
  max-width: var(--width-deco);
  height: var(--height-header);

  margin: var(--margin-header) auto 0 auto;
  padding-top: 2rem;

  border-top: var(--color-light) 2px solid;

  font-size: var(--font-size-tiny);
}