set textarea to monospace, something keeps messing about
[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
114 /*Forums*/
115 form{
116 font-size: .9em;
117 font-family: "Inconsolata", "monaco", "droid sans mono",fixed;
118 margin-left: 0em;
119 margin-top: 1.2em;
120 padding-bottom: 2em;
121 }
122 textarea{
123 font-family: monospace;
124 font-size: .9em;
125 border: solid 1px;
126 width: 100%;
127 margin-bottom: 10px;
128 }
129 input#comments{
130 font-family: "Inconsolata", "monaco", "droid sans mono",fixed;
131 font-size: .9em;
132 width: 550px;
133 line-height: 1em;
134 background-color: #fff;
135 border: solid 1px;
136 }
137 input#comments{
138 font-family: "Inconsolata", "monaco", "droid sans mono",fixed;
139 font-size: .9em;
140 width: 550px;
141 line-height: 1em;
142 background-color: #fff;
143 border: solid 1px;
144 }
145 input[type="submit"]{
146 font-family:
147 font-size: .9em;
148 font-weight: bold;
149 line-height: 1em;
150 background-color: #ddd;
151 margin-right: 1.1em;
152 margin-top: 10px;
153 padding: 3px;
154 text-align: center;
155 width: 9.5em;
156 border: solid 1px;
157 }
158
159