remove counter headings css
[libreriscv.git] / local.css
1 html, body {
2 font-family: "Lato", "Helvetica Neue", Helvetica, Arial, sans-serif!important;
3 }
4
5 footer {
6 padding: 30px 0;
7 }
8
9 .list-group-item.active {
10 background-color: #4A90E2;
11 }
12
13 .bg-dark {
14 background-color: #0F2035!important;
15 border-color: #e7e7e7;
16 }
17
18 table th {
19 color: #eceeef;
20 background-color: #4A90E2;
21 border-color: #4A90E2;
22 }
23
24 /* Counter Headings Local
25 body {
26 counter-reset : h1;
27 }
28
29 h1 {
30 counter-reset : h2;
31 }
32
33 h2 {
34 counter-reset : h3;
35 }
36
37 h3 {
38 counter-reset : h4;
39 }
40
41 h4 {
42 counter-reset : h5;
43 }
44
45 h5 {
46 counter-reset : h6;
47 }
48
49 #content h1:before {
50 content : counter(h1,decimal) ". ";
51 counter-increment : h1;
52 }
53
54 #content h2:before {
55 content : counter(h1,decimal) "." counter(h2,decimal) ". ";
56 counter-increment : h2;
57 }
58
59 #content h3:before {
60 content : counter(h1,decimal) "." counter(h2,decimal) "." counter(h3,decimal) ". ";
61 counter-increment : h3;
62 }
63
64 #content h4:before {
65 content : counter(h1,decimal) "." counter(h2,decimal) "." counter(h3,decimal) "." counter(h4,decimal) ". ";
66 counter-increment : h4;
67 }
68
69 #content h5:before {
70 content : counter(h1,decimal) "." counter(h2,decimal) "." counter(h3,decimal) "." counter(h4,decimal) "." counter(h5,decimal) ". ";
71 counter-increment : h5;
72 }
73
74 #content h6:before {
75 content : counter(h1,decimal) "." counter(h2,decimal) "." counter(h3,decimal) "." counter(h4,decimal) "." counter(h5,decimal) "." counter(h6,decimal) ". ";
76 counter-increment : h6;
77 }
78
79 h1.nocount:before, h2.nocount:before, h3.nocount:before, h4.nocount:before, h5.nocount:before, h6.nocount:before {
80 content : "";
81 counter-increment : none;
82 }
83 */
84
85 table {
86 margin-left: 35px;
87 }
88
89 th, td {
90 border: 1px solid black;
91 }
92
93 td {
94 padding: 4px;
95 }
96
97 /*Forums*/
98 textarea{
99 font-family: monospace;
100 font-size: 1.2em;
101 }
102 input#comments{
103 font-family: "Inconsolata", "monaco", "droid sans mono",fixed;
104 }
105 input#comments{
106 font-family: "Inconsolata", "monaco", "droid sans mono",fixed;
107 }
108
109 pre {
110 padding-left: 30px;
111 }
112
113 /*
114 comment out now that isatables have been fixed
115 code {
116 font-family: Consolas,"courier new";
117 display: block;
118 white-space: pre-wrap
119 }
120 */
121
122 /* add colors as classes allowing markdown files to generate colored text */
123 .color-000 {
124 color: #000;
125 }
126
127 .color-008 {
128 color: #008;
129 }
130
131 .color-00F {
132 color: #00F;
133 }
134
135 .color-080 {
136 color: #080;
137 }
138
139 .color-088 {
140 color: #088;
141 }
142
143 .color-0F0 {
144 color: #0F0;
145 }
146
147 .color-0FF {
148 color: #0FF;
149 }
150
151 .color-800 {
152 color: #800;
153 }
154
155 .color-808 {
156 color: #808;
157 }
158
159 .color-880 {
160 color: #880;
161 }
162
163 .color-888 {
164 color: #888;
165 }
166
167 .color-CCC {
168 color: #CCC;
169 }
170
171 .color-F00 {
172 color: #F00;
173 }
174
175 .color-F0F {
176 color: #F0F;
177 }
178
179 .color-FF0 {
180 color: #FF0;
181 }
182
183 .color-FFF {
184 color: #FFF;
185 }
186
187 /*
188 * MEPY:
189 * Style for the notebox div element
190 * for use with the ikiwiki note template
191 */
192 .notebox {
193 background-color: #FFFFCC;
194 border-radius: 3px;
195 padding: 10px 1em;
196 border: 1px solid #f4f228;
197 margin: 10px 0;
198 }