remove more css
[libreriscv.git] / local.css
1 /* Counter Headings */
2 body {
3 counter-reset : h1;
4 }
5
6 h1 {
7 counter-reset : h2;
8 }
9
10 h2 {
11 counter-reset : h3;
12 }
13
14 h3 {
15 counter-reset : h4;
16 }
17
18 h4 {
19 counter-reset : h5;
20 }
21
22 h5 {
23 counter-reset : h6;
24 }
25
26 #content h1:before {
27 content : counter(h1,decimal) ". ";
28 counter-increment : h1;
29 }
30
31 #content h2:before {
32 content : counter(h1,decimal) "." counter(h2,decimal) ". ";
33 counter-increment : h2;
34 }
35
36 #content h3:before {
37 content : counter(h1,decimal) "." counter(h2,decimal) "." counter(h3,decimal) ". ";
38 counter-increment : h3;
39 }
40
41 #content h4:before {
42 content : counter(h1,decimal) "." counter(h2,decimal) "." counter(h3,decimal) "." counter(h4,decimal) ". ";
43 counter-increment : h4;
44 }
45
46 #content h5:before {
47 content : counter(h1,decimal) "." counter(h2,decimal) "." counter(h3,decimal) "." counter(h4,decimal) "." counter(h5,decimal) ". ";
48 counter-increment : h5;
49 }
50
51 #content h6:before {
52 content : counter(h1,decimal) "." counter(h2,decimal) "." counter(h3,decimal) "." counter(h4,decimal) "." counter(h5,decimal) "." counter(h6,decimal) ". ";
53 counter-increment : h6;
54 }
55
56 h1.nocount:before, h2.nocount:before, h3.nocount:before, h4.nocount:before, h5.nocount:before, h6.nocount:before {
57 content : "";
58 counter-increment : none;
59 }
60
61 table {
62 margin-left: 35px;
63 }
64
65 table, th, td {
66 border: 1px solid black;
67 }
68
69 td {
70 padding: 4px;
71 }
72
73 /*Forums*/
74 textarea{
75 font-family: monospace;
76 font-size: 1.2em;
77 }
78 input#comments{
79 font-family: "Inconsolata", "monaco", "droid sans mono",fixed;
80 }
81 input#comments{
82 font-family: "Inconsolata", "monaco", "droid sans mono",fixed;
83 }
84
85