mirror of
git://github.com/kovidgoyal/calibre.git
synced 2026-05-05 21:53:43 +02:00
139 lines
2.3 KiB
CSS
139 lines
2.3 KiB
CSS
body {
|
|
background-color: #fffcf2;
|
|
font-family: sans-serif;
|
|
margin: 0 0 0 0;
|
|
padding: 0 0 0 0;
|
|
}
|
|
|
|
#container {
|
|
max-width: 1000px;
|
|
min-width: 400px;
|
|
min-height: 230px;
|
|
background-color: #F6F3E9;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
#header {
|
|
height: 130px;
|
|
background: url('/static/logo.png') no-repeat scroll left top #39322b;
|
|
}
|
|
|
|
#content {
|
|
max-width: 1000px;
|
|
min-width: 400px;
|
|
min-height: 100px;
|
|
padding-bottom: 30px;
|
|
}
|
|
|
|
/* Header {{{ */
|
|
#header .area {
|
|
width: 300px;
|
|
height: 130px;
|
|
position: relative;
|
|
margin-left: 230px;
|
|
color: white;
|
|
font-size: xx-large;
|
|
font-family: monospace;
|
|
overflow: hidden;
|
|
}
|
|
|
|
#header .bubble {
|
|
position: absolute;
|
|
left: 93px;
|
|
top: 21px;
|
|
width: 135px;
|
|
height: 84px;
|
|
display: table;
|
|
}
|
|
|
|
#header .bubble p {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
text-align: center;
|
|
}
|
|
|
|
ul#primary-nav {
|
|
display: block;
|
|
margin-right: 60px;
|
|
text-align: right;
|
|
margin-top: 60px;
|
|
line-height: 20px;
|
|
cursor: default;
|
|
position: relative;
|
|
top: -100px;
|
|
}
|
|
|
|
ul#primary-nav li {
|
|
display: inline;
|
|
padding: 0 4px;
|
|
}
|
|
|
|
ul#primary-nav li a {
|
|
padding: 6px;
|
|
color: white;
|
|
text-decoration: none;
|
|
font-variant: small-caps;
|
|
/*text-transform: uppercase;*/
|
|
font-size: 80%;
|
|
font-weight: bold;
|
|
white-space: nowrap;
|
|
text-shadow: #27211b 2px 2px 2px;
|
|
}
|
|
|
|
ul#primary-nav li a:hover {
|
|
background-color: #39a9cf;
|
|
-moz-border-radius: 5px;
|
|
-webkit-border-radius: 5px;
|
|
text-shadow: #27211b 1px 1px 1px;
|
|
}
|
|
|
|
#donate {
|
|
display: block;
|
|
width: 200px;
|
|
height: 38px;
|
|
overflow: hidden;
|
|
position: relative;
|
|
top: -230px;
|
|
left: 65%;
|
|
}
|
|
|
|
h2.library_name {
|
|
font-family: monospace;
|
|
font-size: 50px;
|
|
font-weight: normal;
|
|
color: white;
|
|
margin-left: 250px;
|
|
padding-top: 40px;
|
|
}
|
|
|
|
/* }}} */
|
|
|
|
/* Combobox {{{ */
|
|
|
|
.ui-button { margin-left: -1px; }
|
|
.ui-button-icon-only .ui-button-text { padding: 0.35em; }
|
|
.ui-autocomplete-input { margin: 0; padding: 0.48em 0 0.47em 0.45em; }
|
|
|
|
/* }}} */
|
|
|
|
|
|
/* Sort select {{{ */
|
|
|
|
.sort_select { float: left; margin-left: 1em; margin-top: 2ex; font-size: small; }
|
|
|
|
/* }}} */
|
|
|
|
/* Search bar {{{ */
|
|
|
|
#search_box {
|
|
float: right;
|
|
margin-right: 1em;
|
|
margin-top: 2ex;
|
|
font-size: small;
|
|
}
|
|
|
|
#search_box .search_input { padding: 0.35em }
|
|
|
|
/* }}} */
|
|
|