Skip to content

Commit

Permalink
adding final touches to Mp3 to text
Browse files Browse the repository at this point in the history
  • Loading branch information
MooseSaeed committed Apr 11, 2022
1 parent 927b2e3 commit d3a3001
Show file tree
Hide file tree
Showing 6 changed files with 650 additions and 72 deletions.
Binary file added public/audio/testfile.mp3
Binary file not shown.
67 changes: 63 additions & 4 deletions public/css/app.css
Original file line number Diff line number Diff line change
Expand Up @@ -459,9 +459,15 @@ Ensure the default browser behavior of the `hidden` attribute.
.-top-1 {
top: -0.25rem;
}
.col-span-2 {
grid-column: span 2 / span 2;
}
.m-0 {
margin: 0px;
}
.m-1 {
margin: 0.25rem;
}
.mx-auto {
margin-left: auto;
margin-right: auto;
Expand All @@ -478,6 +484,14 @@ Ensure the default browser behavior of the `hidden` attribute.
margin-left: 0.75rem;
margin-right: 0.75rem;
}
.my-3 {
margin-top: 0.75rem;
margin-bottom: 0.75rem;
}
.my-10 {
margin-top: 2.5rem;
margin-bottom: 2.5rem;
}
.mt-4 {
margin-top: 1rem;
}
Expand Down Expand Up @@ -517,6 +531,9 @@ Ensure the default browser behavior of the `hidden` attribute.
.mb-7 {
margin-bottom: 1.75rem;
}
.ml-1 {
margin-left: 0.25rem;
}
.mt-5 {
margin-top: 1.25rem;
}
Expand Down Expand Up @@ -701,6 +718,9 @@ Ensure the default browser behavior of the `hidden` attribute.
.border {
border-width: 1px;
}
.border-0 {
border-width: 0px;
}
.border-b {
border-bottom-width: 1px;
}
Expand Down Expand Up @@ -740,6 +760,9 @@ Ensure the default browser behavior of the `hidden` attribute.
--tw-bg-opacity: 1;
background-color: rgb(55 65 81 / var(--tw-bg-opacity));
}
.bg-gray-600\/75 {
background-color: rgb(75 85 99 / 0.75);
}
.bg-gray-400 {
--tw-bg-opacity: 1;
background-color: rgb(156 163 175 / var(--tw-bg-opacity));
Expand All @@ -766,6 +789,10 @@ Ensure the default browser behavior of the `hidden` attribute.
--tw-gradient-from: #ec4899;
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(236 72 153 / 0));
}
.from-blue-900 {
--tw-gradient-from: #1e3a8a;
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(30 58 138 / 0));
}
.from-gray-900 {
--tw-gradient-from: #111827;
--tw-gradient-stops: var(--tw-gradient-from), var(--tw-gradient-to, rgb(17 24 39 / 0));
Expand All @@ -779,6 +806,9 @@ Ensure the default browser behavior of the `hidden` attribute.
.via-red-500 {
--tw-gradient-stops: var(--tw-gradient-from), #ef4444, var(--tw-gradient-to, rgb(239 68 68 / 0));
}
.via-blue-800 {
--tw-gradient-stops: var(--tw-gradient-from), #1e40af, var(--tw-gradient-to, rgb(30 64 175 / 0));
}
.via-purple-900 {
--tw-gradient-stops: var(--tw-gradient-from), #581c87, var(--tw-gradient-to, rgb(88 28 135 / 0));
}
Expand All @@ -794,6 +824,9 @@ Ensure the default browser behavior of the `hidden` attribute.
.to-yellow-500 {
--tw-gradient-to: #eab308;
}
.to-blue-700 {
--tw-gradient-to: #1d4ed8;
}
.to-blue-900 {
--tw-gradient-to: #1e3a8a;
}
Expand Down Expand Up @@ -908,6 +941,18 @@ Ensure the default browser behavior of the `hidden` attribute.
font-size: 2.25rem;
line-height: 2.5rem;
}
.text-3xl {
font-size: 1.875rem;
line-height: 2.25rem;
}
.text-2xl {
font-size: 1.5rem;
line-height: 2rem;
}
.text-base {
font-size: 1rem;
line-height: 1.5rem;
}
.font-bold {
font-weight: 700;
}
Expand All @@ -929,6 +974,14 @@ Ensure the default browser behavior of the `hidden` attribute.
--tw-text-opacity: 1;
color: rgb(239 68 68 / var(--tw-text-opacity));
}
.text-black {
--tw-text-opacity: 1;
color: rgb(0 0 0 / var(--tw-text-opacity));
}
.text-green-500 {
--tw-text-opacity: 1;
color: rgb(34 197 94 / var(--tw-text-opacity));
}
.text-gray-500 {
--tw-text-opacity: 1;
color: rgb(107 114 128 / var(--tw-text-opacity));
Expand All @@ -937,10 +990,6 @@ Ensure the default browser behavior of the `hidden` attribute.
--tw-text-opacity: 1;
color: rgb(21 128 61 / var(--tw-text-opacity));
}
.text-green-500 {
--tw-text-opacity: 1;
color: rgb(34 197 94 / var(--tw-text-opacity));
}
.underline {
-webkit-text-decoration-line: underline;
text-decoration-line: underline;
Expand All @@ -950,6 +999,11 @@ Ensure the default browser behavior of the `hidden` attribute.
--tw-shadow-colored: 0 10px 15px -3px var(--tw-shadow-color), 0 4px 6px -4px var(--tw-shadow-color);
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-none {
--tw-shadow: 0 0 #0000;
--tw-shadow-colored: 0 0 #0000;
box-shadow: var(--tw-ring-offset-shadow, 0 0 #0000), var(--tw-ring-shadow, 0 0 #0000), var(--tw-shadow);
}
.shadow-inner {
--tw-shadow: inset 0 2px 4px 0 rgb(0 0 0 / 0.05);
--tw-shadow-colored: inset 0 2px 4px 0 var(--tw-shadow-color);
Expand Down Expand Up @@ -1685,6 +1739,11 @@ Ensure the default browser behavior of the `hidden` attribute.
padding-top: 0.5rem;
padding-bottom: 0.5rem;
}

.sm\:text-base {
font-size: 1rem;
line-height: 1.5rem;
}
}

@media (min-width: 768px) {
Expand Down
Loading

0 comments on commit d3a3001

Please sign in to comment.