f0ck95/95d fixes

This commit is contained in:
Kibi Kelburton 2022-05-22 13:06:54 +02:00
parent 17c029e6da
commit e68af4dc96
2 changed files with 47 additions and 33 deletions

View File

@ -868,6 +868,14 @@ html[theme="f0ck95"] ._error_topbar {
background: -webkit-linear-gradient(left,#08216b,#a5cef7); background: -webkit-linear-gradient(left,#08216b,#a5cef7);
} }
html[theme="f0ck95"] .f0ckgle {
color: black;
}
html[theme="f0ck95"] .admin-search button {
color: black;
}
/* f0ck95dARK */ /* f0ck95dARK */
html[theme='f0ck95d'] { html[theme='f0ck95d'] {
--accent: #fff; --accent: #fff;
@ -877,7 +885,7 @@ html[theme='f0ck95d'] {
--gray: silver; --gray: silver;
--nav-bg: #0b0a0a; --nav-bg: #0b0a0a;
--nav-brand-border: inset 1px black; --nav-brand-border: inset 1px black;
--nav-brand-bg: #4c4c4c; --nav-brand-bg: #0000;
--navigation-links-bg: #0b0b0b; --navigation-links-bg: #0b0b0b;
--navigation-links-background-linear-gradient: rgba(0,0,0,.12),rgba(0,0,0,0); --navigation-links-background-linear-gradient: rgba(0,0,0,.12),rgba(0,0,0,0);
--navigation-links-border-color: rgba(0,0,0,.8) rgba(0,0,0,.65) rgba(0,0,0,.5); --navigation-links-border-color: rgba(0,0,0,.8) rgba(0,0,0,.65) rgba(0,0,0,.5);
@ -1071,6 +1079,10 @@ html[theme="f0ck95d"] .badge-danger {
border-radius: 0; border-radius: 0;
} }
html[theme="f0ck95d"] .admin-search button {
color: black;
}
::-webkit-scrollbar { ::-webkit-scrollbar {
width: 2px; width: 2px;
} }

View File

@ -1,9 +1,10 @@
@include(snippets/header) @include(snippets/header)
<h1 style="text-align: center">f0ckgle</h1> <div class="f0ckgle">
<form action="/search" class="admin-search"> <h1 style="text-align: center">f0ckgle</h1>
<form action="/search" class="admin-search">
<input type="text" name="tag" value="{!! searchstring || '' !!}" /><button type="submit"><b>f0ck</b></button> <input type="text" name="tag" value="{!! searchstring || '' !!}" /><button type="submit"><b>f0ck</b></button>
</form> </form>
<div class="results"> <div class="results">
@if(result) @if(result)
<h2>{{ count }} f0cks given (page {{ pagination.page }} of {{ pagination.end }}):</h2> <h2>{{ count }} f0cks given (page {{ pagination.page }} of {{ pagination.end }}):</h2>
<table style="width: 100%" class="table"> <table style="width: 100%" class="table">
@ -31,5 +32,6 @@
</tbody> </tbody>
</table> </table>
@endif @endif
</div>
</div> </div>
@include(snippets/footer) @include(snippets/footer)