-
Notifications
You must be signed in to change notification settings - Fork 0
/
styleNav.css
59 lines (51 loc) · 951 Bytes
/
styleNav.css
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
* {
margin: 0;
padding: 0;
}
.navbar {
display: flex;
position: sticky;
align-items: center;
justify-content: center;
top: 0px;
cursor: pointer;
background-color: antiquewhite;
border-top: 2px solid;
border-color:darksalmon;
}
a:link{
font-size: 110%;
text-decoration: none;
color:blueviolet;
}
.nav-list {
width: 50%;
display: flex;
}
.nav-list li {
list-style: none;
padding: 26px 30px;
}
.nav-list li a:hover {
color: black;
}
.rightNav {
width: 50%;
text-align: right;
}
#search {
padding: 5px;
font-size: 17px;
border: 2px solid grey;
border-radius: 9px;
}
.button{
background-color:darksalmon;
color: white;
border-style: solid;
border-radius: 7px;
border-color: darksalmon;
height: 50px;
width: 100px;
text-shadow: none;
}