From f7a50d7314fb0983d822b3698a42e8a508376ca4 Mon Sep 17 00:00:00 2001 From: barbequesauce Date: Wed, 22 Aug 2018 17:10:25 -0400 Subject: [PATCH] Create alphabetSearch.css --- data/css/alphabetSearch.css | 39 +++++++++++++++++++++++++++++++++++++ 1 file changed, 39 insertions(+) create mode 100644 data/css/alphabetSearch.css diff --git a/data/css/alphabetSearch.css b/data/css/alphabetSearch.css new file mode 100644 index 00000000..8d4238ba --- /dev/null +++ b/data/css/alphabetSearch.css @@ -0,0 +1,39 @@ +div.alphabet { + position: relative; + display: table; + width: 100%; + margin-bottom: 1em; +} + +div.alphabet span { + display: table-cell; + color: #3174c7; + cursor: pointer; + text-align: center; + width: 3.5% +} + +div.alphabet span:hover { + text-decoration: underline; +} + +div.alphabet span.active { + color: black; +} + +div.alphabet span.empty { + color: red; +} + +div.alphabetInfo { + display: block; + position: absolute; + background-color: #111; + border-radius: 3px; + color: white; + top: 2em; + height: 1.8em; + padding-top: 0.4em; + text-align: center; + z-index: 1; +}