diff options
Diffstat (limited to 'webroot/css/pagination.css')
-rw-r--r-- | webroot/css/pagination.css | 39 |
1 files changed, 39 insertions, 0 deletions
diff --git a/webroot/css/pagination.css b/webroot/css/pagination.css new file mode 100644 index 0000000..5ad584e --- /dev/null +++ b/webroot/css/pagination.css @@ -0,0 +1,39 @@ +.pagination { + font-size: 80%; + text-decoration: none; + margin: 15px auto; + width: 800px; + text-align: center; +} +.pagination a, .pagination .dots, .pagination span.disabled { + box-shadow: 0 0 1px #ddd; + border: 1px solid #ccc; + display: inline-block; + color: #444; + margin-right: 3px; + padding: 6px 8px; + text-decoration: none; + -moz-border-radius: 3px; + -webkit-border-radius: 3px; + border-radius: 3px; +} +.pagination a, .pagination .dots { + background: #ccc; + background: -moz-linear-gradient(top, #eee, #ddd); + background: -webkit-linear-gradient(top, #eee, #ddd); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#dddddd'); + text-shadow: 0 0 2px #bbb; +} +.pagination span.disabled { + cursor: default; + text-shadow: 0 0 1px #ddd; +} +.pagination a:hover { + background: #ddd; +} +.pagination a.current { + background: #ccc; + background: -moz-linear-gradient(top, #bbb, #ddd); + background: -webkit-linear-gradient(top, #eee, #ddd); + filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#eeeeee', endColorstr='#dddddd'); +} |