Added file upload history

This commit is contained in:
sairaj mote 2023-08-02 01:10:29 +05:30
parent b21af0a275
commit 8f778b9417
4 changed files with 215 additions and 94 deletions

View File

@ -532,7 +532,7 @@ h3 {
}
#app_body {
display: grid;
display: block;
height: 100%;
width: 100%;
}
@ -596,6 +596,7 @@ h3 {
#sign_up {
display: grid;
width: 100%;
height: 100%;
justify-items: center;
align-content: center;
padding: 1.5rem;
@ -660,14 +661,23 @@ h3 {
overflow: hidden;
}
#home_page {
display: flex;
flex-direction: column;
gap: 1rem;
}
#home_page section {
display: grid;
width: min(100% - 2rem, 42rem);
margin: 0 auto;
margin-bottom: 1rem;
}
.drag-drop-container,
#file_upload_section {
display: grid;
background-color: rgba(var(--foreground-color), 1);
width: min(100% - 2rem, 42rem);
box-shadow: 0 0 0 1px rgba(var(--text-color), 0.1);
border-radius: 0.5rem;
margin: 0 auto;
box-shadow: 0 0 0 1px rgba(var(--text-color), 0.1);
background-color: rgba(var(--foreground-color), 1);
transition: box-shadow 0.2s, background-color 0.2s;
}
@ -685,6 +695,7 @@ h3 {
color: rgba(var(--text-color), 0.9);
}
.drag-drop-container p {
max-width: 100%;
color: rgba(var(--text-color), 0.6);
}
@ -718,6 +729,26 @@ h3 {
accent-color: var(--accent-color);
}
#verification_list {
display: grid;
gap: 1rem;
}
.verification-item {
display: grid;
grid-template-columns: 6rem 1fr auto;
align-items: center;
justify-content: space-between;
gap: 1rem;
padding: 1rem;
border-radius: 0.5rem;
background-color: rgba(var(--foreground-color), 1);
}
.verification-item time {
font-size: 0.9rem;
color: rgba(var(--text-color), 0.8);
}
@media screen and (max-width: 40rem) {
theme-toggle {
order: 2;

2
css/main.min.css vendored

File diff suppressed because one or more lines are too long

View File

@ -501,7 +501,7 @@ h3 {
}
}
#app_body {
display: grid;
display: block;
height: 100%;
width: 100%;
}
@ -563,6 +563,7 @@ h3 {
#sign_up {
display: grid;
width: 100%;
height: 100%;
justify-items: center;
align-content: center;
padding: 1.5rem;
@ -621,15 +622,22 @@ h3 {
text-overflow: ellipsis;
overflow: hidden;
}
#home_page {
display: flex;
flex-direction: column;
gap: 1rem;
section {
display: grid;
width: min(calc(100% - 2rem), 42rem);
margin: 0 auto;
margin-bottom: 1rem;
}
}
.drag-drop-container,
#file_upload_section {
display: grid;
background-color: rgba(var(--foreground-color), 1);
width: min(calc(100% - 2rem), 42rem);
box-shadow: 0 0 0 1px rgba(var(--text-color), 0.1);
border-radius: 0.5rem;
margin: 0 auto;
box-shadow: 0 0 0 1px rgba(var(--text-color), 0.1);
background-color: rgba(var(--foreground-color), 1);
transition: box-shadow 0.2s, background-color 0.2s;
}
.drag-drop-container {
@ -647,6 +655,7 @@ h3 {
}
p {
max-width: 100%;
color: rgba(var(--text-color), 0.6);
}
}
@ -679,6 +688,24 @@ h3 {
}
}
}
#verification_list {
display: grid;
gap: 1rem;
}
.verification-item {
display: grid;
grid-template-columns: 6rem 1fr auto;
align-items: center;
justify-content: space-between;
gap: 1rem;
padding: 1rem;
border-radius: 0.5rem;
background-color: rgba(var(--foreground-color), 1);
time {
font-size: 0.9rem;
color: rgba(var(--text-color), 0.8);
}
}
@media screen and (max-width: 40rem) {
theme-toggle {
order: 2;

File diff suppressed because one or more lines are too long