1
0
Fork 0
blog/src/components/molecules/Search/SearchResults.module.css

73 lines
1010 B
CSS
Raw Normal View History

2021-03-04 01:20:39 +01:00
.searchResults {
position: absolute;
left: 0;
right: 0;
z-index: 10;
top: 0;
bottom: 0;
background: var(--body-background-color);
animation: fadein 0.3s;
overflow: scroll;
-webkit-overflow-scrolling: touch;
height: 91vh;
}
2021-03-07 02:48:05 +01:00
.results {
2021-03-21 22:49:39 +01:00
composes: container from '../../Layout.module.css';
2021-03-04 01:20:39 +01:00
padding: var(--spacer) calc(var(--spacer) / 2);
margin-bottom: 0;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
@media (min-width: 60rem) {
2021-03-07 02:48:05 +01:00
.results {
2021-03-04 01:20:39 +01:00
padding-left: 0;
padding-right: 0;
}
}
2021-03-07 02:48:05 +01:00
.results li {
2021-03-04 01:20:39 +01:00
display: block;
flex: 0 0 48%;
margin-bottom: var(--spacer);
}
@media (min-width: 40rem) {
2021-03-07 02:48:05 +01:00
.results li {
2021-03-04 01:20:39 +01:00
flex-basis: 31%;
}
}
2021-03-07 02:48:05 +01:00
.results li::before {
2021-03-04 01:20:39 +01:00
display: none;
}
2021-03-07 02:48:05 +01:00
.results img {
2021-03-04 01:20:39 +01:00
margin-bottom: 0;
}
2021-03-07 02:48:05 +01:00
.results a {
2021-03-04 01:20:39 +01:00
display: block;
}
2021-03-07 02:48:05 +01:00
.results a > div {
2021-03-04 01:20:39 +01:00
margin-bottom: 0;
}
2021-03-07 02:48:05 +01:00
.results a:hover h4,
.results a:focus h4 {
2021-03-04 01:20:39 +01:00
color: var(--link-color);
}
@keyframes fadein {
0% {
opacity: 0;
}
100% {
opacity: 1;
}
}