aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorMango0x45 <thomasvoss@live.com> 2021-06-16 14:13:29 +0200
committerMango0x45 <thomasvoss@live.com> 2021-06-16 14:13:29 +0200
commit8b00d06786e8da11b550983405f0bdc0cf4eaf06 (patch)
treec4ca5769963fc59fc62356d97dda6b0ed1959706
parenteb11b47fd1a0ea76db1a631088466b89e542ff78 (diff)
Edit some asthetics and add labels
-rw-r--r--index.html12
-rw-r--r--style.css4
2 files changed, 12 insertions, 4 deletions
diff --git a/index.html b/index.html
index 2a593ab..e0ca56e 100644
--- a/index.html
+++ b/index.html
@@ -63,16 +63,20 @@
</p>
<p>
<label for="startobj">Starting frame: </label>
- <input type="text" id="startobj" style='width:100%' onchange='parse_time(event)'>
+ <input type="text" id="startobj" class="own_line" onchange='parse_time(event)'>
</p>
<p>
<label for="endobj">Ending frame: </label>
- <input type="text" id="endobj" style='width:100%' onchange='parse_time(event)'>
+ <input type="text" id="endobj" class="own_line" onchange='parse_time(event)'>
</p>
<h3>Video Time</h3>
- <input type="text" id="time" readonly size="40">
<p>
- <textarea id="mod_message" cols="40" rows="3" readonly disabled>
+ <label for="time">Time: </label>
+ <input type="text" id="time" class="own_line" readonly>
+ </p>
+ <p>
+ <label for"mod_message">Mod Message: </label>
+ <textarea id="mod_message" class="own_line" readonly disabled>
</textarea>
</p>
<button id="mod_message_button" disabled onclick="copy_mod_message()">
diff --git a/style.css b/style.css
index 10acb2c..9f3a764 100644
--- a/style.css
+++ b/style.css
@@ -122,6 +122,10 @@ button, code, input, textarea {
width: 34px;
}
+.own_line {
+ width: 100%;
+}
+
.options {
margin: 0;
}