add table css styling back in
[libreriscv.git] / local.css
1 /* Sticky footer styles
2 -------------------------------------------------- */
3 html {
4 position: relative;
5 min-height: 100%;
6 }
7 body {
8 /* Margin bottom by footer height */
9 margin-bottom: 60px;
10 }
11 .footer {
12 position: absolute;
13 bottom: 0;
14 width: 100%;
15 /* Set the fixed height of the footer here */
16 height: 60px;
17 background-color: #f5f5f5;
18 }
19
20
21 /* Custom page CSS
22 -------------------------------------------------- */
23 /* Not required for template or sticky footer method. */
24
25 body > .container {
26 padding: 60px 15px 0;
27 }
28 .container .text-muted {
29 margin: 20px 0;
30 }
31
32 .footer > .container {
33 padding-right: 15px;
34 padding-left: 15px;
35 }
36
37 code {
38 font-size: 80%;
39 }
40
41
42 /* Counter Headings */
43 body {
44 counter-reset : h1;
45 }
46
47 h1 {
48 counter-reset : h2;
49 }
50
51 h2 {
52 counter-reset : h3;
53 }
54
55 h3 {
56 counter-reset : h4;
57 }
58
59 h4 {
60 counter-reset : h5;
61 }
62
63 h5 {
64 counter-reset : h6;
65 }
66
67 #content h1:before {
68 content : counter(h1,decimal) ". ";
69 counter-increment : h1;
70 }
71
72 #content h2:before {
73 content : counter(h1,decimal) "." counter(h2,decimal) ". ";
74 counter-increment : h2;
75 }
76
77 #content h3:before {
78 content : counter(h1,decimal) "." counter(h2,decimal) "." counter(h3,decimal) ". ";
79 counter-increment : h3;
80 }
81
82 #content h4:before {
83 content : counter(h1,decimal) "." counter(h2,decimal) "." counter(h3,decimal) "." counter(h4,decimal) ". ";
84 counter-increment : h4;
85 }
86
87 #content h5:before {
88 content : counter(h1,decimal) "." counter(h2,decimal) "." counter(h3,decimal) "." counter(h4,decimal) "." counter(h5,decimal) ". ";
89 counter-increment : h5;
90 }
91
92 #content h6:before {
93 content : counter(h1,decimal) "." counter(h2,decimal) "." counter(h3,decimal) "." counter(h4,decimal) "." counter(h5,decimal) "." counter(h6,decimal) ". ";
94 counter-increment : h6;
95 }
96
97 h1.nocount:before, h2.nocount:before, h3.nocount:before, h4.nocount:before, h5.nocount:before, h6.nocount:before {
98 content : "";
99 counter-increment : none;
100 }
101
102 table {
103 margin-left: 35px;
104 }
105
106 table, th, td {
107 border: 1px solid black;
108 }
109
110 td {
111 padding: 4px;
112 }
113