-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyle.css
More file actions
63 lines (60 loc) · 1.58 KB
/
style.css
File metadata and controls
63 lines (60 loc) · 1.58 KB
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
.ps-chiasm {
background-color: rgba(51, 51, 51, 0.8);
color: #fff;
cursor: pointer;
display: inline-block;
margin-top: 0;
margin-bottom: 20px;
line-height: 160%;
padding: 8px 20px;
border-style: solid;
border-width: 3px;
border-color: rgba(51, 51, 51, 0);
border-radius: 2px;
font-size: 20px;
font-weight: 600;
}
#psalms-15-24 {
display: flex;
flex-direction: row; /* Default row layout */
flex-wrap: wrap; /* Ensures it doesn't break unexpectedly */
justify-content: left; /* Centers the row */
gap: 0; /* Spaces out elements in row view */
transition: all 0.5s ease-in-out;
}
#psalms-15-24.chiasm {
display: flex;
flex-direction: column;
align-items: flex-start;
flex-direction: column; /* Enables chiastic layout */
max-height: 500px; /* Adjust as needed */
opacity: 1;
}
#psalms-15-24.chiasm .ps-num:nth-child(1) {
margin-left: calc(0em);
} /* Psalm 15 */
#psalms-15-24.chiasm .ps-num:nth-child(2) {
margin-left: 2em;
} /* Psalm 16 */
#psalms-15-24.chiasm .ps-num:nth-child(3) {
margin-left: 4em;
} /* Psalm 17 */
#psalms-15-24.chiasm .ps-num:nth-child(4) {
margin-left: 6em;
} /* Psalm 18 */
#psalms-15-24.chiasm .ps-num:nth-child(5) {
margin-left: 8em;
font-weight: bold;
} /* Psalm 19 (center) */
#psalms-15-24.chiasm .ps-num:nth-child(6) {
margin-left: 6em;
} /* Psalms 20–21 */
#psalms-15-24.chiasm .ps-num:nth-child(7) {
margin-left: 4em;
} /* Psalm 22 */
#psalms-15-24.chiasm .ps-num:nth-child(8) {
margin-left: 2em;
} /* Psalm 23 */
#psalms-15-24.chiasm .ps-num:nth-child(9) {
margin-left: 0em;
} /* Psalm 24 */