From 723db788dfc2ae83c03ca551908144ec6c47d6b9 Mon Sep 17 00:00:00 2001 From: Chris Jaekl Date: Wed, 29 Dec 2021 16:26:04 -0500 Subject: [PATCH] Adjust slider to be the full width of the page. --- app/index.html | 10 ++++++++-- app/lib.css | 11 +++++++++++ 2 files changed, 19 insertions(+), 2 deletions(-) diff --git a/app/index.html b/app/index.html index acddcc5..00d155e 100644 --- a/app/index.html +++ b/app/index.html @@ -19,8 +19,11 @@
- Showing 0 through 0 out of 0 matching books. +
+
+ +
(No books found)
@@ -30,8 +33,11 @@
- Showing 0 through 0 out of 0 matching books. +
+
+ +
diff --git a/app/lib.css b/app/lib.css index 1c4baa0..ae25cde 100644 --- a/app/lib.css +++ b/app/lib.css @@ -33,6 +33,10 @@ div.pager { text-align: left; } +div.slidercontainer { + width: 100%; +} + h1 { background-color: #004080; border-color: #004080; @@ -54,6 +58,13 @@ p.quote { text-align: justify; } +input.slider { + -webkit-appearance: none: + appearance: none; + width: 100%; + outline: none; +} + span.popup { } span.popup:hover { text-decoration: none; background: #cfffff; z-index: 6; } -- 2.30.2