Switch to unified view

a/web/static/style.css b/web/static/style.css
...
...
5
5
6
* { 
6
* { 
7
    font-family: inherit;
7
    font-family: inherit;
8
}
8
}
9
9
10
#menu ul {
10
ul#menu {
11
    padding: 0;
11
    margin: 20 0 20 0;
12
    margin: 20 0 20 0;
12
}
13
}
13
14
14
#menu ul li {
15
ul#menu li {
15
    display: inline;
16
    display: inline;
16
    line-height: 30px;
17
    line-height: 30px;
17
    padding-left: 3px;
18
    padding-left: 3px;
18
}
19
}
19
20
20
#menu ul li a {
21
ul#menu li a {
21
    background-color: transparent;
22
    background-color: #eee;
22
    background-repeat: repeat-x;
23
    padding: 8px 12px 8px 12px;
23
    padding: 8px 12px 8px 12px;
24
    text-decoration: none;
25
    border-radius: 4px 4px 0 0;
24
    font-size: 12px;
26
    font-size: 12px;
25
    font-weight: bold;
27
    font-weight: bold;
26
}
28
}
27
29
28
#menu ul li a:hover {
30
ul#menu li a:hover {
29
    background: #aaa;
31
    background-color: #aaa;
30
    color: #4A4A24;
32
    color: #4A4A24;
31
    text-decoration: none;
33
    text-decoration: none;
32
}
34
}
33
35
34
a { 
36
a {