Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Added skip-to-content link #1033

Merged
merged 5 commits into from
Oct 11, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 21 additions & 2 deletions apps/Info.html
Original file line number Diff line number Diff line change
Expand Up @@ -38,10 +38,28 @@
<link rel="stylesheet" href="./table.css" />
<link rel="stylesheet" href="./info.css" />
<link rel="shortcut icon" type="image/x-icon" href="/apps/landing/favicon.png">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">

<style>
.skip-to-content {
position: absolute;
top: -40px;
left: 0;
background: #212529;
color: white;
padding: 8px;
z-index: 100;
transition: top 0.3s;
}
.skip-to-content:focus {
top: 0;
}
</style>

</head>

<body>
<a href="#main-content" class="skip-to-content">Skip to main content</a>
<div class="page-container">
<div>
<nav class="navbar navbar-expand-lg navbar-dark fixed-top bg-dark" style="position: sticky; margin-top: -4em;">
Expand Down Expand Up @@ -71,6 +89,7 @@
</div>
</nav>

<main id="main-content">
<div class="header text-center text-white bg-dark p-4">
<h1 class="h1">caMicroscope</h1>
<p style="font-weight: bold; font-size: 14pt;">Digital pathology image viewer with support for human/machine generated annotations and markups.</p>
Expand Down Expand Up @@ -153,7 +172,7 @@ <h3 class="text-center h3 mb-2" style="margin-top:8px;margin-bottom:10px;">Infor
</div>
</div>
</div>

</main>

<!-- footer -->
<footer id="footer-layout"></footer>
Expand Down
20 changes: 20 additions & 0 deletions apps/dev-workbench/workbench.html
Original file line number Diff line number Diff line change
Expand Up @@ -60,8 +60,25 @@
<script src="../../common/jszip.min.js"></script>
<script src="../../common/FileSaver.min.js"></script>
<script src="../../common/localforage.min.js"></script>

<style>
.skip-to-content {
position: absolute;
top: -40px;
left: 0;
background: #212529;
color: white;
padding: 8px;
z-index: 100;
transition: top 0.3s;
}
.skip-to-content:focus {
top: 0;
}
</style>
</head>
<body>
<a href="#main-content" class="skip-to-content">Skip to main content</a>
<!--Navbar-->
<nav
class="navbar navbar-expand-lg navbar-dark flex-row px-2"
Expand Down Expand Up @@ -134,6 +151,7 @@
</nav>
<!--/.Navbar-->

<main id="main-content">
<div id="headbar">
<br />
<div id="headContent" style="font-size: xx-large;">
Expand Down Expand Up @@ -515,5 +533,7 @@ <h5 class="modal-title" id="helpModalTitle">Help - User Guide</h5>
<script>
feather.replace(); // for feather Icons
</script>

</main>
</body>
</html>
29 changes: 24 additions & 5 deletions apps/landing/landing.html
Original file line number Diff line number Diff line change
Expand Up @@ -12,10 +12,29 @@
<!-- common styling -->
<link rel='stylesheet' type='text/css' media='all' href='../common.css'/>
<link rel="shortcut icon" type="image/x-icon" href="favicon.png">
<style>
.skip-link {
position: absolute;
top: 0;
left: 50%;
transform: translateX(-50%);
background: #212529;
color: white;
padding: 8px;
z-index: 9999;
text-decoration: none;
opacity: 0;
pointer-events: none;
}
.skip-link:focus {
opacity: 1;
pointer-events: auto;
}
</style>

</head>
<body>

<a class="skip-link" href="#main-content">Skip to main content</a>
<!-- loading animation -->
<div class="main-site">
<!-- adding css -->
Expand Down Expand Up @@ -57,8 +76,8 @@


<!-- Main -->

<section id="main" class="wrapper">
<main id="main-content">
<section id="main" class="wrapper">

<div class="inner">

Expand Down Expand Up @@ -93,8 +112,8 @@ <h2>Documentation</h2>
</div>
</section>
</div>
</section>

</section>
</main>


<!-- Footer -->
Expand Down
20 changes: 20 additions & 0 deletions apps/table.html
Original file line number Diff line number Diff line change
Expand Up @@ -40,9 +40,26 @@
<script src='../common/stacktable.js'></script>
<link rel="stylesheet" href="./table.css" />
<link rel="shortcut icon" type="image/x-icon" href="/apps/landing/favicon.png">

<style>
.skip-to-content {
position: absolute;
top: -40px;
left: 0;
background: #212529;
color: white;
padding: 8px;
z-index: 100;
transition: top 0.3s;
}
.skip-to-content:focus {
top: 0;
}
</style>
</head>

<body>
<a href="#main-content" class="skip-to-content">Skip to main content</a>
<div class="page-container">
<div>
<nav class="navbar navbar-expand-lg navbar-dark fixed-top bg-dark" style="position: sticky; margin-top: -4em;">
Expand Down Expand Up @@ -74,6 +91,8 @@
</div>
</div>
</nav>

<main id="main-content">
<div class="header text-center text-white bg-dark p-4">
<h1 class="h1">caMicroscope</h1>
<p style="font-weight: bold; font-size: 14pt;">Digital pathology image viewer with support for human/machine generated annotations and markups. View, Edit, and Manage Your Slides Here.</p>
Expand Down Expand Up @@ -327,6 +346,7 @@ <h5 class="modal-title" id="slideNameChangeModalLabel">Slide name change confirm
</div>

</div>
</main>

<!-- footer -->
<footer id="footer-layout"></footer>
Expand Down
Loading