File size: 818 Bytes
c8210cf
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
.app {
  height: 100%;
  display: flex;
  justify-content: space-between;
  background: url(./assets/background.png) rgb(247, 248, 255);
  background-size: cover;
  overflow: hidden;
}

.content {
  padding-top: 64px;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  // display: flex;
  // justify-content: center;
}

.header {
  position: fixed;
  padding: 16px 32px;
  width: 100%;
  display: flex;
  align-items: center;
  box-sizing: border-box;

  &-nav {
    flex: 1;

    img {
      height: 40px;
    }

    a {
      display: inline-block;
      text-decoration: none;
      color: black;

      &:not(:first-of-type) {
        margin-left: 40px;
      }

      &.active {
        font-weight: bold;
      }
    }
  }

  &-opt {
    flex-shrink: 0;
    display: flex;
    align-items: center;
  }
}