orcinus-search/orcinus/css/search.css

54 lines
1 KiB
CSS
Raw Normal View History

2023-04-13 12:27:41 +00:00
/* ***** Orcinus Site Search - Default Search Result CSS ********** */
2023-04-12 02:02:16 +00:00
#os_results ol > li {
margin-bottom:1em;
}
#os_results ol > li > header > span,
#os_results ol > li > header > a {
font-size:120%;
}
#os_results ol > li > blockquote,
#os_results ol > li > blockquote > p{
margin:0.2em 0;
}
#os_results ol > li > footer > cite {
color:#008800;
}
#os_results nav > ul {
list-style-type:none;
padding-left:0;
display:flex;
justify-content:center;
}
#os_results nav > ul li {
padding-left:0.3em;
padding-right:0.3em;
}
2023-04-12 23:08:00 +00:00
#os_results form {
2023-04-12 02:02:16 +00:00
text-align:center;
}
2023-04-13 01:32:06 +00:00
#os_results > footer {
text-align:center;
}
/* ***** Typeahead input and dropdown menu styles ****************** */
2023-04-13 12:03:25 +00:00
.os_typeahead.tt-hint {}
.os_typeahead.tt-input {}
.os_typeahead ~ .tt-menu {
2023-04-12 23:08:00 +00:00
background-color:#fff;
border:1px solid #000;
text-align:left;
2023-04-13 12:03:25 +00:00
width:100%;
2023-04-12 23:08:00 +00:00
}
2023-04-13 12:03:25 +00:00
.os_typeahead ~ .tt-menu .tt-suggestion {
2023-04-12 23:08:00 +00:00
overflow:hidden;
white-space:nowrap;
text-overflow:ellipsis;
}
2023-04-13 12:03:25 +00:00
.os_typeahead ~ .tt-menu .tt-suggestion.tt-cursor {
2023-04-12 23:08:00 +00:00
background-color: #ccc;
cursor:pointer;
}