source: trunk/style-klask.css @ 360

Last change on this file since 360 was 360, checked in by g7moreau, 6 years ago
  • Add a nice refresh arrow !
File size: 3.5 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.circle:hover {
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.refresh:after { 
126   content         : "\00A0\21bb";
127   }
128
129a.refresh:hover {
130   background      : #AAA;
131   }
132
133img.map {
134   width           : 100%;
135   object-fit      : contain;
136   padding-bottom  : 2ex;
137   }
138
139#navbar ul {
140   list-style      : none;
141   padding         : 0;
142   margin          : 0;
143   }
144
145#navbar li {
146   background      : #333;
147   border          : 1px solid #BBB;
148   border-bottom-width     : 0;
149   border-top-left-radius  : 1.5ex;
150   border-top-right-radius : 1.5ex;
151   color           : #FFF;
152   display         : block;
153   float           : left;
154   font-family     : Verdana;
155   font-size       : 110%;
156   margin          : 0;
157   padding         : 0.8ex 1.5ex;
158   text-align      : center;
159   text-decoration : none;
160   width           : 17ex;
161   }
162
163#navbar li:hover {
164   background      : #AAA;
165   }
166
167#navbar #selected {
168   border-color    : #333;
169   position        : relative;
170   top             : 1px;
171   background      : white;
172   color           : black;
173   font-weight     : bold;
174   }
175
176#content {
177   border          : 1px solid #333;
178   clear           : both;
179   padding-left    : 0.5ex;
180   padding-right   : 0.5ex;
181   padding-top     : 0ex;
182   padding-bottom  : 1.5ex;
183   background      : white;
184   }
Note: See TracBrowser for help on using the repository browser.