-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathnav.css
105 lines (98 loc) · 2 KB
/
nav.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
#navbox{
border: 2px solid blue;
height: 50px;
display: flex;
justify-content: space-around;
background-color: blue;
}
.two{
color: white;
}
.navTitle{
/* margin-top: 14px; */
padding: 14px;
color: white;
font-family: 'Times New Roman', Times, serif;
}
.navTitle:hover{
background-color: red;
cursor: pointer;
}
/* <<<<<<<<<<<<<<<<<<<<<Mobile and Tablets>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>>> */
#mobileNavbar{
border: 2px solid rgb(206, 11, 53);
width: max-content;
margin-top: 20px;
margin-left: 30px;
display:none;
background-color: blue;
}
#mobilehover:hover #mobileNavbar{
display: flex;
position: absolute;
}
.smartmobile{
color: white;
margin-left: 30px;
}
#three{
background-color: blue;
border: 1px solid red;
max-width: 40%;
min-width: 30%;
}
/* <<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<<Televisions>>>>>>>>>>>> */
#televisionNavbar{
border: 2px solid rgb(206, 11, 53);
/* height: 400px; */
width:max-content;
margin-left: 30px;
padding: 10px;
display: none;
background-color: blue;
margin-top: 20px;
}
#tele:hover #televisionNavbar{
display:flex ;
position: absolute;
}
.television{
color: white;
margin-left: 30px;
}
/* <<<<<<<<<<<<<<<<<<<<headphones>>>>>>>>>>>>>> */
#headphonesNavbar{
border: 2px solid rgb(206, 11, 53);
/* height: 400px; */
width: max-content;
margin-left: 30px;
margin-top: 20px;
display: none;
background-color: blue;
}
#headph:hover #headphonesNavbar{
display: flex;
position: absolute;
}
.headphones{
color: white;
margin-left: 30px;
}
/* <<<<<<<<<<<<<<<<<<<<<<<HomeApplinces */
#homeNavbar{
border: 2px solid rgb(206, 11, 53);
/* height: 400px; */
width: max-content;
margin-left: 30px;
display:none;
background-color: blue;
margin-top: 20px;
}
#home:hover #homeNavbar{
display: flex;
position: absolute;
}
.home{
color: white;
margin-left: 30px;
}