This commit is contained in:
Joey Kimsey
2024-12-24 22:15:01 -05:00
parent f8e75e847d
commit 900ca8a691
110 changed files with 1065 additions and 113 deletions

View File

@ -139,4 +139,12 @@ body {
.form-control {
background-color: #1f1f1f;
color: #e0e0e0;
}
.form-control:focus {
color: #e0e0e0;
/* border-color: #85bd3e; */
border-color: #1b947f;
background-color: #1f1f1f;
/* box-shadow: 0 0 0 .25rem #1b947f; */
box-shadow: 0 0 0 .25rem #85bd3e;
}

View File

@ -8,11 +8,9 @@
* @link https://TheTempusProject.com
* @license https://opensource.org/licenses/MIT [MIT LICENSE]
*/
.context-other-bg {
.context-other-bg {
background-color: #eaeaea;
}
.context-main-bg {
background-color: #f7f7f7;
@ -70,14 +68,6 @@
transform: translateX(25px); /* Adjust based on switch width */
}
.context-main {
color: #000;
}
@ -92,8 +82,10 @@ html {
pre {
white-space: pre-wrap;
}
body {
background-image: linear-gradient(180deg, #eee, #fff 100px, #fff);
background-color: #e4e4e4;
/* background-image: linear-gradient(180deg, #eee, #fff 100px, #fff); */
}
@media ( min-width: 768px ) {
.main {
@ -370,3 +362,16 @@ button.atb-green-bg:hover {
opacity: 0.7;
cursor: move; /* Show a move cursor when dragging */
}
.form-switch .form-check-input {
border-color: #1b947f;
}
.form-switch .form-check-input:checked {
border-color: #1b947f;
background-color: #85bd3e;
}
.form-switch .form-check-input:focus {
border-color: #1b947f;
box-shadow: #85bd3e;
}