stacker.news/components/search.module.css

56 lines
878 B
CSS
Raw Normal View History

2022-01-26 21:43:18 +00:00
.searchSection {
position: fixed;
bottom: 0;
left: 0;
right: 0;
}
.searchContainer {
height: 88px;
position: relative;
}
2022-10-20 22:44:44 +00:00
.leaveRoom {
height: 130px !important;
}
2022-01-26 21:43:18 +00:00
.searchSection.solid {
pointer-events: auto;
2023-08-05 00:21:51 +00:00
background: var(--bs-body-bg);
2022-01-26 21:43:18 +00:00
box-shadow: 0 -4px 12px hsl(0deg 0% 59% / 10%);
}
.searchSection.hidden {
pointer-events: none;
background: transparent;
}
.search {
width: 50px;
height: 50px;
border-radius: 25px;
padding: 0;
align-items: center;
justify-content: center;
display: flex;
2022-10-20 22:44:44 +00:00
left: auto !important;
2022-01-26 21:43:18 +00:00
}
2022-10-20 22:44:44 +00:00
.formActive {
2022-01-26 21:43:18 +00:00
pointer-events: auto;
bottom: 18px;
right: 18px;
2022-10-20 22:44:44 +00:00
left: 18px;
2022-01-26 21:43:18 +00:00
position: absolute;
}
2022-10-20 22:44:44 +00:00
form>.active {
2022-01-26 21:43:18 +00:00
display: flex;
2022-10-20 22:44:44 +00:00
pointer-events: auto;
2022-01-26 21:43:18 +00:00
flex-flow: row wrap;
align-items: center;
}
.searchPadding {
padding-bottom: 88px;
}