remove padding on search form
[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 form#searchform{
123 font-size: .9em;
124 font-family: "Inconsolata", "monaco", "droid sans mono",fixed;
125 margin-left: 0em;
126 margin-top: 0em;
127 padding-bottom: 0em;
128 }
129 textarea{
130 font-family: monospace;
131 font-size: .9em;
132 border: solid 1px;
133 width: 100%;
134 margin-bottom: 10px;
135 }
136 input#comments{
137 font-family: "Inconsolata", "monaco", "droid sans mono",fixed;
138 font-size: .9em;
139 width: 550px;
140 line-height: 1em;
141 background-color: #fff;
142 border: solid 1px;
143 }
144 input#comments{
145 font-family: "Inconsolata", "monaco", "droid sans mono",fixed;
146 font-size: .9em;
147 width: 550px;
148 line-height: 1em;
149 background-color: #fff;
150 border: solid 1px;
151 }
152 input[type="submit"]{
153 font-family:
154 font-size: .9em;
155 font-weight: bold;
156 line-height: 1em;
157 background-color: #ddd;
158 margin-right: 1.1em;
159 margin-top: 10px;
160 padding: 3px;
161 text-align: center;
162 width: 9.5em;
163 border: solid 1px;
164 }
165
166