forked from kiwix/kiwix-tools
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
92 lines
1.7 KiB
92 lines
1.7 KiB
#kiwixtoolbar {
|
|
position: fixed;
|
|
padding: .5em;
|
|
left:0;
|
|
right:0;
|
|
top: 0;
|
|
z-index:100;
|
|
}
|
|
|
|
#kiwixtoolbar > a {
|
|
float: left;
|
|
}
|
|
|
|
.height_separator {
|
|
height: 3em;
|
|
}
|
|
|
|
#kiwixsearchbox {
|
|
width: 20em;
|
|
}
|
|
|
|
.kiwix .kiwix_centered {
|
|
max-width: 55.8em;
|
|
margin: 0 auto;
|
|
}
|
|
.kiwix .kiwix_button_wrapper {
|
|
float: left;
|
|
}
|
|
.kiwix .kiwix_searchform {
|
|
float: right;
|
|
}
|
|
.kiwix #kiwixtoolbar button,
|
|
.kiwix #kiwixtoolbar #kiwixsearchform input[type="submit"] {
|
|
margin-right: 5px;
|
|
padding: 0 6px;
|
|
border: 1px solid #999;
|
|
border-radius: 3px;
|
|
background-color: #ededed;
|
|
font-weight: normal;
|
|
cursor: pointer;
|
|
}
|
|
.kiwix #kiwixtoolbar a {
|
|
margin-bottom: 5px;
|
|
}
|
|
.kiwix #kiwixtoolbar a > button {
|
|
font-size: 16px;
|
|
}
|
|
.kiwix #kiwixtoolbar #kiwixsearchform input {
|
|
border: 1px solid #999;
|
|
border-radius: 3px;
|
|
background-color: #fff;
|
|
padding: 2px 2px 2px 3px;
|
|
}
|
|
|
|
/* Try to fix buggy stuff in jquery-ui autocomplete */
|
|
#ui-id-1, .ui-autocomplete {
|
|
background: white !important;
|
|
border: solid 1px grey !important;
|
|
}
|
|
|
|
li.ui-state-focus {
|
|
font-weight: bold;
|
|
}
|
|
|
|
/* Specific CSS for Bookeen Cybook device (800x600 B&W ereader) */
|
|
.cybook #kiwixtoolbar button, .cybook #kiwixtoolbar input {
|
|
font-size: 1.5em;
|
|
}
|
|
.cybook #kiwixsearchbox {
|
|
width: 7em;
|
|
}
|
|
.cybook a {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
/* the breakpoint "645px" is the width of the 3 btns "library", "home" and "randoml" */
|
|
@media (max-width: 645px) {
|
|
.kiwixsearch {
|
|
float: none;
|
|
margin-top: 5px;
|
|
}
|
|
#kiwixsearchbox {
|
|
width: 65%;
|
|
}
|
|
#kiwixsearchform input[type="submit"] {
|
|
width: 30%;
|
|
}
|
|
.height_separator {
|
|
height: 6em;
|
|
}
|
|
}
|