summaryrefslogtreecommitdiff
path: root/src/web/styles/partials/_navbar.scss
blob: 0b9c9b114e5532cb3586b15172ed639fe12c0836 (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
@import "../theme/global";
@import "../theme/navbar";

#navbar {
  height: $navbarHeight;
  width: 100%;
  background-color: $navbarBackgroundColor;
  position: sticky;
  top: 0;
  box-shadow: $navbarShadow;

  ul {
    list-style-type: none;
    height: 100%;
    min-width: 400px;
    max-width: 500px;
    margin: 0 auto; 
    padding: 0;
    display: flex;
    justify-content: space-around;
    align-items: center;

    li {
      padding: 0;
      margin: 0 0.5em;
    }

    a {
      font-size: 1.3em;
      font-weight: 500;
      text-decoration: none;
      color: $navbarForegroundColor;
    }
  }
}