source: trunk/style-klask.css @ 353

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