File size: 1,293 Bytes
f5071ca
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
56
57
58
59
60
61
62
63
64
65
66
67
68
.main-content {
  header {
    display: flex;
    align-items: center;
    padding: 0.5rem 0;

    h1 {
      font-size: 1.25rem;
      flex: 1;
    }
    nav {
      a {
        margin: 0 0.5rem;
        padding: 0.5rem;

        border-radius: 5px;
        &:hover {
          background-color: rgba(#3b49df, 0.1);
          color: var(--main-theme);
        }

        &:first-child {
          border: none;
          position: relative;
          font-weight:700;

          &:after {
            content: "";
            height: 3px;
            background-color: var(--main-theme);
            position: absolute;
            left: 0;
            right: 0;
            bottom: 0;
            border-radius: 5px;
            margin: 0 0.5rem;
            transition: all 0.2s;
          }

          &:hover:after {
            margin: 0;
            border-top-left-radius: 0;
            border-top-right-radius: 0;
          }
        }
      }
    }

    select {
      display: none;
      padding: 0.5rem;

      outline: none;
      border-radius: 5px;

      font-size: 1rem;
      color: var(--font-color);
      background-color: var(--main-0);

      border: 1px solid var(--main-3);

      &:focus {
        box-shadow: 0px 0px 1px 1px var(--main-theme);
      }
    }
  }
}