source: trunk/style-klask.css @ 338

Last change on this file since 338 was 338, checked in by g7moreau, 6 years ago
  • Very small CSS details
File size: 2.4 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           : #333;
22   background      : #000;
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
75.circle {
76   padding        : 2ex;
77   border-radius  : 50%;
78   color          : #FFF;
79   text-align     : center;
80   background     : #333;
81   }
82
83.circle a {
84   text-decoration: none;
85   }
86
87.circle a:hover {
88   background: #AAA;
89   }
90
91#navbar ul {
92   list-style: none;
93   padding: 0;
94   margin: 0;
95   }
96
97#navbar li {
98   float: left;
99   border: 1px solid #BBB;
100   border-bottom-width: 0;
101   margin: 0;
102   border-top-left-radius  : 1.5ex;
103   border-top-right-radius : 1.5ex;
104   }
105
106#navbar a {
107   text-decoration: none;
108   display: block;
109   background: #EEE;
110   padding: 0.8ex 2.5ex;
111   color: #00c;
112   width: 20ex;
113   text-align: center;
114   border-top-left-radius  : 1.5ex;
115   border-top-right-radius : 1.5ex;
116   }
117
118#navbar a:hover {
119   background: #DDF;
120   }
121
122#navbar #selected {
123   border-color: black;
124   }
125
126#navbar #selected a {
127   position: relative;
128   top: 1px;
129   background: white;
130   color: black;
131   font-weight: bold;
132   }
133
134#content {
135   border: 1px solid black;
136   clear: both;
137   padding-left: 0.5ex;
138   padding-right: 0.5ex;
139   padding-top: 0ex;
140   padding-bottom: 1.5ex;
141   }
Note: See TracBrowser for help on using the repository browser.