feedback implemented

This commit is contained in:
Prospect
2024-02-21 14:46:21 -05:00
parent 0d3674d31e
commit 04313d7198
81 changed files with 15570 additions and 14689 deletions

File diff suppressed because it is too large Load Diff

View File

@@ -966,14 +966,38 @@ select {
bottom: 0px;
}
.bottom-24 {
bottom: 6rem;
}
.left-4 {
left: 1rem;
}
.right-4 {
right: 1rem;
}
.top-0 {
top: 0px;
}
.left-0 {
left: 0px;
}
.-top-0 {
top: 0px;
}
.-top-0\.5 {
top: -0.125rem;
}
.-top-1 {
top: -0.25rem;
}
.z-20 {
z-index: 20;
}
@@ -1049,10 +1073,22 @@ select {
aspect-ratio: 16/9;
}
.h-0 {
height: 0px;
}
.h-0\.5 {
height: 0.125rem;
}
.h-1 {
height: 0.25rem;
}
.h-16 {
height: 4rem;
}
.h-20 {
height: 5rem;
}
@@ -1077,10 +1113,6 @@ select {
height: 100vh;
}
.h-16 {
height: 4rem;
}
.w-1\/12 {
width: 8.333333%;
}
@@ -1178,10 +1210,6 @@ select {
align-items: center;
}
.justify-end {
justify-content: flex-end;
}
.justify-center {
justify-content: center;
}
@@ -1263,15 +1291,28 @@ select {
border-radius: 0.375rem;
}
.rounded-full {
border-radius: 9999px;
}
.border {
border-width: 1px;
}
.border-2 {
border-width: 2px;
}
.border-blue-500 {
--tw-border-opacity: 1;
border-color: rgb(10 28 50/var(--tw-border-opacity));
}
.border-white {
--tw-border-opacity: 1;
border-color: rgb(255 255 255/var(--tw-border-opacity));
}
.bg-black {
--tw-bg-opacity: 1;
background-color: rgb(0 0 0/var(--tw-bg-opacity));
@@ -1374,18 +1415,6 @@ select {
--tw-bg-opacity: 0.6;
}
.bg-opacity-80 {
--tw-bg-opacity: 0.8;
}
.bg-opacity-20 {
--tw-bg-opacity: 0.2;
}
.bg-opacity-30 {
--tw-bg-opacity: 0.3;
}
.object-cover {
-o-object-fit: cover;
object-fit: cover;
@@ -1408,6 +1437,14 @@ select {
padding: 2rem;
}
.p-1 {
padding: 0.25rem;
}
.p-6 {
padding: 1.5rem;
}
.px-12 {
padding-left: 3rem;
padding-right: 3rem;
@@ -1476,10 +1513,6 @@ select {
padding-bottom: 7rem;
}
.pb-4 {
padding-bottom: 1rem;
}
.pb-8 {
padding-bottom: 2rem;
}
@@ -1619,6 +1652,14 @@ select {
text-decoration-line: underline;
}
.opacity-60 {
opacity: 0.6;
}
.opacity-70 {
opacity: 0.7;
}
.shadow-md {
--tw-shadow: 0 4px 6px -1px rgb(0 0 0 / 0.1), 0 2px 4px -2px rgb(0 0 0 / 0.1);
--tw-shadow-colored: 0 4px 6px -1px var(--tw-shadow-color), 0 2px 4px -2px var(--tw-shadow-color);
@@ -1716,6 +1757,15 @@ html {
background-color: rgb(31 41 55/var(--tw-bg-opacity));
}
.hover\:text-blue-900:hover {
--tw-text-opacity: 1;
color: rgb(2 9 23/var(--tw-text-opacity));
}
.hover\:opacity-100:hover {
opacity: 1;
}
@media (min-width: 640px) {
.sm\:w-3\/5 {
width: 60%;
@@ -1977,6 +2027,61 @@ body.login {
display: none;
}
.modal {
display: none;
position: fixed;
z-index: 9999;
left: 0;
top: 0;
width: 100%;
height: 100%;
overflow: auto;
background-color: rgba(0, 0, 0, 0.8);
opacity: 0;
pointer-events: none;
transition: opacity 0.6s ease-in-out;
}
.modal--visible {
display: block;
opacity: 1;
pointer-events: auto;
}
.modal-content {
margin: auto;
display: flex;
align-items: center;
justify-content: center;
position: relative;
animation: slideIn 0.6s ease-in-out;
}
.modalOpen {
cursor: pointer;
}
.modalClose {
position: fixed;
z-index: 9999;
top: 5rem;
right: 1rem;
color: red;
font-size: 30px;
font-weight: bold;
cursor: pointer;
}
@keyframes slideIn {
from {
transform: translateY(-50px);
opacity: 0;
}
to {
transform: translateY(0);
opacity: 1;
}
}
.toggle-menu {
display: flex;
width: 30px;