(no commit message)
[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 table {
85 margin-left: 35px;
86 }
87
88 th, td {
89 border: 1px solid black;
90 }
91
92 td {
93 padding: 4px;
94 }
95
96 /*Forums*/
97 textarea{
98 font-family: monospace;
99 font-size: 1.2em;
100 }
101 input#comments{
102 font-family: "Inconsolata", "monaco", "droid sans mono",fixed;
103 }
104 input#comments{
105 font-family: "Inconsolata", "monaco", "droid sans mono",fixed;
106 }
107
108 pre {
109 padding-left: 30px;
110 }
111
112 /*
113 comment out now that isatables have been fixed
114 code {
115 font-family: Consolas,"courier new";
116 display: block;
117 white-space: pre-wrap
118 }
119 */
120
121 /* add colors as classes allowing markdown files to generate colored text */
122 .color-000 {
123 color: #000;
124 }
125
126 .color-008 {
127 color: #008;
128 }
129
130 .color-00F {
131 color: #00F;
132 }
133
134 .color-080 {
135 color: #080;
136 }
137
138 .color-088 {
139 color: #088;
140 }
141
142 .color-0F0 {
143 color: #0F0;
144 }
145
146 .color-0FF {
147 color: #0FF;
148 }
149
150 .color-800 {
151 color: #800;
152 }
153
154 .color-808 {
155 color: #808;
156 }
157
158 .color-880 {
159 color: #880;
160 }
161
162 .color-888 {
163 color: #888;
164 }
165
166 .color-CCC {
167 color: #CCC;
168 }
169
170 .color-F00 {
171 color: #F00;
172 }
173
174 .color-F0F {
175 color: #F0F;
176 }
177
178 .color-FF0 {
179 color: #FF0;
180 }
181
182 .color-FFF {
183 color: #FFF;
184 }