-
Notifications
You must be signed in to change notification settings - Fork 0
/
styles.css
24 lines (22 loc) · 863 Bytes
/
styles.css
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
.night{
background:black;
color:white;
}
.chapter-thumbnail {
margin-top: 10px; /* add a margin to look nice */
white-space : pre; /* preserve the original line breaks and spacing
(I need this because the content of the
chapter is just text not HTML, so normally
the line breaks would be ignored) */
overflow : hidden; /* don't show a scroll bar when the text is
too big to fit in the box (which it always
will be but we don't mind as it is just a
thumbnail) */
max-height: 150px; /* make sure that the box doesn't get too big */
height : 150px; /* even if the text is big */
border-radius: 10px;/* rounded corners */
}
#mainViewer {
margin-top: 10px;
white-space : pre; /* preserve the original line breaks (see above)*/
}