-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmenu.css
124 lines (98 loc) · 1.58 KB
/
menu.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
body{
font-family:arial;
margin:0px;
padding:0px;
}
#bouge{
text-align:left;
color:white;
font-family:algerian;
border:groove;
margin: 0;padding: 0;
font-weight: 900;
font-size: 25px;
letter-spacing: 4px;
}
nav{
width:100%;
background:indigo;
}
nav > ul{
margin:0px;
padding:0px;
}
nav > ul::after{
content:"";
display:block;
clear:both;
}
nav > ul > li{
float:right;
position:relative;
}
nav > ul > li > a{
padding:10px 20px;
color:white;
}
nav a{
display:inline-block;
text-decoration:none;
}
nav li{
list-style-type:none;
border: groove;
border-radius: 10px;
border-right: none;
border-left: none;
}
nav li:hover .submenu{
display: inline-block;
position:absolute;
top:100%;
left:0px;
padding:0px;
z-index:1000;
}
.submenu{
display:none;
}
.submenu li{
border-top:2px solid gray;
}
.submenu li a{
padding:8px 18px;
font-size:18px;
color:indigo;
width:200px;
}
.menu{
height:100%;
width: 100%;
height: 80px;
line-height: 36px;
list-style-type:square;
text-align:left;
font-weight:bold;
text-decoration: none;
color:white;
text-transform:uppercase;
font-weight: 700;
padding:0;margin:0;
transition: linear 0.05s ease-in-out;
}
.m-left{
float:left;
}
.sub-menu{
border-bottom:hidden;
font-size: 10px 25px;
color: purple;
width: 270px;
display:inline-block;
}
#footer{
background: indigo;
color: white;
padding: 0;
margin: 0;
}