source: trunk/style-klask.css @ 344

Last change on this file since 344 was 343, checked in by g7moreau, 6 years ago
  • CSS style for copyright
File size: 2.5 KB
Line 
1
2h1{
3   text-align      : center;
4   font-family     : Verdana;
5   font-size       : 120%;
6   margin          : 2.5ex;
7   }
8
9table.sortable {
10   border-collapse : collapse;
11   font-family     : Verdana;
12   }
13
14table.sortable caption {
15   caption-side    : bottom;
16   text-align      : center;
17   text-decoration : underline;
18   }
19
20table.sortable th {
21   color           : #FFF;
22   background      : #333;
23   }
24
25th.klask-header-left {
26   border-top-left-radius : 1ex;
27   }
28
29th.klask-header-right {
30   border-top-right-radius : 1ex;
31   }
32
33th.klask-footer-left {
34   border-bottom-left-radius : 1ex;
35   }
36
37th.klask-footer-right {
38   border-bottom-right-radius : 1ex;
39   }
40
41table.sortable td {
42   border          : 1px solid #AAA;
43   border-top      : 1px solid #AAA;
44   border-bottom   : 1px solid #AAA;
45   border-left     : 1px solid #AAA;
46   border-right    : 1px solid #AAA;
47   }
48
49tr.odd td {
50   background      : #DBF9CF;
51   border-collapse : collapse;
52   font-family     : Courier;
53   padding-left    : 0.5ex;
54   padding-right   : 0.5ex;
55   }
56
57tr.even td {
58   background      : #FFF;
59   border-collapse : collapse;
60   font-family     : Courier;
61   padding-left    : 0.5ex;
62   padding-right   : 0.5ex;
63   }
64
65td.bklask-port {
66   text-align      : right;
67   }
68
69td.bklask-arrow {
70   text-align      : left;
71   text-indent     : -5.5ex;
72   padding-left    : 6.5ex !important;
73   }
74
75a.circle {
76   padding         : 2ex;
77   border-radius   : 50%;
78   color           : #FFF;
79   text-align      : center;
80   background      : #333;
81   }
82
83a.circle {
84   text-decoration : none;
85   }
86
87a:hover.circle {
88   background      : #AAA;
89   }
90
91p.copyright {
92   text-align      : right;
93   margin-right    : 10ex;
94   }
95
96#navbar ul {
97   list-style: none;
98   padding: 0;
99   margin: 0;
100   }
101
102#navbar li {
103   float: left;
104   border: 1px solid #BBB;
105   border-bottom-width: 0;
106   margin: 0;
107   border-top-left-radius  : 1.5ex;
108   border-top-right-radius : 1.5ex;
109   }
110
111#navbar a {
112   text-decoration: none;
113   display: block;
114   background: #333;
115   padding: 0.8ex 2.5ex;
116   color: #FFF;
117   width: 20ex;
118   text-align: center;
119   border-top-left-radius  : 1.5ex;
120   border-top-right-radius : 1.5ex;
121   }
122
123#navbar a:hover {
124   background: #AAA;
125   }
126
127#navbar #selected {
128   border-color: black;
129   }
130
131#navbar #selected a {
132   position: relative;
133   top: 1px;
134   background: white;
135   color: black;
136   font-weight: bold;
137   }
138
139#content {
140   border: 1px solid black;
141   clear: both;
142   padding-left: 0.5ex;
143   padding-right: 0.5ex;
144   padding-top: 0ex;
145   padding-bottom: 1.5ex;
146   }
Note: See TracBrowser for help on using the repository browser.