Skip to content

Commit

Permalink
chore(rebuild): Merge pull request #40 from joshmoore/0_2_0
Browse files Browse the repository at this point in the history
0.2.0: switch to nested layout

SHA: af5399f
Reason: push, by @joshmoore

Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
  • Loading branch information
joshmoore and github-actions[bot] committed Apr 24, 2021
1 parent 385e2a8 commit 92fb952
Show file tree
Hide file tree
Showing 2 changed files with 56 additions and 48 deletions.
52 changes: 28 additions & 24 deletions 0.1/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -368,8 +368,8 @@
/** Subheadings ***************************************************************/

h1 + h2,
#subtitle {
/* #subtitle is a subtitle in an H2 under the H1 */
#profile-and-date {
/* #profile-and-date is a subtitle in an H2 under the H1 */
margin-top: 0;
}
h2 + h3,
Expand Down Expand Up @@ -583,34 +583,28 @@
a[href] {
color: #034575;
color: var(--a-normal-text);
text-decoration: none;
border-bottom: 1px solid #707070;
border-bottom: 1px solid var(--a-normal-underline);
/* Need a bit of extending for it to look okay */
padding: 0 1px 0;
margin: 0 -1px 0;
text-decoration: underline #707070;
text-decoration: underline var(--a-normal-underline);
text-decoration-skip-ink: none;
}
a:visited {
color: #034575;
color: var(--a-visited-text);
border-bottom-color: #bbb;
border-bottom-color: var(--a-visited-underline);
text-decoration-color: #bbb;
text-decoration-color: var(--a-visited-underline);
}

/* Use distinguishing colors when user is interacting with the link */
/* Indicate interaction with the link */
a[href]:focus,
a[href]:hover {
background: #f8f8f8;
background: rgba(75%, 75%, 75%, .25);
background: var(--a-hover-bg);
border-bottom-width: 3px;
margin-bottom: -2px;
text-decoration-thickness: 2px;
text-decoratin
}
a[href]:active {
color: #c00;
color: var(--a-active-text);
border-color: #c00;
border-color: var(--a-active-underline);
text-decoration-color: #c00;
text-decoration-color: var(--a-active-underline);
}

/* Backout above styling for W3C logo */
Expand Down Expand Up @@ -1116,9 +1110,12 @@

.toc a {
/* More spacing; use padding to make it part of the click target. */
padding-top: 0.1rem;
padding: 0.1rem 1px 0;
/* Larger, more consistently-sized click target */
display: block;
/* Switch to using border-bottom for underlines */
text-decoration: none;
border-bottom: 1px solid;
/* Reverse color scheme */
color: black;
color: var(--toclink-text);
Expand All @@ -1131,6 +1128,13 @@
border-color: #054572;
border-color: var(--toclink-visited-underline);
}
.toc a:focus,
.toc a:hover {
background: rgba(75%, 75%, 75%, .25);
background: var(--a-hover-bg);
border-bottom-width: 3px;
margin-bottom: -2px;
}
.toc a:not(:focus):not(:hover) {
/* Allow colors to cascade through from link styling */
border-bottom-color: transparent;
Expand Down Expand Up @@ -1484,9 +1488,9 @@
}
}
</style>
<meta content="Bikeshed version b94c7e755, updated Fri Feb 19 16:28:59 2021 -0800" name="generator">
<meta content="Bikeshed version c6f50773a, updated Fri Apr 16 16:45:47 2021 -0700" name="generator">
<link href="https://ngff.openmicroscopy.org/0.1/" rel="canonical">
<meta content="f8254d8d2739a08e7973a3a20af212b9fbff6d5e" name="document-revision">
<meta content="af5399faafcf8cb9d2ec0c1db99160705286fa37" name="document-revision">
<style>/* style-autolinks */

