summaryrefslogtreecommitdiff
path: root/css/index.css
blob: 144d5e079c4e7c3d11895bc55c6da8e5963f93b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
.display-flex {
	display: flex;
 	flex-wrap: wrap;
}

.row > div {
	padding-top : 10px;
}

.row .thumbnail {
	height : 200px;
	width : 140px;
	margin-bottom : 0;
}

.row .thumbnail img {
	width : 100%;
	height : 100%;
	background-size : cover;
	background-position : center;
	background-repeat: no-repeat;
}

.row .thumbnail.read img {
	opacity : 0.5;
	filter : grayscale(100%);
}

.epube-app-filler {
	height : 60px;
	display : none;
}

.in_progress {
	font-style : italic;
}

.caption div {
	overflow : hidden;
	text-overflow: ellipsis;
	white-space : nowrap;
}

::selection {
	background : #007d71;
	color : white;
}

::-webkit-scrollbar {
	width: 4px;
}

::-webkit-scrollbar-thumb {
	background-color: #007d71;
}

::-webkit-scrollbar-track {
	background-color: #eee;
}