69 lines
1.1 KiB
CSS
Executable File
69 lines
1.1 KiB
CSS
Executable File
@import url(//fonts.googleapis.com/css?family=Gentium+Basic:400,700);
|
|
html, body {
|
|
min-width:300px;
|
|
height:auto;
|
|
background:transparent;
|
|
}
|
|
|
|
body {
|
|
overflow:hidden;
|
|
}
|
|
#search-results{
|
|
padding:20px 10px 0px 5px;
|
|
overflow:hidden;
|
|
}
|
|
#search-results iframe html{
|
|
border:none;
|
|
}
|
|
#search-results iframe {
|
|
min-width:300px;
|
|
}
|
|
|
|
h4{
|
|
padding-bottom: 10px;
|
|
margin: 0;
|
|
}
|
|
ol.search_list {
|
|
margin-left: 0;
|
|
padding-left: 10px;
|
|
list-style-type:none;
|
|
counter-reset: ol;
|
|
padding-top: 20px;
|
|
}
|
|
ol.search_list li:before {
|
|
content: counter(ol) ".";
|
|
counter-increment: ol;
|
|
float:left;
|
|
display:block;
|
|
width:20px;
|
|
text-align:right;
|
|
padding-right:10px;
|
|
margin:0px 0px 0 -30px
|
|
}
|
|
ol.search_list li {
|
|
padding-bottom:40px;
|
|
margin-left:15px;
|
|
}
|
|
span.match {
|
|
color:#bac494;
|
|
display:block;
|
|
font-weight:bold;
|
|
}
|
|
span.search {
|
|
color:#bac494;
|
|
|
|
}
|
|
.search_link{
|
|
font:bold 16px 'Gentium Basic';
|
|
color:#191919;
|
|
position:relative;
|
|
text-transform:uppercase;
|
|
top:-1px;
|
|
text-decoration: underline;
|
|
}
|
|
.search_link:hover{
|
|
color:#bac494;
|
|
text-decoration: none;
|
|
}
|
|
|