source: trunk/style-klask.css @ 335

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