(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 }