Latest stable branch includes sermon analysis endpoint, but not required for new installations

This commit is contained in:
2024-11-12 17:25:56 -08:00
parent 0ab32bf4e2
commit 87f0dc54c5
16 changed files with 376 additions and 70 deletions
+57 -42
View File
@@ -1,55 +1,70 @@
<style>
/* Style the header */
/* Dark Theme */
.responses{
body {
background-color: #222;
color: #fff;
}
/* Style the header */
.responses {
font-family: sans-serif;
font-size: 14.5pt;
width: 768px;
padding: 1px;
margin-top: 100px;
color: #fff; /* Text color */
width: auto;
max-width: 100%; /* Ensure it doesn't exceed the container width */
white-space: pre-wrap; /* Allow word wrapping */
}
a {
color: #547720
}
a {
color: #007bff; /* Link color */
}
.header {
font-family: sans-serif;
padding: 10px 16px;
background: #dbd5d5;
color: #1a1919;
position: fixed;
top: 5px;
width: 768px;
}
font-family: sans-serif;
padding: 10px 16px;
background: #333; /* Dark background */
color: #fff; /* Text color */
position: fixed;
top: 5px;
width: 98vw;
max-width: 100%; /* Ensure it doesn't exceed the container width */
min-height: 50px;
}
input[type=text] {
width: 75%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
text-align: left;
font-size: 14.5pt;
}
input[type=button], input[type=submit], input[type=reset] {
font-family: sans-serif;
background-color: #afcdc2;
border: none;
color: rgb(0, 0, 0);
padding: 16px 32px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
}
input[type=text] {
width: 75%;
padding: 12px 20px;
margin: 8px 0;
box-sizing: border-box;
text-align: left;
font-size: 14.5pt;
background-color: #333; /* Dark background */
color: #fff; /* Text color */
border: 1px solid #555; /* Border color */
}
/* Page content */
.definition {
padding: 8px;
font-family: sans-serif;
font-size: 14.5pt;
width: 768px;
padding: 1px;
}
</style>
input[type=button], input[type=submit], input[type=reset] {
font-family: sans-serif;
background-color: #555; /* Dark button background */
border: none;
color: #fff; /* Button text color */
padding: 16px 32px;
text-decoration: none;
margin: 4px 2px;
cursor: pointer;
}
.definition {
padding: 8px;
font-family: sans-serif;
font-size: 14.5pt;
width: 768px;
padding: 1px;
color: #fff; /* Text color */
background-color: #222; /* Dark background */
}
</style>