diff options
author | ArthurHoaro <arthur@hoa.ro> | 2016-02-27 23:21:11 +0100 |
---|---|---|
committer | ArthurHoaro <arthur@hoa.ro> | 2016-08-07 12:17:36 +0200 |
commit | 4d7cd1b0e2ff3c4ac5df03774640164f681b5e96 (patch) | |
tree | 28f8dd493c0d338a8eb8e0446d0c83288dac50ab /tpl/default/css | |
parent | d63f7cf5b8a25bba0de8ee11202edda3ca062eb4 (diff) | |
download | Shaarli-4d7cd1b0e2ff3c4ac5df03774640164f681b5e96.tar.gz Shaarli-4d7cd1b0e2ff3c4ac5df03774640164f681b5e96.tar.zst Shaarli-4d7cd1b0e2ff3c4ac5df03774640164f681b5e96.zip |
Linklist paging
Diffstat (limited to 'tpl/default/css')
-rw-r--r-- | tpl/default/css/shaarli.css | 88 |
1 files changed, 87 insertions, 1 deletions
diff --git a/tpl/default/css/shaarli.css b/tpl/default/css/shaarli.css index 4ec976b1..2fd477b3 100644 --- a/tpl/default/css/shaarli.css +++ b/tpl/default/css/shaarli.css | |||
@@ -195,11 +195,97 @@ body { | |||
195 | } | 195 | } |
196 | 196 | ||
197 | /** | 197 | /** |
198 | * CONTENT | 198 | * CONTENT - GENERAL |
199 | */ | 199 | */ |
200 | #content { | 200 | #content { |
201 | position: relative; | 201 | position: relative; |
202 | box-shadow: 0 -2px 1em #797979; | 202 | box-shadow: 0 -2px 1em #797979; |
203 | z-index: 2; | 203 | z-index: 2; |
204 | background: url(../img/noise.png) #979797; | 204 | background: url(../img/noise.png) #979797; |
205 | } | ||
206 | |||
207 | /** | ||
208 | * CONTENT - LINKLIST PAGING | ||
209 | */ | ||
210 | @media screen and (min-width: 35.5em) { | ||
211 | .linklist-paging { | ||
212 | margin: 2.1em 0 0 0; | ||
213 | } | ||
214 | } | ||
215 | |||
216 | @media screen and (min-width: 64em) { | ||
217 | .linklist-paging { | ||
218 | margin: 0; | ||
219 | } | ||
220 | } | ||
221 | |||
222 | .linklist-filters { | ||
223 | margin: 10px 0; | ||
224 | color: #252525; | ||
225 | } | ||
226 | |||
227 | .linklist-filters span { | ||
228 | margin: 0 0 0 10px; | ||
229 | } | ||
230 | |||
231 | .linklist-filters a { | ||
232 | padding: 2px 5px; | ||
233 | text-decoration: none; | ||
234 | } | ||
235 | |||
236 | .linklist-filters .filter-off { | ||
237 | color: #252525; | ||
238 | background: #c8c8c8; | ||
239 | } | ||
240 | |||
241 | .linklist-filters .filter-on { | ||
242 | color: #b0ddce; | ||
243 | background: #1b926c; | ||
244 | } | ||
245 | |||
246 | .linklist-pages { | ||
247 | margin: 10px 0; | ||
248 | color: #252525; | ||
249 | text-align: center; | ||
250 | } | ||
251 | |||
252 | .linklist-pages a { | ||
253 | color: #252525; | ||
254 | text-decoration: none; | ||
255 | } | ||
256 | |||
257 | .linklist-pages a:hover { | ||
258 | color: #fff; | ||
259 | } | ||
260 | |||
261 | .linksperpage { | ||
262 | margin: 10px 0; | ||
263 | text-align: right; | ||
264 | color: #252525; | ||
265 | } | ||
266 | |||
267 | .linksperpage a { | ||
268 | padding: 2px 5px; | ||
269 | text-decoration: none; | ||
270 | color: #252525; | ||
271 | background: #c8c8c8; | ||
272 | border: solid 1px #979797; | ||
273 | } | ||
274 | |||
275 | .linksperpage form { | ||
276 | display: inline; | ||
277 | margin: 0 10px 0 0; | ||
278 | } | ||
279 | |||
280 | .linksperpage input[type="text"] { | ||
281 | width: 28px; | ||
282 | height: 20px; | ||
283 | margin: 0 0 5px 0; | ||
284 | padding: 3px 5px 3px 8px; | ||
285 | background: #c8c8c8; | ||
286 | border: medium none currentColor; | ||
287 | border-radius: 25px; | ||
288 | box-shadow: 0 1px 0 rgba(255, 255, 255, 0.078), 0 1px 4px rgba(0, 0, 0, 0.298) inset; | ||
289 | color: #252525; | ||
290 | font-size: 0.8em; | ||
205 | } \ No newline at end of file | 291 | } \ No newline at end of file |