improve footer in dark mode; border on search button

This commit is contained in:
Mark Eaton
2026-02-22 02:44:22 -05:00
parent 7eb3c580ec
commit b37a759a8d
2 changed files with 8 additions and 4 deletions
+5 -2
View File
@@ -327,7 +327,7 @@
padding: 6px 12px; padding: 6px 12px;
} }
[data-bs-theme="dark"] .onesearchsubmit { [data-bs-theme="dark"] .onesearchsubmit {
border: none; margin: 1px;
} }
#blue-border2 { #blue-border2 {
flex: 5; flex: 5;
@@ -518,7 +518,7 @@
} }
/* style footer */ /* style footer */
#orange-line { .orange-line {
height: 10px; height: 10px;
background-color: var(--kbccorange); background-color: var(--kbccorange);
} }
@@ -527,6 +527,9 @@
color: white; color: white;
padding: 30px; padding: 30px;
} }
[data-bs-theme="dark"] #main-blue-footer {
background-color: var(--bg);
}
.whiteahrefs a:link, .whiteahrefs a:link,
.whiteahrefs a:hover, .whiteahrefs a:hover,
.whiteahrefs a:visited, .whiteahrefs a:visited,
+2 -1
View File
@@ -262,7 +262,7 @@
<div class="container"> <div class="container">
<div class="row"> <div class="row">
<!-- BEGIN: Page Footer --> <!-- BEGIN: Page Footer -->
<div id="orange-line"></div> <div class="orange-line"></div>
<div id="main-blue-footer"> <div id="main-blue-footer">
<div id="lighthouse-logo"> <div id="lighthouse-logo">
<a href="https://www.kbcc.cuny.edu"> <a href="https://www.kbcc.cuny.edu">
@@ -346,6 +346,7 @@
</div> </div>
<div style="height: 10px"></div> <div style="height: 10px"></div>
</div> </div>
<div class="orange-line"></div>
<!-- END: Page Footer --> <!-- END: Page Footer -->
</div> </div>
</div> </div>