Ajout des borduresw

This commit is contained in:
EpicKiwi 2026-06-07 22:29:27 +02:00
parent 48aad70993
commit 255c47183d
Signed by: epickiwi
GPG key ID: C4B28FD2729941CE
6 changed files with 732 additions and 13 deletions

View file

@ -134,17 +134,60 @@ body > hr {
/* SAERCH FORM */
#search-section {
position: sticky;
top: 0;
left: 0;
z-index: 100i;
border: solid 10px black;
border-image: url("../assets/button-stepped-border-image.svg") 16 15 fill;
z-index: 100;
margin-bottom: 5px;
margin-left: 5px;
width: fit-content;
max-width: 100%;
background: black;
background-clip: content-box;
color: white;
display: grid;
grid-template-columns: min-content 1fr;
grid-template-rows: 1fr;
}
#search-section input {
background: black;
font-size: 1em;
color: inherit;
font-family: monospace;
border: none;
padding: 1ex;
grid-column: 2;
grid-row: 1;
}
#search-section button {
background: transparent;
border: none;
padding: 1ex;
grid-column: 1;
grid-row: 1;
cursor: pointer;
}
#search-section label {
grid-column: 2;
grid-row: 1;
padding: 1ex;
align-self: flex-end;
}
#search-section button img {
height: 1.5em;
}
/* PANEL */
#result-panel {
background: black;
border-top: 3px white solid;
border-image: url("../assets/neon-border-image.svg") 12;
border-top: 5.5px white solid;
color: white;
}