-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbible-view.css
52 lines (48 loc) · 985 Bytes
/
bible-view.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
.verse {
cursor: pointer;
}
.verse:hover {
background-color: #f0f0f0;
}
.nav-button {
background-color: transparent;
border: 1px solid #007bff;
color: #007bff;
}
.nav-button:hover {
background-color: #007bff;
color: white;
}
.show-read-more .more-text{
display: none;
}
.modal-dialog {
max-width: 90%;
width: 90%;
margin: 30px auto;
}
.modal-dialog.modal-fullscreen-sm-down {
height: 90%;
}
.modal-dialog.modal-fullscreen-sm-down .modal-content {
height: 90%;
}
.modal-dialog.modal-fullscreen-sm-down .modal-body {
overflow-y: auto;
}
@media (max-width: 767px) {
.modal-dialog.modal-fullscreen-sm-down {
max-width: 100%;
margin: 0;
height: 100%;
width: 100%;
}
.modal-dialog.modal-fullscreen-sm-down .modal-content {
height: 100%;
border: 0;
border-radius: 0;
}
.modal-dialog.modal-fullscreen-sm-down .modal-body {
overflow-y: auto;
}
}