forked from dinesh0085/Shemrush-Clone
-
Notifications
You must be signed in to change notification settings - Fork 0
/
semrush-navbar.css
124 lines (116 loc) · 2.17 KB
/
semrush-navbar.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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
*{
margin: 0px;
padding: 0px;
box-sizing: border-box;
font-family: sans-serif;
}
#container{
width: 100%;
}
#top{
width: 100%;
background-color:#111317;
text-align: center;
height: 3.5rem;
}
#top a{
text-decoration: none;
color: white;
}
#top ul{
display: flex;
justify-content: space-around;
list-style: none;
color: white;
margin: auto;
text-decoration: none;
align-items: center;
height: 56px;
}
#top ul li{
padding: 15px 0px;
cursor: pointer;
}
#top img{
width: 150px;
height: 50px;
margin-left: 100px;
margin-right: 20px;
}
#top img:hover{
background-color: transparent;
}
.dropDown{
display: none;
}
.deb{
display: none;
padding: 30px;
}
.deb h1,p{
text-align: start;
margin-top: 10px;
}
#top ul li:hover .dropDown{
display: inline-flex;
font-size: 13px;
position: absolute;
background-color:#111317;
margin-top: 30px;
margin-left: -120px;
justify-content: space-around;
box-shadow: rgba(0, 0, 0, 0.16) 0px 10px 36px 0px, rgba(0, 0, 0, 0.06) 0px 0px 0px 1px;
}
#top ul li:hover .dropDown .deb{
display:block;
}
#top ul li:hover .dropDown .deb h1{
color:white;
font-size: 22px;
line-height: 30px;
}
#top ul li:hover .dropDown .deb p{
color:grey;
text-align: start;
}
#top ul li:hover .dropDown .deb-img h1 img{
width: 30px;
height: 30px;
border-radius: 5px;
margin-left: 10px;
}
#top ul li:hover .dropDown .deb-img h1{
font-size: 18px;
margin-top: 10px;
margin-bottom: 20px;
}
#top ul li:hover .dropDown .deb-img {
text-align: start;
padding: 30px 0px;
}
#Signin{
display: flex;
width: 30%;
align-items: center;
justify-content: flex-end;
padding-right: 7%;
}
#Signin > p{
margin-right: 10px;
}
#Signin > button:nth-child(2){
padding: 5px 15px;
background-color: #111317;
border: 1px solid white;
color: white;
font-size: 15px;
border-radius: 5px;
}
#Signin > button:nth-child(3){
padding: 5px 15px;
background-color: #00BC98;
color: white;
font-size: 15px;
border-radius: 5px;
margin-left: 10px;
}