source: trunk/style-klask.css @ 350

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