mirror of
https://github.com/Damillora/Shian.git
synced 2024-11-21 17:17:31 +00:00
feat(shian): search styles
This commit is contained in:
parent
f873e60897
commit
cc4febf595
@ -6,7 +6,7 @@
|
|||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
@include transition;
|
@include transition;
|
||||||
&.enabled {
|
&.enabled {
|
||||||
height: 100vh;
|
height: 100%;
|
||||||
}
|
}
|
||||||
@include screen(md) {
|
@include screen(md) {
|
||||||
height: 4rem;
|
height: 4rem;
|
||||||
@ -48,6 +48,7 @@
|
|||||||
.header {
|
.header {
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
|
height: 100%;
|
||||||
@include transition;
|
@include transition;
|
||||||
|
|
||||||
&__top {
|
&__top {
|
||||||
|
@ -1,6 +1,7 @@
|
|||||||
.menu {
|
.menu {
|
||||||
max-height: 0px;
|
max-height: 0px;
|
||||||
display: block;
|
display: flex;
|
||||||
|
flex-direction: column;
|
||||||
@include transition;
|
@include transition;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
&.enabled {
|
&.enabled {
|
||||||
@ -18,6 +19,12 @@
|
|||||||
&:hover {
|
&:hover {
|
||||||
background-color: $theme-blue;
|
background-color: $theme-blue;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&--hidden {
|
||||||
|
max-height: 0;
|
||||||
|
overflow: hidden;
|
||||||
|
@include transition;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
&__link {
|
&__link {
|
||||||
@ -42,9 +49,49 @@
|
|||||||
color: $white;
|
color: $white;
|
||||||
@include px(1rem);
|
@include px(1rem);
|
||||||
}
|
}
|
||||||
|
|
||||||
&__separator {
|
&__separator {
|
||||||
margin-left: 5rem;
|
margin-left: 5rem;
|
||||||
margin-right: 4rem;
|
margin-right: 4rem;
|
||||||
border-top: 0.125rem solid $white;
|
border-top: 0.125rem solid $white;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
&__search-input {
|
||||||
|
display: inline-block;
|
||||||
|
flex-grow: 1;
|
||||||
|
color: $white;
|
||||||
|
@include px(0.5rem);
|
||||||
|
@include mx(0.5rem);
|
||||||
|
@include py(0.25rem);
|
||||||
|
appearance: none;
|
||||||
|
background-color: transparent;
|
||||||
|
outline: none;
|
||||||
|
border-bottom: 1px solid $white;
|
||||||
|
&:focus-visible {
|
||||||
|
outline: none;
|
||||||
|
border-bottom: 1px solid $white;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&__search-results {
|
||||||
|
flex-grow: 1;
|
||||||
|
overflow-y: scroll;
|
||||||
|
}
|
||||||
|
&__search-result {
|
||||||
|
color: $white;
|
||||||
|
display: block;
|
||||||
|
align-items: center;
|
||||||
|
@include px(2rem);
|
||||||
|
@include py(1rem);
|
||||||
|
@include transition;
|
||||||
|
|
||||||
|
&:hover {
|
||||||
|
background-color: $theme-blue;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
&__search-title {
|
||||||
|
color: $white;
|
||||||
|
&:hover {
|
||||||
|
text-decoration: underline;
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user