source: trunk/style-klask.css @ 345

Last change on this file since 345 was 345, checked in by g7moreau, 7 years ago
  • Add a background color
File size: 2.8 KB
Line 
1body {
2   background      : #EFE;
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   }
113
114#navbar a {
115   text-decoration : none;
116   display         : block;
117   background      : #333;
118   padding         : 0.8ex 2.5ex;
119   color           : #FFF;
120   width           : 20ex;
121   text-align      : center;
122   border-top-left-radius  : 1.5ex;
123   border-top-right-radius : 1.5ex;
124   }
125
126#navbar a:hover {
127   background      : #AAA;
128   }
129
130#navbar #selected {
131   border-color    : black;
132   }
133
134#navbar #selected a {
135   position        : relative;
136   top             : 1px;
137   background      : white;
138   color           : black;
139   font-weight     : bold;
140   }
141
142#content {
143   border          : 1px solid black;
144   clear           : both;
145   padding-left    : 0.5ex;
146   padding-right   : 0.5ex;
147   padding-top     : 0ex;
148   padding-bottom  : 1.5ex;
149   background      : white;
150   }
Note: See TracBrowser for help on using the repository browser.