-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmenu.css
More file actions
56 lines (47 loc) · 1019 Bytes
/
menu.css
File metadata and controls
56 lines (47 loc) · 1019 Bytes
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
@charset "UTF-8";
body{
background: rgb(201, 198, 198);
margin: 0;
}
.menu-css {
font-family: "Trebuchet MS", Arial, Helvetica, sans-serif;
padding: 0;
list-style-type: none;
background-color: #4d5a62;
font-size: 12px;
width:500px;
}
.menu-css li {
float:left;
height:150px;
}
.menu-css li a {
text-decoration: none;
display: block;
padding: 0 15px;
line-height: 240px;
color: #ffffff;
height:150px;
}
.menu-css li:last-child a {
border: none;
}
.menu-css li a:hover {
background-color: #024069;
color: #FFF;
padding: 0 12px;
}
.menu-css li a:active {
background-color: #fff;
color: #333;
padding: 0 18px;
}
.menu-css li a {
/* Animation (Webkit, Gecko & Mozilla) */
-webkit-transition-duration: 0.20s;
-webkit-transition-timing-function: ease-out;
-moz-transition-duration: 0.20s;
-moz-transition-timing-function: ease-out;
-o-transition-duration: 0.20s;
-o-transition-timing-function: ease-out;
}