2021-08-05 02:59:23 +00:00
|
|
|
/* http://meyerweb.com/eric/tools/css/reset/
|
|
|
|
v2.0 | 20110126
|
|
|
|
License: none (public domain)
|
|
|
|
*/
|
|
|
|
|
|
|
|
html,
|
|
|
|
body,
|
|
|
|
div,
|
|
|
|
span,
|
|
|
|
applet,
|
|
|
|
object,
|
|
|
|
iframe,
|
|
|
|
h1,
|
|
|
|
h2,
|
|
|
|
h3,
|
|
|
|
h4,
|
|
|
|
h5,
|
|
|
|
h6,
|
|
|
|
p,
|
|
|
|
blockquote,
|
|
|
|
pre,
|
|
|
|
a,
|
|
|
|
abbr,
|
|
|
|
acronym,
|
|
|
|
address,
|
|
|
|
big,
|
|
|
|
cite,
|
|
|
|
code,
|
|
|
|
del,
|
|
|
|
dfn,
|
|
|
|
em,
|
|
|
|
img,
|
|
|
|
ins,
|
|
|
|
kbd,
|
|
|
|
q,
|
|
|
|
s,
|
|
|
|
samp,
|
|
|
|
small,
|
|
|
|
strike,
|
|
|
|
strong,
|
|
|
|
sub,
|
|
|
|
sup,
|
|
|
|
tt,
|
|
|
|
var,
|
|
|
|
b,
|
|
|
|
u,
|
|
|
|
i,
|
|
|
|
center,
|
|
|
|
dl,
|
|
|
|
dt,
|
|
|
|
dd,
|
|
|
|
ol,
|
|
|
|
ul,
|
|
|
|
li,
|
|
|
|
fieldset,
|
|
|
|
form,
|
|
|
|
label,
|
|
|
|
legend,
|
|
|
|
table,
|
|
|
|
caption,
|
|
|
|
tbody,
|
|
|
|
tfoot,
|
|
|
|
thead,
|
|
|
|
tr,
|
|
|
|
th,
|
|
|
|
td,
|
|
|
|
article,
|
|
|
|
aside,
|
|
|
|
canvas,
|
|
|
|
details,
|
|
|
|
embed,
|
|
|
|
figure,
|
|
|
|
figcaption,
|
|
|
|
footer,
|
|
|
|
header,
|
|
|
|
hgroup,
|
|
|
|
menu,
|
|
|
|
nav,
|
|
|
|
output,
|
|
|
|
ruby,
|
|
|
|
section,
|
|
|
|
summary,
|
|
|
|
time,
|
|
|
|
mark,
|
|
|
|
audio,
|
|
|
|
video {
|
|
|
|
margin: 0;
|
|
|
|
padding: 0;
|
|
|
|
border: 0;
|
|
|
|
font-size: 100%;
|
|
|
|
font: inherit;
|
|
|
|
vertical-align: baseline;
|
|
|
|
}
|
|
|
|
article,
|
|
|
|
aside,
|
|
|
|
details,
|
|
|
|
figcaption,
|
|
|
|
figure,
|
|
|
|
footer,
|
|
|
|
header,
|
|
|
|
hgroup,
|
|
|
|
menu,
|
|
|
|
nav,
|
|
|
|
section {
|
|
|
|
display: block;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
line-height: 1;
|
|
|
|
}
|
|
|
|
ol,
|
|
|
|
ul {
|
|
|
|
list-style: none;
|
|
|
|
}
|
|
|
|
blockquote,
|
|
|
|
q {
|
|
|
|
quotes: none;
|
|
|
|
}
|
|
|
|
blockquote:before,
|
|
|
|
blockquote:after,
|
|
|
|
q:before,
|
|
|
|
q:after {
|
|
|
|
content: "";
|
|
|
|
content: none;
|
|
|
|
}
|
|
|
|
table {
|
|
|
|
border-collapse: collapse;
|
|
|
|
border-spacing: 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* site CSS starts here */
|
|
|
|
|
2021-06-26 18:08:35 +00:00
|
|
|
body {
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header {
|
|
|
|
height: 30px;
|
|
|
|
width: calc(100vw - 20px);
|
|
|
|
padding: 4px 10px;
|
|
|
|
background-color: #f7f3dc;
|
|
|
|
border-bottom: 2px solid #d8d0a0;
|
|
|
|
font-family: "Libre Baskerville", sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
#header h1 {
|
|
|
|
font-size: xx-large;
|
|
|
|
display: inline;
|
|
|
|
}
|
|
|
|
|
2023-02-05 01:51:40 +00:00
|
|
|
#header .bookCount {
|
|
|
|
font-size: small;
|
|
|
|
color: #a29c77;
|
|
|
|
}
|
|
|
|
|
2021-06-26 18:08:35 +00:00
|
|
|
#searchBox {
|
|
|
|
position: absolute;
|
|
|
|
right: 10px;
|
|
|
|
top: 7px;
|
|
|
|
text-align: right;
|
2023-10-08 19:05:15 +00:00
|
|
|
width: 800px;
|
2021-06-26 18:08:35 +00:00
|
|
|
}
|
|
|
|
|
2023-10-08 19:05:15 +00:00
|
|
|
#searchBox input#search {
|
2021-06-26 18:08:35 +00:00
|
|
|
width: 300px;
|
|
|
|
font-size: 16px;
|
|
|
|
background: #f9f8ed;
|
|
|
|
padding: 2px 5px;
|
|
|
|
border: none;
|
|
|
|
border-bottom: 2px solid #d8d0a0;
|
|
|
|
font-family: "Libre Baskerville", sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
#searchBox input:focus {
|
|
|
|
outline: none;
|
|
|
|
}
|
|
|
|
|
|
|
|
#searchBox input::placeholder {
|
|
|
|
font-family: "Libre Baskerville", sans-serif;
|
|
|
|
color: #d8d0a0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#current {
|
|
|
|
background-color: #f7f3dc;
|
|
|
|
width: calc(40vw - 40px);
|
|
|
|
height: calc(100vh - 80px);
|
|
|
|
padding: 20px;
|
|
|
|
overflow: auto;
|
|
|
|
float: left;
|
2023-02-05 02:30:18 +00:00
|
|
|
position: relative;
|
2021-06-26 18:08:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#books {
|
|
|
|
width: calc(60vw - 40px);
|
|
|
|
height: calc(100vh - 80px);
|
|
|
|
padding: 20px;
|
|
|
|
overflow: auto;
|
|
|
|
float: left;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bookTable th {
|
|
|
|
font-weight: bold;
|
|
|
|
text-align: left;
|
|
|
|
font-family: "Libre Baskerville", sans-serif;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bookTable th[data-sort-by] {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bookTable th[data-sort-by]::after {
|
2023-02-25 22:22:57 +00:00
|
|
|
content: "\2195";
|
2021-06-26 18:08:35 +00:00
|
|
|
position: relative;
|
|
|
|
left: 4px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bookTable th.asc::after {
|
2023-02-25 22:22:57 +00:00
|
|
|
content: "\2191";
|
|
|
|
font-size: small;
|
2021-06-26 18:08:35 +00:00
|
|
|
position: relative;
|
|
|
|
left: 4px;
|
2023-02-25 22:22:57 +00:00
|
|
|
bottom: 1px;
|
2021-06-26 18:08:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.bookTable th.desc::after {
|
2023-02-25 22:22:57 +00:00
|
|
|
content: "\2193";
|
|
|
|
font-size: small;
|
2021-06-26 18:08:35 +00:00
|
|
|
position: relative;
|
|
|
|
left: 4px;
|
2023-02-25 22:22:57 +00:00
|
|
|
bottom: 1px;
|
2021-06-26 18:08:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
.bookTable td,
|
|
|
|
.bookTable th {
|
|
|
|
padding: 5px;
|
|
|
|
min-width: 50px;
|
|
|
|
}
|
|
|
|
|
|
|
|
.tRow:nth-child(odd) {
|
|
|
|
background: #f9f8ed;
|
|
|
|
border-bottom: 1px solid #d8d0a0;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bookTable .tRow {
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
|
|
|
|
.bookTable .tRow .title {
|
|
|
|
font-style: italic;
|
|
|
|
max-width: 600px;
|
|
|
|
}
|
|
|
|
|
|
|
|
#current h1 {
|
|
|
|
font-size: x-large;
|
|
|
|
font-weight: bold;
|
|
|
|
font-style: italic;
|
2023-02-05 02:30:18 +00:00
|
|
|
padding: 0 0 5px 0;
|
2021-06-26 18:08:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#current h2 {
|
|
|
|
font-size: large;
|
|
|
|
padding: 7px 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
#current img {
|
2023-02-05 02:30:18 +00:00
|
|
|
opacity: 0.5;
|
|
|
|
position: absolute;
|
|
|
|
left: 0;
|
|
|
|
top: 0;
|
|
|
|
width: 100%;
|
|
|
|
height: auto;
|
|
|
|
}
|
|
|
|
|
|
|
|
#current .bookDetails {
|
|
|
|
position: relative;
|
|
|
|
background-color: rgba(255, 255, 255, 0.8);
|
|
|
|
padding: 10px;
|
|
|
|
margin: 0;
|
|
|
|
width: 75%;
|
|
|
|
border-radius: 5px;
|
2021-06-26 18:08:35 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#current .description p {
|
|
|
|
padding: 20px 0;
|
|
|
|
}
|