blob: ce855ed88b94e1917b974c8a42acd4303d2085f3 (
plain) (
blame)
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
|
.headNav {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
max-width: 95%;
margin: -10px auto;
font-family: "Quicksand";
}
.rightNav {
display: flex;
cursor: pointer;
overflow-x: auto;
}
.rightNav a {
text-decoration: underline;
color: var(--light-green);
font-size: 18px;
}
.rightNav p {
margin-right: 10px;
margin-left: 10px;
}
|