source: trunk/style-klask.css @ 359

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