Skip to content

Commit

Permalink
fix: forgot to push css
Browse files Browse the repository at this point in the history
  • Loading branch information
Dorifor committed Dec 14, 2024
1 parent 22716eb commit e6555d5
Showing 1 changed file with 52 additions and 0 deletions.
52 changes: 52 additions & 0 deletions style.css
Original file line number Diff line number Diff line change
Expand Up @@ -429,6 +429,58 @@ b {
color: #a6da95;
}

.root .search {
opacity: 0;
pointer-events: none;
position: absolute;
right: 0;
top: 0;
height: 1.8rem;
translate: -.2rem .3rem;
width: 30%;
display: flex;
align-items: center;
justify-content: end;
transition: opacity .2s;
}

details[open] .search {
opacity: 1;
pointer-events: all;
}

.search input[type="text"] {
position: absolute;
background: #363a4f;
border: none;
border-radius: 6px;
padding: 0;
color: #cad3f5;
inset: 0;
padding-left: .5rem;
}

input[type="text"]:focus-visible {
outline: none;
}

.search > svg {
right: 0;
top: 0;
bottom: 0;
height: 70%;
scale: -1 1;
color: #939ab7;
}

.excluded {
display: none;
}

.nothing-found {
color: #8087a2;
}

@media only screen and (max-width: 820px) {
body {
margin: 1rem;
Expand Down

0 comments on commit e6555d5

Please sign in to comment.