Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
RishiRecon
GitHub Repository: RishiRecon/exploits
Path: blob/main/css/nav.css
27877 views
1
* {
2
padding: 0;
3
margin: 0;
4
}
5
6
7
nav {
8
display: flex;
9
justify-content: space-between;
10
align-items: center;
11
padding: 0.8rem 2rem;
12
background: #0e70b0;
13
}
14
15
nav ul {
16
display: flex;
17
list-style: none;
18
}
19
20
nav li {
21
padding-left: 0.5rem;
22
}
23
24
nav a {
25
text-decoration: none;
26
color: #fff
27
}
28