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

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

use localstorage to store/restore settings

File size: 1.0 KB
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    color: HighlightText;
19    font-size: 14px;
20    line-height: 2.8;
21/*    background: #9fb7d4;*/
22    background: #9f9f90;
23    text-decoration: none;
24    border-right: 1px solid #eee;
25    box-sizing: border-box;
26    z-index: var(--menu-z-index);
27}
28
29.nav > li:hover > a {/*layer-1*/
30/*  color: orange;
31  background: #afc6e2;*/
32  color: MenuText
33/*  background: Menu*/
34  background: #afc6e2;
35}
36
37.nav > li.disabled > a {/*layer-1*/
38  color: white;
39  background: white;
40}
41
42.nav li ul {
43  width: 150px;
44  display: none;
45/*  margin-left: -40px;*/
46  position: absolute;
47    z-index: var(--menu-z-index);
48
49/*  hight: 30px; */
50}
51
52.nav > li li:hover > a {/*layer-2*/
53  color: olive;
54  background: #afc6e2;
55
56}
57.nav li ul li a {
58  border-top: 1px solid #eee;
59    z-index: var(--menu-z-index);
60
61}
62
Note: See TracBrowser for help on using the repository browser.