2022-03-06 19:46:59 -05:00
|
|
|
.container ul {
|
2022-03-24 18:35:59 -04:00
|
|
|
list-style: none;
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2022-03-06 19:46:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.container ul li {
|
2022-03-24 18:35:59 -04:00
|
|
|
padding: 0.5rem 0;
|
2022-03-06 19:46:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.container ul li::before {
|
2022-03-24 18:35:59 -04:00
|
|
|
content: "";
|
|
|
|
padding: 0;
|
|
|
|
margin: 0;
|
2022-03-06 19:46:59 -05:00
|
|
|
}
|
|
|
|
|
|
|
|
.postHeader {
|
2022-03-24 18:35:59 -04:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
padding: var(--gap);
|
|
|
|
align-items: center;
|
|
|
|
position: sticky;
|
|
|
|
top: 0;
|
|
|
|
z-index: 1;
|
|
|
|
background: inherit;
|
|
|
|
}
|
|
|
|
|
|
|
|
.searchContainer {
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
2022-04-12 02:07:06 -04:00
|
|
|
flex-direction: column;
|
2022-03-24 18:35:59 -04:00
|
|
|
justify-content: center;
|
2022-04-12 02:07:06 -04:00
|
|
|
gap: var(--gap-half);
|
|
|
|
margin-bottom: var(--gap);
|
2022-03-06 19:46:59 -05:00
|
|
|
}
|