-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathstyleBook.css
69 lines (49 loc) · 914 Bytes
/
styleBook.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
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
60
61
62
63
64
65
66
67
*, *:before, *:after {
box-sizing: border-box;
}
img {
max-width: 100%;
}
.book-wrapper {
position: relative;
margin: 2% auto;
width: 670px;
}
.book-wrapper img {
filter: drop-shadow(15px 5px 5px #494338);
}
.pages-container {
}
.pages {
}
.pages [class^="page-num-"] {
background-image: url("images/paper.png");
background-size: auto 100%;
position: relative;
}
.pages-content {
text-align: center;
width: 100%;
height: 100%;
display: table;
padding: 10%;
}
.pages-content p {
font-size:17px;
}
.pages-content h1 {
color:black;
font-size:26px;
}
.content-inner {
text-align: center;
display: table-cell;
vertical-align: middle;
font-size:12px;
}
.book-wrapper {
background-image: url("images/bookcover.png");
background-size: contain;
background-repeat: no-repeat;
user-select: none;
}