annotate static/css/pagination.css @ 515:ae89ba801e8b

For #194, convert the POTD management command to a celery task. Refactored to put the logic for the command into a function, and the command simply calls this function. The task can also just call this function. Added some basic tests for the new function.
author Brian Neal <bgneal@gmail.com>
date Wed, 14 Dec 2011 02:41:15 +0000
parents 88b2b9cb8c1f
children
rev   line source
bgneal@312 1 div.pagination {
bgneal@312 2 padding: 3px;
bgneal@312 3 }
bgneal@312 4 div.pagination ul {
bgneal@312 5 list-style-type: none;
bgneal@312 6 }
bgneal@312 7 div.pagination li {
bgneal@312 8 float: left;
bgneal@312 9 display: inline;
bgneal@312 10 margin: 0 5px 0 0;
bgneal@312 11 display: block;
bgneal@312 12 }
bgneal@312 13 div.pagination li a {
bgneal@312 14 color: #333;
bgneal@312 15 padding: 4px;
bgneal@312 16 border: 1px solid #333;
bgneal@312 17 text-decoration: none;
bgneal@312 18 float: left;
bgneal@312 19 }
bgneal@312 20 div.pagination li a:hover {
bgneal@312 21 color: #333;
bgneal@312 22 background: #57FEFF;
bgneal@312 23 border: 1px solid #333;
bgneal@312 24 }
bgneal@312 25 div.pagination li.current {
bgneal@312 26 color: #fff;
bgneal@312 27 border: 1px solid #333;
bgneal@312 28 padding: 4px;
bgneal@312 29 background: teal;
bgneal@312 30 }