5 Commits

Author SHA1 Message Date
ee749cf1bb Overflow pre tag content when larger than viewport width 2025-10-12 23:59:33 -04:00
6bc40e11c1 Format HTML 2025-10-12 23:57:37 -04:00
4e853f04f3 Make images and iframe on about page responsive 2025-10-12 23:05:20 -04:00
fb01dd8e3f Fix missing list related closing tags 2025-10-12 09:16:03 -04:00
61aabd8ef1 Fix html tag issues
Remove xhtml closing slash to hr and br tags
Fix mixed ordered closing tags
Remove extraneous closing tags
2025-10-12 08:47:58 -04:00
2 changed files with 1148 additions and 1138 deletions

View File

@@ -593,6 +593,15 @@ fieldset > table td input[type="radio"] {
width: initial; width: initial;
margin-bottom: 0.5rem; margin-bottom: 0.5rem;
} }
#youtube {
--video-ratio: calc(390 / 640);
width: min(calc(95vw + 0px), 640px);
height: min(calc(calc(95vw + 0px) * var(--video-ratio)), 320px);
}
#upload_method pre {
max-width: 80vw;
overflow-x: scroll;
}
#search form { #search form {
flex: 1 1 100%; flex: 1 1 100%;
} }

File diff suppressed because it is too large Load Diff