-
Notifications
You must be signed in to change notification settings - Fork 0
/
navbar.css
81 lines (73 loc) · 1.33 KB
/
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
nav{
display: flex;
height: 80px;
box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}
#logo{
width: 90px;
height: 80px;
/* border: 1px solid black; */
}
#logo:hover{
cursor: pointer;
}
img{
width: 100%;
height: 100%;
/* border: 1px solid black; */
}
ul ul {
display: none;
position: absolute;
background-color: rgb(224, 223, 223);
border: 1px solid #ccc;
padding: 10px;
list-style: none;
}
h3:hover{
color: #C2185B;
}
li:hover > ul {
display: grid;
grid-template-columns: repeat(3,1fr);
gap: 10px;
list-style: none;
background-color: white;
box-shadow: rgba(0, 0, 0, 0.24) 0px 3px 8px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
cursor: pointer;
}
li>ul li:hover{
color: #C2185B;
}
li{
list-style: none;
}
a {
color: #333;
text-decoration: none;
display: block;
padding: 10px;
font-size: 18px;
font-weight: bold;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
#offer{
margin-top: 13px;
margin-left: 30px;
color: red;
}
.details{
display: grid;
grid-template-columns: repeat(3,1fr);
gap: 30px;
text-align: center;
margin-left: 450px;
margin-top: 15px;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
}
.logo{
width: 20px;
height: 20px;
padding-left: 30px;
}