diff options
author | Mango0x45 <thomasvoss@live.com> | 2021-03-30 13:03:03 +0200 |
---|---|---|
committer | Mango0x45 <thomasvoss@live.com> | 2021-03-30 13:03:03 +0200 |
commit | 61460b52758297daf1d315ae7960d4ec9713b3af (patch) | |
tree | 0b6f9e8f698e1c29dba56d6fc2fa352a6fa177ee /index.html | |
parent | 971d279043e45c555d36502ae2bbaed2b81c2806 (diff) |
Grab CSS from stackedit and remove all the bloat. Also start work on dark theme.
Diffstat (limited to 'index.html')
-rw-r--r-- | index.html | 56 |
1 files changed, 39 insertions, 17 deletions
@@ -7,44 +7,66 @@ <meta name="description" content="A speedrun retime tool"> <meta name="viewport" content="width=device-width, initial-scale=1.0"> <title>YouTube Frame Timer</title> - <link rel="stylesheet" href="https://stackedit.io/style.css"> + <link rel="stylesheet" href="style.css" type="text/css" media="screen"> + <!-- + <link rel="stylesheet" href="dark.css" type="text/css" media="screen"> + --> <script src="main.js"></script> </head> <body class="stackedit"> <div class="stackedit__html"> - <h1 id="youtube-interval-timer">Speedrun Retimer without Ads</h1> + <!-- + TODO: Finish dark theme! + + <label class="switch"> + <input type="checkbox" id="color_preference" onclick="change_preferance()"> + <span class="slider round" id="slider"></span> + </label> + --> + <h1>Speedrun Retimer without Ads</h1> + <a href="https://github.com/Mango0x45/no-ad-retimer"> + Source code (GitHub) + </a> <h3 id="video-framerate">Video Framerate</h3> - <p>Right click the YouTube video and select “Stats for nerds.” The - third line is “Current / Optimal Res” - find the two numbers after - the @ and enter them for framerate.</p> + <p> + Right click the YouTube video and select “Stats for + nerds.” The third line is “Current / Optimal Res” - + find the two numbers after the @ and enter them for + framerate. + </p> <p> <label for="framerate">Framerate: </label> - <input type="text" id="framerate" size="3" value="30" onchange='check_fps(event)'> + <input type="text" id="framerate" size="3" value="30" + onchange='check_fps(event)'> </p> - <h3 id="video-endpoints">Video Endpoints</h3> + <h3>Video Endpoints</h3> <p> - Find the starting point (you can use the <code>,</code> and - <code>.</code> keys to find the exact frame). Right click the video - and select “Copy debug info” and paste it for starting frame. Repeat - for ending frame. + Find the starting point (you can use the <code>,</code> + and <code>.</code> keys to find the exact frame). Right + click the video and select “Copy debug info” and paste + it for starting frame. Repeat for ending frame. </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" style='width:100%' + 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" style='width:100%' + onchange='parse_time(event)'> </p> <h3 id="video-time">Video Time</h3> <input type="text" id="time" readonly size="20"> <p> - <textarea id="mod_message" cols="40" rows="5" disabled></textarea> + <textarea id="mod_message" cols="40" rows="3" readonly + disabled> + </textarea> </p> - <button id="mod_message_button" onclick="copy_mod_message()" disabled>Copy Mod Message to - Clipboard</button> + <button id="mod_message_button" onclick="copy_mod_message()" + disabled>Copy Mod Message to Clipboard</button> </div> </body> -</html>
\ No newline at end of file +</html> |