source: trunk/src/ajax/css/navi.css

Last change on this file was 328, checked in by lgiessmann, 14 years ago

fixed ticket #75 --> changed license terms from LGPL to LLGPL in the trunk tree

File size: 1.9 KB
Line 
1/*----------------------------------------------------------------------------*/
2/*  Isidorus                                                                  */
3/*  (c) 2008-2010 Marc Kuester, Christoph Ludwig, Lukas Georgieff             */
4/*                                                                            */
5/*  Isidorus is freely distributable under the LLGPL license.                 */
6/*  This ajax module uses the frameworks PrototypeJs and Scriptaculous, both  */
7/*  are distributed under the MIT license.                                    */
8/*  You can find a detailed description in trunk/docs/LLGPL-LICENSE.txt,      */
9/*  trunk/docs/LGPL-LICENSE.txt and in                                        */
10/*  trunk/src/ajax/javascripts/external/MIT-LICENSE.txt.                      */
11/*----------------------------------------------------------------------------*/
12
13#navi {
14    background-color: #aebae3;
15    width: 1022px;
16    margin-left: auto;
17    margin-right: auto;
18    padding-top: 10px;
19    padding-bottom: 5px;
20    border-left: 1px solid #d1d1d3;
21    border-top: 1px solid #d1d1d3;
22    border-right: 1px solid #d1d1d3;
23}
24
25#navi > span {
26    color: #fbfcff;
27    cursor: pointer;
28    border-left: 1px solid #aebae3;
29    border-top: 1px solid #aebae3;
30    border-right: 1px solid #aebae3;
31    padding-left: 3px;
32    padding-right: 3px;
33    padding-top: 3px;
34    padding-bottom: 5px;
35    font-weight: bold;
36}
37
38#navi > span:first-child {
39    border-left: none;
40}
41
42#navi > span:first-child:hover {
43    border-left: none;
44}
45
46#navi > span:hover {
47    color: #333377;
48    background-color: #fbfcff;
49    border-left: 1px solid #d1d1d3;
50    border-top: 1px solid #d1d1d3;
51    border-right: 1px solid #d1d1d3;
52}
53
54#navi > .isActive {
55    color: #333377;
56    background-color: #fbfcff;
57    border-left: 1px solid #d1d1d3;
58    border-top: 1px solid #d1d1d3;
59    border-right: 1px solid #d1d1d3;
60}
61
62#navi > .isActive:hover {
63    color: #333377;
64    background-color: #fbfcff;
65}
Note: See TracBrowser for help on using the repository browser.