-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstyle.css
82 lines (81 loc) · 1.4 KB
/
style.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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
*{
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.navbar{
position: sticky;
top:0;
left: 0;
width: 100;
background: bisque;
z-index: 9;
}
.nav{
padding: 10px 10vw;
display: flex;
justify-content: space-between;
}
.logo{
height: 2px;
}
.nav-items{
display: flex;
align-items: center;
}
.search{
width:500px;
display: flex;
}
.search-box{
width: 80%;
height:40px;
padding: 10px;
border-top-left-radius: 10px;
border-bottom-left-radius: 10px;
border: 1px solid black;
text-transform: capitalize;
background: none;
outline: none;
}
.search-btn{
width:20%;
height: 40px;
padding: 10px 20px;
cursor: pointer;
background:rgb(179, 143, 100);
text-transform: capitalize;
font-size: 15px;
border-top-right-radius: 10px;
border-bottom-right-radius: 10px;
}
.search-box::placeholder{
color:black;
}
.nav-items a{
margin-left: 20px;
}
.nav-items a img{
width: 30px;
}
.links-container{
width:100%;
display: flex;
padding: 10px 10vw;
justify-content:center;
list-style: none;
border-top: 1px solid whitesmoke;
}
.link{
text-transform: capitalize;
padding: 0 10px;
margin: 0 5px;
text-decoration: none;
color:black;
opacity: 0.5;
transition: 0.5s;
}
.link:hover{
opacity: 1;
}