annotate static/css/pagination.css @ 821:71db8076dc3d

Bandmap WIP: geocoding integrated with add form. Add form works. Before submitting the form, client side JS makes a geocode request to Google and populates hidden lat/lon fields with the result. Successfully created a model instance on the server side. Still need to update admin dashboard, admin approval, and give out badges for adding bands to the map. Once that is done, then work on displaying the map with filtering.
author Brian Neal <bgneal@gmail.com>
date Tue, 23 Sep 2014 20:40:31 -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 }