This commit is contained in:
2024-03-10 21:42:32 +00:00
parent ef12e964d6
commit 4fa27ea626
9 changed files with 127 additions and 76 deletions

View File

@@ -569,6 +569,11 @@ video {
margin-right: auto;
}
.my-4 {
margin-top: 1rem;
margin-bottom: 1rem;
}
.ml-3 {
margin-left: 0.75rem;
}
@@ -675,6 +680,10 @@ video {
animation: spin 1s linear infinite;
}
.cursor-pointer {
cursor: pointer;
}
.grid-cols-1 {
grid-template-columns: repeat(1, minmax(0, 1fr));
}
@@ -716,18 +725,10 @@ video {
border-radius: 0.25rem;
}
.rounded-md {
border-radius: 0.375rem;
}
.border-0 {
border-width: 0px;
}
.border {
border-width: 1px;
}
.border-l-2 {
border-left-width: 2px;
}
@@ -741,16 +742,6 @@ video {
background-color: rgb(0 0 0 / var(--tw-bg-opacity));
}
.bg-green-50 {
--tw-bg-opacity: 1;
background-color: rgb(240 253 244 / var(--tw-bg-opacity));
}
.bg-red-50 {
--tw-bg-opacity: 1;
background-color: rgb(254 242 242 / var(--tw-bg-opacity));
}
.fill-gray-600 {
fill: #4b5563;
}
@@ -759,11 +750,6 @@ video {
padding: 1rem;
}
.px-10 {
padding-left: 2.5rem;
padding-right: 2.5rem;
}
.px-2 {
padding-left: 0.5rem;
padding-right: 0.5rem;
@@ -809,19 +795,24 @@ video {
padding-bottom: 1rem;
}
.py-6 {
padding-top: 1.5rem;
padding-bottom: 1.5rem;
}
.py-8 {
padding-top: 2rem;
padding-bottom: 2rem;
}
.pt-10 {
padding-top: 2.5rem;
}
.pb-4 {
padding-bottom: 1rem;
}
.pt-10 {
padding-top: 2.5rem;
}
.text-center {
text-align: center;
}
@@ -886,24 +877,14 @@ video {
color: rgb(229 231 235 / var(--tw-text-opacity));
}
.text-green-400 {
.text-green-500 {
--tw-text-opacity: 1;
color: rgb(74 222 128 / var(--tw-text-opacity));
color: rgb(34 197 94 / var(--tw-text-opacity));
}
.text-green-700 {
.text-red-500 {
--tw-text-opacity: 1;
color: rgb(21 128 61 / var(--tw-text-opacity));
}
.text-green-800 {
--tw-text-opacity: 1;
color: rgb(22 101 52 / var(--tw-text-opacity));
}
.text-red-400 {
--tw-text-opacity: 1;
color: rgb(248 113 113 / var(--tw-text-opacity));
color: rgb(239 68 68 / var(--tw-text-opacity));
}
.text-red-600 {
@@ -911,16 +892,6 @@ video {
color: rgb(220 38 38 / var(--tw-text-opacity));
}
.text-red-700 {
--tw-text-opacity: 1;
color: rgb(185 28 28 / var(--tw-text-opacity));
}
.text-red-800 {
--tw-text-opacity: 1;
color: rgb(153 27 27 / var(--tw-text-opacity));
}
.text-slate-100 {
--tw-text-opacity: 1;
color: rgb(241 245 249 / var(--tw-text-opacity));
@@ -941,25 +912,14 @@ video {
color: rgb(255 255 255 / var(--tw-text-opacity));
}
.text-green-600 {
--tw-text-opacity: 1;
color: rgb(22 163 74 / var(--tw-text-opacity));
}
.text-green-500 {
--tw-text-opacity: 1;
color: rgb(34 197 94 / var(--tw-text-opacity));
}
.text-red-500 {
--tw-text-opacity: 1;
color: rgb(239 68 68 / var(--tw-text-opacity));
}
.underline {
text-decoration-line: underline;
}
.underline-offset-2 {
text-underline-offset: 2px;
}
.antialiased {
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
@@ -971,6 +931,10 @@ video {
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.outline {
outline-style: solid;
}
.ring-1 {
--tw-ring-offset-shadow: var(--tw-ring-inset) 0 0 0 var(--tw-ring-offset-width) var(--tw-ring-offset-color);
--tw-ring-shadow: var(--tw-ring-inset) 0 0 0 calc(1px + var(--tw-ring-offset-width)) var(--tw-ring-color);
@@ -1067,6 +1031,10 @@ video {
outline-color: #4b5563;
}
.disabled\:cursor-progress:disabled {
cursor: progress;
}
.disabled\:bg-gray-800:disabled {
--tw-bg-opacity: 1;
background-color: rgb(31 41 55 / var(--tw-bg-opacity));

View File

@@ -24,7 +24,9 @@
</p>
</div>
</div>
<script src="js/smoothScroll.js"></script>
<script src="_framework/blazor.webassembly.js"></script>
</body>
</html>

View File

@@ -0,0 +1,10 @@
function scrollToElement(id) {
const element = document.getElementById(id);
if (element instanceof HTMLElement) {
element.scrollIntoView({
behavior: "smooth",
block: "start",
inline: "nearest"
});
}
}