Accessibility

This commit is contained in:
MeowcaTheoRange 2023-11-26 18:58:46 -06:00
parent 2b8e31a564
commit 1d754517fa
10 changed files with 37 additions and 23 deletions

View file

@ -29,6 +29,7 @@
<p>More about this domain.</p>
</section>
<$ nav.html $>
<section id="accessibility" hidden></section>
</header>
<main>
<section id="data_get">

View file

@ -24,11 +24,14 @@
</head>
<body>
<$ loader.html $>
<section>
<h1>Blog</h1>
<p>A place where I post unhinged ramblings (blog posts).</p>
</section>
<$ nav.html $>
<header>
<section>
<h1>Blog</h1>
<p>A place where I post unhinged ramblings (blog posts).</p>
</section>
<$ nav.html $>
<section id="accessibility" hidden></section>
</header>
<section id="data_get">
<h1>Getting blogs...</h1>
</section>

View file

@ -37,6 +37,7 @@
<h1>Branding</h1>
</section>
<$ nav.html $>
<section id="accessibility" hidden></section>
</header>
<main>
<section>

View file

@ -28,6 +28,7 @@
<h1>ABTMTR.LINK</h1>
</section>
<$ nav.html $>
<section id="accessibility" hidden></section>
</header>
<main>
<section>
@ -66,7 +67,6 @@
<section id="fields"></section>
</main>
<div id="WindowHolder"></div>
<section id="accessibility" hidden></section>
<script src="/scripts/windows.js"></script>
<script src="/scripts/accessibility.js"></script>
<script src="./scripts/data_get_whoami.js"></script>

View file

@ -29,6 +29,7 @@
<p>Where else you can find me.</p>
</section>
<$ nav.html $>
<section id="accessibility" hidden></section>
</header>
<main>
<section id="data_get">

View file

@ -26,10 +26,13 @@
</head>
<body>
<$ loader.html $>
<section>
<h1>HexFlagGen</h1>
<p>Make a flag out of the hexadecimal bytes of your choice.</p>
</section>
<header>
<section>
<h1>HexFlagGen</h1>
<p>Make a flag out of the hexadecimal bytes of your choice.</p>
</section>
<section id="accessibility" hidden></section>
</header>
<hr />
<section>
<label for="data">Generator string</label><br />

View file

@ -24,11 +24,14 @@
</head>
<body>
<$ loader.html $>
<section>
<h1>Projects</h1>
<p>Various projects I've made.</p>
</section>
<$ nav.html $>
<header>
<section>
<h1>Projects</h1>
<p>Various projects I've made.</p>
</section>
<$ nav.html $>
<section id="accessibility" hidden></section>
</header>
<section id="data_get">
<h1>Getting projects...</h1>
</section>

View file

@ -26,10 +26,13 @@
</head>
<body>
<$ loader.html $>
<section>
<h1>WozSteamGem</h1>
<p>Make a Scott The Woz thumbnail out of any Steam game.</p>
</section>
<header>
<section>
<h1>WozSteamGem</h1>
<p>Make a Scott The Woz thumbnail out of any Steam game.</p>
</section>
<section id="accessibility" hidden></section>
</header>
<hr />
<section>
<input
@ -72,7 +75,6 @@
<label for="align">Background Alignment</label>
</section>
<div id="WindowHolder"></div>
<section id="accessibility" hidden></section>
<script src="./scripts/index.js"></script>
<script src="/scripts/windows.js"></script>
<script src="/scripts/accessibility.js"></script>

View file

@ -27,6 +27,7 @@
<h1>Site Information</h1>
</section>
<$ nav.html $>
<section id="accessibility" hidden></section>
</header>
<main>
<section>
@ -57,7 +58,6 @@
</p>
</section>
</main>
<section id="accessibility" hidden></section>
<script src="/scripts/windows.js"></script>
<script src="/scripts/accessibility.js"></script>
</body>

View file

@ -1,7 +1,7 @@
#accessibility {
position: sticky;
/* position: sticky;
bottom: 1em;
left: 1em;
left: 1em; */
background-color: var(--background-color);
padding: 0.5em;
}