source: trunk/style-klask.css @ 346

Last change on this file since 346 was 346, checked in by g7moreau, 7 years ago
  • Small bug in navbar corner
File size: 2.9 KB
Line 
1body {
2   background      : #DBF9CF;
3   }
4
5h1{
6   text-align      : center;
7   font-family     : Verdana;
8   font-size       : 120%;
9   margin          : 2.5ex;
10   }
11
12table.sortable {
13   border-collapse : collapse;
14   font-family     : Verdana;
15   }
16
17table.sortable caption {
18   caption-side    : bottom;
19   text-align      : center;
20   text-decoration : underline;
21   }
22
23table.sortable th {
24   color           : #FFF;
25   background      : #333;
26   }
27
28th.klask-header-left {
29   border-top-left-radius     : 1ex;
30   }
31
32th.klask-header-right {
33   border-top-right-radius    : 1ex;
34   }
35
36th.klask-footer-left {
37   border-bottom-left-radius  : 1ex;
38   }
39
40th.klask-footer-right {
41   border-bottom-right-radius : 1ex;
42   }
43
44table.sortable td {
45   border          : 1px solid #AAA;
46   border-top      : 1px solid #AAA;
47   border-bottom   : 1px solid #AAA;
48   border-left     : 1px solid #AAA;
49   border-right    : 1px solid #AAA;
50   }
51
52tr.odd td {
53   background      : #DBF9CF;
54   border-collapse : collapse;
55   font-family     : Courier;
56   padding-left    : 0.5ex;
57   padding-right   : 0.5ex;
58   }
59
60tr.even td {
61   background      : #FFF;
62   border-collapse : collapse;
63   font-family     : Courier;
64   padding-left    : 0.5ex;
65   padding-right   : 0.5ex;
66   }
67
68td.bklask-port {
69   text-align      : right;
70   }
71
72td.bklask-arrow {
73   text-align      : left;
74   text-indent     : -5.5ex;
75   padding-left    : 6.5ex !important;
76   }
77
78a.circle {
79   padding         : 2ex;
80   border-radius   : 50%;
81   color           : #FFF;
82   text-align      : center;
83   background      : #333;
84   }
85
86a.circle {
87   text-decoration : none;
88   }
89
90a:hover.circle {
91   background      : #AAA;
92   }
93
94p.copyright {
95   text-align      : right;
96   margin-right    : 10ex;
97   }
98
99#navbar ul {
100   list-style      : none;
101   padding         : 0;
102   margin          : 0;
103   }
104
105#navbar li {
106   float           : left;
107   margin          : 0;
108   border          : 1px solid #BBB;
109   border-bottom-width     : 0;
110   border-top-left-radius  : 1.5ex;
111   border-top-right-radius : 1.5ex;
112   background      : #333;
113   }
114
115#navbar li:hover {
116   background      : #AAA;
117   }
118
119#navbar a {
120   text-decoration : none;
121   font-family     : Verdana;
122   font-size       : 110%;
123   display         : block;
124   padding         : 0.8ex 2.5ex;
125   color           : #FFF;
126   width           : 20ex;
127   text-align      : center;
128   border-top-left-radius  : 1.5ex;
129   border-top-right-radius : 1.5ex;
130   }
131
132#navbar #selected {
133   border-color    : black;
134   background      : white;
135   }
136
137#navbar #selected a {
138   position        : relative;
139   top             : 1px;
140   background      : white;
141   color           : black;
142   font-weight     : bold;
143   }
144
145#content {
146   border          : 1px solid black;
147   clear           : both;
148   padding-left    : 0.5ex;
149   padding-right   : 0.5ex;
150   padding-top     : 0ex;
151   padding-bottom  : 1.5ex;
152   background      : white;
153   }
Note: See TracBrowser for help on using the repository browser.