aboutsummaryrefslogtreecommitdiff
path: root/app/src/styles/Navbar.module.css
blob: 09ad94c6f30b5b746768a9c3c206999c48365fa6 (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
.navbar {
  display: flex;
  justify-content: space-between;
  background-color: #3b4148;
  color: white;
  padding: 15px;
}

.link {
  margin: 0 20px;
  position: relative;
  display: inline-block;
  text-decoration: none;
  color: #ccc;
  font-size: 20px;
  font-weight: 600;
}

.link::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 2px;
  background-color: #ccc;
  transition: width 0.3s ease;
}

.link:hover::after {
  width: 100%;
}

.circleUp {
  color: rgb(122, 224, 122);
}

.circleDown {
  color: rgb(218, 112, 112);
}

.left {
  margin-left: 50px;
}

.right {
  margin-right: 50px;
}