alter home page

This commit is contained in:
edshot99 2025-01-30 00:04:28 -06:00
parent a6a3ad7a67
commit 42f0d4eefc
2 changed files with 12 additions and 3 deletions

View File

@ -5,7 +5,7 @@ body.c-static.a-home {
#page {
background: none;
margin: 25rem auto 0;
margin: 8rem auto 0;
width: 100%;
max-width: 480px;
padding: 0;
@ -24,6 +24,10 @@ body.c-static.a-home {
text-align: center;
}
.home-section h1 {
font-family: "Comic Sans MS";
}
// Search
.home-search {
@ -97,7 +101,9 @@ body.c-static.a-home {
}
.home-footer-bottom {
background: #1f3c67;
/*background: #1f3c67;*/
background-color: rgba(15, 15, 15, 0.35);
backdrop-filter: blur(8px);
text-align: center;
margin: 0;

View File

@ -4,8 +4,11 @@
<% end -%>
<section class="home-section">
<h1><%= Danbooru.config.app_name %></h1>
<br/>
<%= form_tag(posts_path, method: "get", class: "home-search") do %>
<%= text_field_tag("tags", "", autofocus: "autofocus", placeholder: "Search posts by tag", data: { shortcut: "q", autocomplete: "tag-query" }) %>
<%= text_field_tag("tags", "", autofocus: "autofocus", placeholder: "Search posts by tag (or with title:\"video name\")", data: { shortcut: "q", autocomplete: "tag-query" }) %>
<%= tag.button(tag.i(class: "fa-solid fa-magnifying-glass"), type: "submit") %>
<% end %>