Began versioning.
[insider.git] / example / data / static / style.css
1 /* <body> */
2
3 body {
4   background: #eee;
5 }
6
7 .fullclear {
8   width:100%;
9   height:1px;
10   margin:0;
11   padding:0;
12   clear:both;
13 }
14
15 /* </body> */
16
17 /* <div id="navigation"> */
18
19 #navigation {
20   margin: 0;
21   padding: 4px 0 0 0;
22 }
23
24 #navigation ul {
25   list-style: none;
26   margin: 0;
27   padding: 0 0 0 12px;
28 }
29
30 #navigation ul li {
31   margin: 0;
32   padding: 0;
33   float: left;
34 }
35
36 #navigation ul li a {
37   display: block;
38   font-weight: bold;
39   text-decoration: none;
40   margin: 0;
41   padding: 5px 5px;
42   background-color: #eee;
43 }
44
45 #navigation ul li a:hover {
46   background-color: #ccc;
47 }
48
49 #navigation ul li.CurrentSection a {
50   background-color: #FFF;
51 }
52
53 #navigation ul li.CurrentSection a:hover {
54   background-color: #FFF;
55 }
56
57 #subnavigation ul li.CurrentSection a {
58   border-width: 0 0 1px 0;
59 }
60
61 /* </div id="navigation"> */
62
63 /* <div id="content"> */
64
65 #content {
66         width: 100%;
67         margin: 0;
68         padding: 0;
69   padding-top: 1em;
70   padding-bottom: 1em;
71   background: #fff;
72 }
73
74 table {
75   margin: auto;
76   border-collapse: collapse;
77 }
78
79 td, th {
80   padding-right: 1em;
81   text-align: left;
82 }
83
84 tr:nth-child(odd) {
85   background: #eee;
86 }
87
88 thead tr:nth-child(odd) {
89   background: #ccc;
90 }
91
92 /* </div id="content"> */