mirror of
https://codeberg.org/ashley/poke.git
synced 2024-11-17 00:34:41 -05:00
Clean up area above searched videos
This commit is contained in:
parent
83d06e8584
commit
c46d95c196
2 changed files with 34 additions and 17 deletions
|
@ -1035,3 +1035,10 @@ a.icon-button > img {
|
||||||
width: 500px;
|
width: 500px;
|
||||||
padding: 8px;
|
padding: 8px;
|
||||||
}
|
}
|
||||||
|
.search-options {
|
||||||
|
display: flex;
|
||||||
|
justify-content: space-evenly;
|
||||||
|
width: 100%;
|
||||||
|
max-width: 855px;
|
||||||
|
margin: auto;
|
||||||
|
}
|
|
@ -66,30 +66,27 @@ summary:hover{
|
||||||
<style>
|
<style>
|
||||||
|
|
||||||
|
|
||||||
.tags.rec {
|
.search-options {
|
||||||
font-weight: 600;
|
|
||||||
font-stretch: expanded;
|
|
||||||
overflow:hidden;
|
|
||||||
width: auto;
|
|
||||||
max-width: fit-content;
|
|
||||||
margin-right: auto;
|
|
||||||
padding-left: 1.5em;
|
|
||||||
margin-top: 7px;
|
|
||||||
display: flex;
|
display: flex;
|
||||||
gap: 3px;
|
justify-content: space-between;
|
||||||
margin-inline: auto;
|
width: 100%;
|
||||||
margin-left: 8em;
|
max-width: 855px;
|
||||||
}
|
margin: auto;
|
||||||
|
padding: 24px 0px 12px 0px;
|
||||||
|
}
|
||||||
|
|
||||||
.tags.rec:hover{
|
.tags.rec:hover{
|
||||||
overflow-x:auto;
|
overflow-x:auto;
|
||||||
}
|
}
|
||||||
|
.tags.rec {
|
||||||
|
display: flex;
|
||||||
|
gap: 12px;
|
||||||
|
height: max-content;
|
||||||
|
}
|
||||||
.tags.rec > .tag {
|
.tags.rec > .tag {
|
||||||
border-radius: 8px;
|
border-radius: 8px;
|
||||||
background:var(--chip-background-hover);
|
background: var(--chip-background-hover);
|
||||||
|
padding: 8px 16px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.tag {
|
.tag {
|
||||||
|
@ -100,6 +97,19 @@ summary:hover{
|
||||||
font-family: ubuntu, sans-serif;
|
font-family: ubuntu, sans-serif;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#filters-collapse summary {
|
||||||
|
color: white;
|
||||||
|
font-weight: bold;
|
||||||
|
font-size: 20px;
|
||||||
|
}
|
||||||
|
.filter-options div {
|
||||||
|
padding: 6px 12px;
|
||||||
|
}
|
||||||
|
.filter-name.underlined {
|
||||||
|
padding: 12px 0px 12px 23px;
|
||||||
|
font-weight: bold;
|
||||||
|
}
|
||||||
|
|
||||||
.container {
|
.container {
|
||||||
max-width: 800px;
|
max-width: 800px;
|
||||||
margin: 0 auto;
|
margin: 0 auto;
|
||||||
|
|
Loading…
Reference in a new issue