-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathnewNav.css
More file actions
87 lines (75 loc) · 1.3 KB
/
newNav.css
File metadata and controls
87 lines (75 loc) · 1.3 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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
body{
margin: 0;
padding: 0;
}
nav{
width: 100%;
height: 75px;
margin-top: -16px;
background-color: #3a3a3a;
position: fixed;
z-index: 1;
}
/* nav ul */
.link-match{
float: right;
margin-right: 50px;
}
nav li{
list-style-type: none;
display: inline-block;
padding: 15px 20px 20px 20px;
}
nav li a{
text-decoration: none;
color: white;
font-family: 'Poppins', sans-serif;
font-size: small;
}
nav input[type="search"] {
border: 1px solid #dedede;
border-radius: 5px;
font-size: 13px;
padding: 5px;
width: 220px;
}
nav li span{
font-family: 'Poppins', sans-serif;
color: white;
position: relative;
letter-spacing: 7px;
}
.logo-name{
float: left;
}
#logo{
position: relative;
top: 10px;
border-radius: 50%;
width: 30px;
height: 30px;
}
.menu{
display: none;
}
@media screen and (max-width: 980px) {
.menu{
display: block;
float: right;
margin-right: -70px;
margin-top: 20px;
}
.link-match li{
display: none;
}
}
@media screen and (max-width: 930px) {
.link-match.responsive{
background-color: black;
}
.link-match.responsive li{
float: none;
display: block;
text-align: left;
}
}