aboutsummaryrefslogtreecommitdiff
path: root/assets/pagination.css
diff options
context:
space:
mode:
authorJulien Dessaux2021-08-16 12:35:32 +0200
committerJulien Dessaux2021-08-16 12:35:32 +0200
commit78a6f5505d585fae4d32ae53304f7a1981263f4b (patch)
treef06b13877272ee11f6e6b4e115263326da4200f2 /assets/pagination.css
parentFix w3c css validator errors and updated fonts (diff)
downloadwww-78a6f5505d585fae4d32ae53304f7a1981263f4b.tar.gz
www-78a6f5505d585fae4d32ae53304f7a1981263f4b.tar.bz2
www-78a6f5505d585fae4d32ae53304f7a1981263f4b.zip
Switched to a solarized color scheme
Diffstat (limited to '')
-rw-r--r--assets/pagination.css21
1 files changed, 13 insertions, 8 deletions
diff --git a/assets/pagination.css b/assets/pagination.css
index ba568fb..abcb0c3 100644
--- a/assets/pagination.css
+++ b/assets/pagination.css
@@ -3,6 +3,9 @@
list-style:none;
border-radius:.25rem;
}
+.pagination li {
+ background-color: #002b36;
+}
.pagination li a {
border:1px solid rgba(0,0,0,.1);
position:relative;
@@ -11,23 +14,25 @@
line-height:1.25;
text-decoration: none;
}
-.pagination li:first-child a {
+.pagination .pagination-enabled:first-child a {
border-top-left-radius:.25rem;
border-bottom-left-radius:.25rem
}
-.pagination li:last-child a {
+.pagination .pagination-enabled:last-child a {
border-top-right-radius:.25rem;
border-bottom-right-radius:.25rem
}
-.pagination li a:hover {
- color:#1e53a0;
- background-color:#eee;
+.pagination .pagination-enabled a:hover {
+ background-color: #073642;
z-index: 999;
}
-.pagination-disabled {
- color: lightgray;
+.pagination-disabled a {
+ color: #839496;
+}
+.pagination-disabled a:hover {
+ color: #839496;
}
.pagination-active a {
color: white;
- background-color: #30638e;
+ background-color: #073642;
}