source: branches/testa/css/menu.css @ 23

Last change on this file since 23 was 23, checked in by anonymous, 6 years ago

init

File size: 937 bytes
Line 
1.nav {
2    overflow: hidden;
3    width 750px;
4    margin: 0 auto;
5    padding: 0;
6    display: flex;
7}
8.nav li {
9    list-style: none;
10    z-index: var(--menu-z-index);
11}
12.nav li a {
13    display: block;
14    width: 150px;
15    height: 40px;
16    text-align: center;
17    color: #fff;
18    font-size: 14px;
19    line-height: 2.8;
20    background: #9fb7d4;
21    text-decoration: none;
22    border-right: 1px solid #eee;
23    box-sizing: border-box;
24    z-index: var(--menu-z-index);
25}
26
27.nav > li:hover > a {/*layer-1*/
28  color: orange;
29  background: #afc6e2;
30}
31
32.nav > li.disabled > a {/*layer-1*/
33  color: white;
34  background: white;
35}
36
37.nav li ul {
38  width: 150px;
39  display: none;
40/*  margin-left: -40px;*/
41  position: absolute;
42    z-index: var(--menu-z-index);
43
44  hight: 30px;
45}
46
47.nav > li li:hover > a {/*layer-2*/
48  color: olive;
49  background: #afc6e2;
50
51}
52.nav li ul li a {
53  border-top: 1px solid #eee;
54    z-index: var(--menu-z-index);
55
56}
57
Note: See TracBrowser for help on using the repository browser.