-rw-r--r-- | htdocs/style.css | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/htdocs/style.css b/htdocs/style.css index 3ab1b6f..83e308f 100644 --- a/htdocs/style.css +++ b/htdocs/style.css | |||
@@ -116,6 +116,10 @@ div#content h1 { | |||
116 | font-weight: bold; | 116 | font-weight: bold; |
117 | text-align: center; | 117 | text-align: center; |
118 | margin: 1em; | 118 | margin: 1em; |
119 | clear: both; | ||
120 | } | ||
121 | div#content p a { | ||
122 | font-weight: bold; | ||
119 | } | 123 | } |
120 | 124 | ||
121 | div.insert { | 125 | div.insert { |
@@ -175,3 +179,27 @@ ul.sourcebrowser li.file a:hover { | |||
175 | border: 1px solid black; | 179 | border: 1px solid black; |
176 | color: white; | 180 | color: white; |
177 | } | 181 | } |
182 | |||
183 | div.prevnext { | ||
184 | margin: 1ex; | ||
185 | } | ||
186 | div.prevnext a { | ||
187 | margin: 0.5ex 1em; padding: 0.2ex 0.5ex; | ||
188 | display: block; width: 30%; | ||
189 | border: solid 1px gray; | ||
190 | color: black; | ||
191 | text-decoration: none; | ||
192 | } | ||
193 | div.prevnext a.prevnext-prev { | ||
194 | float: left; | ||
195 | text-align: left; | ||
196 | } | ||
197 | div.prevnext a.prevnext-next { | ||
198 | float: right; | ||
199 | text-align: right; | ||
200 | } | ||
201 | div.prevnext a:hover { | ||
202 | background: gray; | ||
203 | border: black 1px solid; | ||
204 | color: white; | ||
205 | } | ||