annotate static/css/pagination.css @ 697:67f8d49a9377

Cleaned up the code a bit. Separated the S3 stuff out into its own class. This class maybe should be in core. Still want to do some kind of context manager around the temporary file we are creating to ensure it gets deleted.
author Brian Neal <bgneal@gmail.com>
date Sun, 08 Sep 2013 21:02:58 -0500
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 }