diff options
author | Mango0x45 <thomasvoss@live.com> | 2021-06-16 14:26:28 +0200 |
---|---|---|
committer | Mango0x45 <thomasvoss@live.com> | 2021-06-16 14:26:28 +0200 |
commit | 9ab341dfddcf9f512ef868f9377ce82ef60ec507 (patch) | |
tree | badaaa3f87c5d853fed6fd181a4f56a5fbe59c07 | |
parent | 684ce6297b3d92ddfdd5db36ace58d105b16a972 (diff) |
Switch h3 tags to h2
-rw-r--r-- | index.html | 6 | ||||
-rw-r--r-- | style.css | 8 |
2 files changed, 9 insertions, 5 deletions
@@ -45,7 +45,7 @@ <a href="https://github.com/Mango0x45/no-ad-retimer" target="_blank" class="toggleable"> Source code (GitHub) </a> - <h3>Video Framerate</h3> + <h2>Video Framerate</h2> <p class="toggleable"> 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 @@ -55,7 +55,7 @@ <label for="framerate">Framerate: </label> <input type="text" id="framerate" size="3" value="30" onchange='check_fps(event)'> </p> - <h3>Video Endpoints</h3> + <h2>Video Endpoints</h2> <p class="toggleable"> 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 @@ -69,7 +69,7 @@ <label for="endobj">Ending frame: </label> <input type="text" id="endobj" class="own_line" onchange='parse_time(event)'> </p> - <h3>Video Time</h3> + <h2>Video Time</h2> <p> <label for="time">Time: </label> <input type="text" id="time" class="own_line" readonly> @@ -56,7 +56,11 @@ h1 { width: var(--screen-width); } -h1, h3 { +h2 { + font-size: 18px; +} + +h1, h2 { margin: 1.8em 0; line-height: 1.33; } @@ -65,7 +69,7 @@ p { margin: 1.2em 0; } -button, h1, h3, input, p, textarea { +button, h1, h2, input, p, textarea { color: var(--text-color); } |