redray
2008-10-25 56dfe60128f99d4199154f7df443723b07c13480
commit | author | age
56dfe6 1 @charset "UTF-8";
R 2 /**
3  * "Yet Another Multicolumn Layout" - (X)HTML/CSS Framework
4  *
5  * (en) Horizontal list navigation - ISPConfig 3: default theme
6  * (de) Horizontale Navigationsliste - ISPConfig 3: default theme
7  *
8  * @copyright       Copyright 2005-2008, Dirk Jesse
9  * @license         CC-A 2.0 (http://creativecommons.org/licenses/by/2.0/),
10  *                  YAML-C (http://www.yaml.de/en/license/license-conditions.html)
11  * @link            http://www.yaml.de
12  * @package         yaml
13  * @version         3.0.6
14  * @revision        $Revision: 202 $
15  * @lastmodified    $Date: 2008-06-07 14:29:18 +0200 (Sa, 07 Jun 2008) $
16  */
17
18 @media all
19 {
20       #topNav ul {
21         list-style: none;
22         padding: 0;
23         margin: 0;
24     }
25     
26     #topNav li {
27         display: inline;
28         margin: 0 2px 0 0;
29     }
30     
31     #topNav a {
32         padding: 0 1.5em;
33         text-decoration: none;
34         color: black;
35         background: #d3d3d3;
36     }
37     
38     #topNav a:hover {
39         background: #fc0;
40         color: #540;
41     }
42     
43     #topNav #topNav_current {
44     }
45     
46     #topNav #topNav_current a {
47         padding-bottom: 2px;
48         font-weight: bold;
49         color: #ff6600;
50         background: #ffffff;
51     }
52 }