aboutsummaryrefslogtreecommitdiff
path: root/style/_header.scss
blob: a5a33d49e2571148c2cf04eb7c54e30cdc823b53 (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
header {
  display: flex;
  max-width: $page-width;
  margin: 0 auto;

  .logo-container {
    max-width: $page-width;
    height: 100%;
    margin: 0 auto;
    position: fixed;
    display: flex;
    flex-direction: column;

    .dotted-line {
      border-style: dotted;
      border-image-source: url('/assets/dots.svg');
      border-image-slice: 33% 33%;
      border-image-repeat: round;
      border-width: 0  8px 0 0;
      margin-top: 32px;
      width: 50%;
      flex-grow: 1;
    }
  }

  a {
    text-decoration: none;
  }

  .logo {
    width: $logo-width;
    height: $logo-width;
    border-radius: 50%;
  }

  .title {
    padding-left: $logo-width + $page-padding-between;
    height: $logo-width;
    display: flex;
    flex-direction: column;
    justify-content: center;

    .name {
      font-weight: bold;
      font-size: 1.5em;
    }
  }
}