Spaces:
Running
Running
עיצוב סמל וקישור למחבר
Browse files- templates/index.html +52 -11
templates/index.html
CHANGED
|
@@ -61,6 +61,37 @@
|
|
| 61 |
#progress-bar-container { width: 100%; background-color: var(--md-sys-color-surface-variant); border-radius: 0 0 var(--border-radius-small) var(--border-radius-small); overflow: hidden; height: 8px; }
|
| 62 |
#progress-bar { width: 0%; height: 100%; background-color: var(--md-sys-color-primary); transition: width 0.3s ease-in-out; }
|
| 63 |
#progress-bar.error { background-color: var(--md-sys-color-error); }
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 64 |
</style>
|
| 65 |
</head>
|
| 66 |
<body>
|
|
@@ -120,17 +151,17 @@
|
|
| 120 |
<div id="chunk-info-section" class="card" style="margin-top: 1.5rem; display: none;">
|
| 121 |
<h2>חלוקת קובץ השמע למקטעים</h2>
|
| 122 |
<p id="chunk-info-message" style="margin-bottom: 1rem;"></p>
|
| 123 |
-
<pre id="chunk-timestamps-output" style="
|
| 124 |
-
background-color: var(--md-sys-color-surface);
|
| 125 |
-
padding: 1rem;
|
| 126 |
-
border-radius: var(--border-radius-small);
|
| 127 |
-
border: 1px solid var(--md-sys-color-outline);
|
| 128 |
-
font-family: monospace;
|
| 129 |
-
font-size: 0.9rem;
|
| 130 |
-
direction: rtl; /* Ensure RTL for timestamps */
|
| 131 |
-
text-align: right;
|
| 132 |
-
max-height: 200px;
|
| 133 |
-
overflow-y: auto;
|
| 134 |
"></pre>
|
| 135 |
</div>
|
| 136 |
<!-- END NEW -->
|
|
@@ -330,5 +361,15 @@
|
|
| 330 |
});
|
| 331 |
});
|
| 332 |
</script>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 333 |
</body>
|
| 334 |
</html>
|
|
|
|
| 61 |
#progress-bar-container { width: 100%; background-color: var(--md-sys-color-surface-variant); border-radius: 0 0 var(--border-radius-small) var(--border-radius-small); overflow: hidden; height: 8px; }
|
| 62 |
#progress-bar { width: 0%; height: 100%; background-color: var(--md-sys-color-primary); transition: width 0.3s ease-in-out; }
|
| 63 |
#progress-bar.error { background-color: var(--md-sys-color-error); }
|
| 64 |
+
footer {
|
| 65 |
+
text-align: center;
|
| 66 |
+
margin-top: 2rem;
|
| 67 |
+
padding: 1rem;
|
| 68 |
+
color: var(--md-sys-color-outline);
|
| 69 |
+
font-size: 0.9rem;
|
| 70 |
+
}
|
| 71 |
+
footer a {
|
| 72 |
+
color: var(--md-sys-color-primary);
|
| 73 |
+
text-decoration: none;
|
| 74 |
+
font-weight: 600;
|
| 75 |
+
}
|
| 76 |
+
footer a:hover {
|
| 77 |
+
text-decoration: underline;
|
| 78 |
+
}
|
| 79 |
+
.github-link {
|
| 80 |
+
margin-left: 8px; /* Adjust as needed for spacing */
|
| 81 |
+
vertical-align: middle;
|
| 82 |
+
display: inline-flex;
|
| 83 |
+
align-items: center;
|
| 84 |
+
justify-content: center;
|
| 85 |
+
}
|
| 86 |
+
.github-link svg {
|
| 87 |
+
width: 16px; /* Smaller size */
|
| 88 |
+
height: 16px; /* Smaller size */
|
| 89 |
+
fill: var(--md-sys-color-primary); /* Color the GitHub icon */
|
| 90 |
+
transition: fill 0.2s ease-in-out;
|
| 91 |
+
}
|
| 92 |
+
.github-link:hover svg {
|
| 93 |
+
fill: #5a3f92; /* Darker shade on hover */
|
| 94 |
+
}
|
| 95 |
</style>
|
| 96 |
</head>
|
| 97 |
<body>
|
|
|
|
| 151 |
<div id="chunk-info-section" class="card" style="margin-top: 1.5rem; display: none;">
|
| 152 |
<h2>חלוקת קובץ השמע למקטעים</h2>
|
| 153 |
<p id="chunk-info-message" style="margin-bottom: 1rem;"></p>
|
| 154 |
+
<pre id="chunk-timestamps-output" style="
|
| 155 |
+
background-color: var(--md-sys-color-surface);
|
| 156 |
+
padding: 1rem;
|
| 157 |
+
border-radius: var(--border-radius-small);
|
| 158 |
+
border: 1px solid var(--md-sys-color-outline);
|
| 159 |
+
font-family: monospace;
|
| 160 |
+
font-size: 0.9rem;
|
| 161 |
+
direction: rtl; /* Ensure RTL for timestamps */
|
| 162 |
+
text-align: right;
|
| 163 |
+
max-height: 200px;
|
| 164 |
+
overflow-y: auto;
|
| 165 |
"></pre>
|
| 166 |
</div>
|
| 167 |
<!-- END NEW -->
|
|
|
|
| 361 |
});
|
| 362 |
});
|
| 363 |
</script>
|
| 364 |
+
<footer>
|
| 365 |
+
<p>
|
| 366 |
+
<a href="https://github.com/NHLOCAL/" target="_blank" class="github-link">
|
| 367 |
+
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="currentColor">
|
| 368 |
+
<path d="M12 0c-6.626 0-12 5.373-12 12 0 5.302 3.438 9.8 8.207 11.387.599.111.793-.261.793-.577v-2.234c-3.338.726-4.033-1.416-4.033-1.416-.546-1.387-1.333-1.756-1.333-1.756-1.089-.745.083-.729.083-.729 1.205.084 1.839 1.237 1.839 1.237 1.07 1.835 2.809 1.305 3.493.998.108-.776.418-1.305.762-1.604-2.665-.305-5.467-1.334-5.467-5.931 0-1.311.469-2.381 1.236-3.221-.124-.303-.535-1.524.117-3.176 0 0 1.008-.322 3.301 1.23.957-.266 1.983-.399 3.003-.404 1.02.005 2.047.138 3.006.404 2.291-1.552 3.297-1.23 3.297-1.23.653 1.653.242 2.874.118 3.176.77.84 1.235 1.911 1.235 3.221 0 4.609-2.807 5.624-5.479 5.921.43.372.823 1.102.823 2.222v3.293c0 .319.192.694.801.576 4.765-1.589 8.199-6.086 8.199-11.386 0-6.627-5.373-12-12-12z"/>
|
| 369 |
+
</svg>
|
| 370 |
+
</a>
|
| 371 |
+
נוצר על ידי <a href="https://nhlocal.github.io" target="_blank">Nh Local</a>
|
| 372 |
+
</p>
|
| 373 |
+
</footer>
|
| 374 |
</body>
|
| 375 |
</html>
|