Adding retrieve functionality

This commit is contained in:
tripathyr 2025-08-17 19:52:43 +05:30 committed by GitHub
parent e2f6e1dcab
commit 5a30567825
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -788,20 +788,20 @@ theme-toggle {
align-self: center; align-self: center;
} }
.label { .label {
text-transform: capitalize; text-transform: capitalize;
font-size: 0.8rem; font-size: 0.8rem;
margin-bottom: 0.3rem; margin-bottom: 0.3rem;
color: rgba(var(--text-color), 0.8); color: rgba(var(--text-color), 0.8);
margin-top: 1.5rem; margin-top: 1.5rem;
font-weight: 500; font-weight: 500;
} }
.label:first-of-type { .label:first-of-type {
margin-top: 0; margin-top: 0;
} }
.label + :is(h1, h2, h3, h4, h5, h6, p, span, sm-copy, a) { .label + :is(h1, h2, h3, h4, h5, h6, p, span, sm-copy, a) {
font-weight: 700; font-weight: 700;
} }
main { main {
display: grid; display: grid;
@ -822,6 +822,7 @@ main {
display: flex; display: flex;
height: 100%; height: 100%;
width: 100%; width: 100%;
justify-content: space-around;
} }
#main_navbar ul li { #main_navbar ul li {
width: 100%; width: 100%;
@ -887,6 +888,13 @@ main {
flex-direction: column; flex-direction: column;
width: min(100%, 42rem); width: min(100%, 42rem);
} }
#page_container[data-page=retrieve] {
align-items: flex-start;
}
#page_container[data-page=retrieve] > * {
padding: 1rem;
margin: 0 auto;
}
aside { aside {
view-transition-name: search-history; view-transition-name: search-history;
@ -1171,4 +1179,4 @@ aside h4 {
-webkit-animation: none !important; -webkit-animation: none !important;
animation: none !important; animation: none !important;
} }
} }