diff --git a/add_these_to_current_sites.md b/add_these_to_current_sites.md index e779951..76f1998 100644 --- a/add_these_to_current_sites.md +++ b/add_these_to_current_sites.md @@ -1,12 +1,51 @@ # add these to current sites - ## add these to peildo and other IA sites -.site-branding__name a { - color: inherit; - font-size: clamp(1.5rem, 3vw, 2rem); + +.site-branding**name a { +color: inherit; +font-size: clamp(1.5rem, 3vw, 2rem); +} +.site-branding**slogan a { +color: inherit; +font-size: clamp(1rem, 3vw, 1.5rem); } -.site-branding__slogan a { - color: inherit; - font-size: clamp(1rem, 3vw, 1.5rem); + +# facet button tweaks + +```css +/* facets */ +.facet-wrapper .advanced-search-form { + input[type="submit"] { + padding-inline: 1rem; + margin-inline-end: 0.5rem; + transition: all 0.3s ease; + } + + input[type="submit"]:focus, + input[type="submit"]:hover { + background: #fff; + box-shadow: 0px 5px 11px -2px rgb(0 0 0 / 39%); + } + + input[type="submit"].advanced-search-form__search:hover, + input[type="submit"].advanced-search-form__add:hover { + background: lightgreen; + } + + input[type="submit"].advanced-search-form__reset:hover, + input[type="submit"].advanced-search-form__remove:hover { + background: lightpink; + } + + select { + margin-bottom: 1.125rem; + margin-inline-end: 0.5rem; + padding-inline-end: 1.5rem; + min-width: 5.5rem; + } + input[type="text"] { + width: 100%; + } } +```