.css.css, .property.property, .descriptor.descriptor {
Expand Down Expand Up @@ -1593,9 +1597,9 @@
--ins-bg: transparent;

--a-normal-text: #034575;
--a-normal-underline: #707070;
--a-normal-underline: #bbb;
--a-visited-text: var(--a-normal-text);
--a-visited-underline: #bbb;
--a-visited-underline: #707070;
--a-hover-bg: rgba(75%, 75%, 75%, .25);
--a-active-text: #c00;
--a-active-underline: #c00;
Expand Down Expand Up @@ -1812,7 +1816,7 @@
<div class="head">
<img alt="OME logo (6 circles in a hexagon)" src="http://www.openmicroscopy.org/img/logos/ome-logomark.svg" style="float:right;width:42px;height:42px;">
<h1 class="p-name no-ref" id="title">Next-generation file formats (NGFF)</h1>
<h2 class="no-num no-toc no-ref heading settled" id="subtitle"><span class="content">Final Community Group Report, <time class="dt-updated" datetime="2021-02-28">28 February 2021</time></span></h2>
<h2 class="no-num no-toc no-ref heading settled" id="subtitle"><span class="content">Final Community Group Report, <time class="dt-updated" datetime="2021-04-24">24 April 2021</time></span></h2>
<div data-fill-with="spec-metadata">
<dl>
<dt>This version:
Expand Down
52 changes: 28 additions & 24 deletions latest/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -368,8 +368,8 @@
/** Subheadings ***************************************************************/

h1 + h2,
#subtitle {
/* #subtitle is a subtitle in an H2 under the H1 */
#profile-and-date {
/* #profile-and-date is a subtitle in an H2 under the H1 */
margin-top: 0;
}
h2 + h3,
Expand Down Expand Up @@ -583,34 +583,28 @@
a[href] {
color: #034575;
color: var(--a-normal-text);
text-decoration: none;
border-bottom: 1px solid #707070;
border-bottom: 1px solid var(--a-normal-underline);
/* Need a bit of extending for it to look okay */
padding: 0 1px 0;
margin: 0 -1px 0;
text-decoration: underline #707070;
text-decoration: underline var(--a-normal-underline);
text-decoration-skip-ink: none;
}
a:visited {
color: #034575;
color: var(--a-visited-text);
border-bottom-color: #bbb;
border-bottom-color: var(--a-visited-underline);
text-decoration-color: #bbb;
text-decoration-color: var(--a-visited-underline);
}

/* Use distinguishing colors when user is interacting with the link */
/* Indicate interaction with the link */
a[href]:focus,
a[href]:hover {
background: #f8f8f8;
background: rgba(75%, 75%, 75%, .25);
background: var(--a-hover-bg);
border-bottom-width: 3px;
margin-bottom: -2px;
text-decoration-thickness: 2px;
text-decoratin
}
a[href]:active {
color: #c00;
color: var(--a-active-text);
border-color: #c00;
border-color: var(--a-active-underline);
text-decoration-color: #c00;
text-decoration-color: var(--a-active-underline);
}

/* Backout above styling for W3C logo */
Expand Down Expand Up @@ -1116,9 +1110,12 @@

.toc a {
/* More spacing; use padding to make it part of the click target. */
padding-top: 0.1rem;
padding: 0.1rem 1px 0;
/* Larger, more consistently-sized click target */
display: block;
/* Switch to using border-bottom for underlines */
text-decoration: none;
border-bottom: 1px solid;
/* Reverse color scheme */
color: black;
color: var(--toclink-text);
Expand All @@ -1131,6 +1128,13 @@
border-color: #054572;
border-color: var(--toclink-visited-underline);
}
.toc a:focus,
.toc a:hover {
background: rgba(75%, 75%, 75%, .25);
background: var(--a-hover-bg);
border-bottom-width: 3px;
margin-bottom: -2px;
}
.toc a:not(:focus):not(:hover) {
/* Allow colors to cascade through from link styling */
border-bottom-color: transparent;
Expand Down Expand Up @@ -1484,9 +1488,9 @@
}
}
</style>
<meta content="Bikeshed version b94c7e755, updated Fri Feb 19 16:28:59 2021 -0800" name="generator">
<meta content="Bikeshed version c6f50773a, updated Fri Apr 16 16:45:47 2021 -0700" name="generator">
<link href="https://ngff.openmicroscopy.org/latest/" rel="canonical">
<meta content="f8254d8d2739a08e7973a3a20af212b9fbff6d5e" name="document-revision">
<meta content="af5399faafcf8cb9d2ec0c1db99160705286fa37" name="document-revision">
<style>/* style-autolinks */

.css.css, .property.property, .descriptor.descriptor {
Expand Down Expand Up @@ -1593,9 +1597,9 @@
--ins-bg: transparent;

--a-normal-text: #034575;
--a-normal-underline: #707070;
--a-normal-underline: #bbb;
--a-visited-text: var(--a-normal-text);
--a-visited-underline: #bbb;
--a-visited-underline: #707070;
--a-hover-bg: rgba(75%, 75%, 75%, .25);
--a-active-text: #c00;
--a-active-underline: #c00;
Expand Down Expand Up @@ -1812,7 +1816,7 @@
<div class="head">
<img alt="OME logo (6 circles in a hexagon)" src="http://www.openmicroscopy.org/img/logos/ome-logomark.svg" style="float:right;width:42px;height:42px;">
<h1 class="p-name no-ref" id="title">Next-generation file formats (NGFF)</h1>
<h2 class="no-num no-toc no-ref heading settled" id="subtitle"><span class="content">Editor’s Draft, <time class="dt-updated" datetime="2021-02-28">28 February 2021</time></span></h2>
<h2 class="no-num no-toc no-ref heading settled" id="subtitle"><span class="content">Editor’s Draft, <time class="dt-updated" datetime="2021-04-24">24 April 2021</time></span></h2>
<div data-fill-with="spec-metadata">
<dl>
<dt>This version:
Expand Down

0 comments on commit 92fb952

Please sign in to comment.