-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathheader.component.css
More file actions
72 lines (64 loc) · 1.05 KB
/
Copy pathheader.component.css
File metadata and controls
72 lines (64 loc) · 1.05 KB
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
60
61
62
63
64
65
66
67
68
69
70
71
72
.nav {
display: flex;
justify-content: space-between;
}
.nav h1 {
color: blueviolet;
margin: 0;
font-size: 40px;
}
.nav .nav-search {
flex: 1;
display: flex;
margin-left: 5%;
margin-right: 5%;
margin-top: 5px;
}
.nav .nav-search input {
flex: 1;
color: blueviolet;
border: 1px solid blueviolet;
height: 39px;
border-right: none;
}
.nav .nav-search button{
color: blueviolet;
border: 1px solid blueviolet;
height: 39px;
}
.nav ul {
display: inline-flex;
margin: 0;
padding: 0;
list-style-type: none;
}
.nav ul li{
padding-left: 15px;
padding-top: 15px;
}
.nav ul a {
text-decoration: none;
color: blueviolet;
cursor: pointer;
}
h1 a{
color: blueviolet;
text-decoration: none;
}
.suggested-search{
position: absolute;
top: 40px;
z-index: 10;
display: list-item !important;
border: 1px solid #ddd;
background-color: #fff;
width: 300px;
}
.suggested-search li {
padding:5px;
border: 1px solid #ddd;
}
.suggested-search li a{
cursor: pointer;
color: blueviolet;
}