-
Notifications
You must be signed in to change notification settings - Fork 1
/
home.css
85 lines (73 loc) · 1.25 KB
/
home.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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
body {
display: flex;
flex-direction: column;
height: 100vh;
margin: 0;
background-color: #ffffff;
font-family: 'Lora', serif;
}
h1.title {
padding: 6px;
text-align: center;
font-family: 'Lato', sans-serif;
font-weight: 300;
font-size: 2em;
color: #333;
}
html, body, .iframe-container, iframe {
/* width: 99%; */
border: none;
padding: 0;
overflow: hidden;
}
.iframe-container {
position: relative;
flex-grow: 1;
border-top: 1px solid #e0e0e0;
border-bottom: 1px solid #e0e0e0;
}
.page-indicator {
display: flex;
justify-content: space-between;
align-items: center;
padding: 10px 20px;
font-family: 'Lato', sans-serif;
font-weight: 400;
font-size: 1em;
color: #333;
}
.page-number {
margin: 0 10px;
cursor: pointer;
color: #999;
transition: color 0.3s;
}
.page-number:hover {
color: #333;
}
.current-page {
color: #333;
font-weight: bold;
}
.prev-page, .next-page {
display: flex;
align-items: center;
background-color: transparent;
border: none;
color: #999;
transition: color 0.3s;
}
.prev-page:hover, .next-page:hover {
color: #333;
}
button {
background-color: transparent;
border: none;
cursor: pointer;
}
button:focus {
outline: none;
}
.hidden {
visibility: hidden;
}