scotttomaszewski_obsidian-d.../styles.css
2025-05-01 20:40:22 -04:00

461 lines
9.7 KiB
CSS

body {
--dj-font-size: 100%;
--dj-heading-color: var(--text-accent);
--dj-verse-number-color: var(--text-accent);
--dj-woc-color: var(--text-accent);
--dj-block-indentation: 2em;
}
/* Utility Classes */
.dj-hidden {
display: none !important; /* Use !important to ensure override */
}
/* Bible Navigation Styles */
.bible-navigation {
display: flex;
justify-content: space-between;
align-items: center;
margin: 0 0 20px;
border-radius: 4px;
position: relative;
font-family: var(--default-font);
font-size: 14px;
}
.bible-passage-container .bible-navigation {
margin-bottom: 12px;
}
.nav-prev, .nav-next, .nav-book-selector {
padding: 6px 10px;
border-radius: 4px;
font-weight: 500;
}
.nav-button {
background: none;
border: none;
cursor: pointer;
font-size: inherit;
font-family: inherit;
color: var(--text-accent);
padding: 6px 10px;
border-radius: 4px;
font-weight: 500;
text-align: center;
transition: background-color 0.2s ease;
line-height: 1.5;
}
.nav-button:hover {
background-color: var(--background-modifier-hover);
color: var(--text-accent-hover);
text-decoration: none;
}
.nav-disabled {
color: var(--text-muted);
cursor: not-allowed;
}
.nav-book-selector {
cursor: pointer;
color: var(--text-normal);
background-color: var(--background-primary);
border: 1px solid var(--background-modifier-border);
font-weight: bold;
padding: 6px 14px;
user-select: none;
}
.nav-book-selector:hover {
background-color: var(--background-modifier-hover);
}
.nav-book-data {
position: absolute;
top: 110%;
left: 50%;
transform: translateX(-50%);
background-color: var(--background-primary);
border: 1px solid var(--background-modifier-border);
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
padding: 15px;
border-radius: 4px;
z-index: 100;
width: 300px;
}
.nav-book-data .dropdown {
width: 100%;
margin-bottom: 8px;
}
.nav-book-data .dropdown select {
width: 100%;
padding: 6px;
background-color: var(--background-primary);
color: var(--text-normal);
border: 1px solid var(--background-modifier-border);
border-radius: 4px;
}
.nav-chapter-container {
margin-bottom: 8px;
}
.nav-go-button {
width: 100% !important;
padding: 6px 12px;
background-color: var(--interactive-accent) !important;
color: var(--text-on-accent) !important;
border: none;
border-radius: 4px;
cursor: pointer;
font-weight: 500;
display: block;
text-align: center;
}
/* About Section Styles */
.disciples-journal-about {
max-width: 450px;
margin: 0 auto;
padding: 12px;
text-align: center;
}
.disciples-journal-about p {
margin-bottom: 12px;
}
.disciples-journal-about small {
font-size: 0.8em;
color: var(--text-muted);
}
/* API Info Styles */
.disciples-journal-api-info {
background-color: var(--background-secondary);
border-left: 4px solid var(--text-accent);
padding: 12px 15px;
margin-bottom: 15px;
border-radius: 4px;
}
.disciples-journal-api-info p {
margin: 0 0 10px 0;
}
.disciples-journal-api-info ol {
margin: 0 0 10px 20px;
}
.disciples-journal-api-info li {
margin-bottom: 5px;
}
.disciples-journal-api-info a {
color: var(--text-accent);
text-decoration: underline;
}
.disciples-journal-api-info a:hover {
text-decoration: none;
}
/* Bible Copyright Container Styles */
.bible-copyright-container {
margin-top: 20px;
border-top: 1px solid var(--background-modifier-border);
padding-top: 10px;
}
.bible-copyright {
font-size: 12px;
color: var(--text-muted);
margin-top: 8px;
}
.bible-copyright summary {
cursor: pointer;
opacity: 0.8;
transition: opacity 0.2s ease;
}
.bible-copyright summary:hover {
opacity: 1;
text-decoration: underline;
}
.bible-copyright-content {
background-color: var(--background-secondary);
padding: 10px;
border-radius: 4px;
margin-top: 8px;
font-size: 11px;
}
.bible-copyright-content p {
margin: 6px 0;
}
/* Bible Verse Preview Styles */
.bible-verse-preview {
position: absolute;
z-index: 1000;
background-color: var(--background-secondary); /* Example background */
border: 1px solid var(--background-modifier-border);
box-shadow: 0 2px 8px rgba(0,0,0,0.15);
padding: 10px;
border-radius: 4px;
max-width: 400px; /* Example max-width */
font-size: 0.9em; /* Example font-size */
}
.bible-verse-preview-heading {
font-weight: bold;
margin-bottom: 5px;
padding-bottom: 5px;
border-bottom: 1px solid var(--background-modifier-border);
cursor: pointer; /* Make heading clickable */
}
.bible-verse-preview-heading:hover {
color: var(--text-accent);
}
.bible-verse-preview-content p {
margin: 5px 0;
line-height: 1.4;
}
.bible-passage .bible-passage-text,
.bible-passage .bible-passage-content { /* Apply to both text and content divs */
font-size: var(--dj-font-size);
}
.inline-bible-reference .inline-bible-reference-text { /* Target the text part */
font-size: var(--dj-font-size);
}
/* Bible reference styles */
.bible-verse-preview {
font-size: var(--dj-font-size);
max-width: 600px;
padding: 0.5em 1em;
border-radius: 5px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
background-color: var(--background-primary); /* Use existing background-primary */
border: 1px solid var(--background-modifier-border);
z-index: 1000;
overflow: auto;
}
.bible-verse-preview h1,
.bible-verse-preview h2,
.bible-verse-preview h3,
.bible-verse-preview h4 {
margin: 0.2em 0;
color: var(--dj-heading-color);
}
.bible-verse-preview .passage-content {
margin-top: 0.5em;
line-height: 1.6;
}
.bible-verse-preview .verse-num {
vertical-align: super;
font-size: 0.75em;
font-weight: bold;
color: var(--dj-verse-number-color);
margin-right: 0.25em;
}
.bible-verse-preview .woc {
color: var(--dj-woc-color);
}
.bible-verse-preview .indent {
padding-left: var(--dj-block-indentation);
display: block;
margin: 0.5em 0;
}
.bible-verse-preview .esv-text {
font-size: 0.9em;
margin-bottom: 0.5em;
}
.bible-verse-preview .copyright {
font-size: 0.8em;
color: var(--text-muted);
margin-top: 0.5em;
}
.bible-reference {
cursor: pointer;
display: inline-block;
border-bottom: 1px dotted var(--text-accent);
font-weight: 500;
white-space: nowrap;
}
.bible-reference:hover {
color: var(--text-accent);
}
.bible-heading {
color: var(--dj-heading-color);
font-weight: bold;
margin: 1em 0 0.5em 0;
}
.bible-reference-clickable {
cursor: pointer;
color: var(--text-accent);
}
.bible-reference-clickable:hover {
text-decoration: underline;
}
.verse-missing-token {
padding: 0.5em;
border: 1px solid var(--background-modifier-border);
border-radius: 4px;
background-color: var(--background-secondary);
margin: 0.5em 0;
}
.verse-missing-token .message {
color: var(--text-muted);
font-style: italic;
}
/* Bible Passage Container Styles */
.bible-passage-container {
background-color: var(--background-primary);
border: 1px solid var(--background-modifier-border);
border-radius: 6px;
padding: 16px;
margin: 12px 0;
}
.bible-passage-heading {
font-weight: bold;
color: var(--dj-heading-color);
margin-top: 0;
margin-bottom: 12px;
border-bottom: 1px solid var(--background-modifier-border);
padding-bottom: 6px;
}
.bible-passage-text {
font-size: var(--dj-font-size); /* Use variable */
line-height: 1.5;
}
.bible-verse {
margin: 8px 0;
}
.bible-chapter-heading {
font-size: 1.4em;
font-weight: bold;
color: var(--dj-heading-color);
margin-top: 24px;
margin-bottom: 16px;
border-bottom: 1px solid var(--background-modifier-border);
padding-bottom: 8px;
}
.bible-verse-number {
font-weight: bold;
color: var(--dj-verse-number-color);
margin-right: 4px;
}
.bible-verse-text {
color: var(--text-normal);
}
.bible-reference-error {
color: var(--text-error);
font-style: italic;
border: 1px solid var(--background-modifier-error);
padding: 8px 12px;
border-radius: 4px;
display: inline-block;
}
/* ESV API HTML Rendering Styles */
.bible-passage-text h2 {
font-size: 1.3em;
margin-top: 20px;
margin-bottom: 10px;
color: var(--dj-heading-color);
}
.bible-passage-text h3 {
font-size: 1.1em;
font-style: italic;
margin-top: 16px;
margin-bottom: 8px;
color: var(--dj-heading-color);
}
.bible-passage-text .woc {
color: var(--dj-woc-color);
}
.bible-passage-text .chapter-num,
.bible-passage-text .verse-num {
font-weight: bold;
font-size: 0.8em;
color: var(--dj-verse-number-color) !important; /* Keep important if needed for specificity */
vertical-align: top;
margin-right: 0.2em;
}
.bible-passage-text p {
margin: 0.6em 0;
}
.bible-passage-text .block-indent {
margin-left: var(--dj-block-indentation);
}
.bible-passage-text .line {
display: block;
}
.bible-passage-text .indent {
text-indent: 1.5em; /* Keep specific text-indent if needed */
}
.bible-passage-text .footnote {
font-size: 0.8em;
color: var(--text-muted);
}
.bible-passage-text .footnotes {
margin-top: 2em;
padding-top: 1em;
border-top: 1px solid var(--background-modifier-border);
font-size: 0.9em;
}
.bible-passage-text .audio {
display: none;
}
.bible-passage-text .extra_text {
color: var(--text-muted);
}
.inline-bible-reference .inline-bible-reference-text { /* Target the text part */
font-size: var(--dj-font-size); /* Keep original font size variable for now, or switch to --dj-font-size if desired */
}