Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
aos
GitHub Repository: aos/grafana-agent
Path: blob/main/web/ui/src/features/layout/Navbar.module.css
5283 views
1
.navbar {
2
display: flex;
3
position: relative;
4
background-color: #ffffff;
5
border-bottom: 1px solid #e4e5e6;
6
height: 30px;
7
8
padding: 10px 16px 10px 16px;
9
}
10
11
.navbar header, .navbar header img {
12
display: block;
13
height: 26px;
14
margin-top: 1px;
15
}
16
17
.navbar header img:hover {
18
cursor: pointer;
19
}
20
21
.navbar ul {
22
display: flex;
23
flex-direction: row;
24
list-style-type: none;
25
padding-left: 1.5em;
26
margin: 0px;
27
}
28
29
.navbar ul li {
30
display: list-item;
31
margin-right: 1em;
32
}
33
34
.navbar ul li, .navbar a {
35
color: #25292e;
36
font-family: 'Roboto', sans-serif;
37
text-decoration: none;
38
line-height: 225%;
39
}
40
41