Skip to content

Commit

Permalink
layout and subheading tweaks
Browse files Browse the repository at this point in the history
  • Loading branch information
mattgarrish committed Jan 10, 2025
1 parent 1d2ea6c commit 4f8a065
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 6 deletions.
7 changes: 5 additions & 2 deletions css/viewer.css
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,11 @@ h3 {
margin: 0;
}

p.sub-hd {
font-weight: bold;
div.grid-body > h4 {
font-size: 94%;
font-weight: normal;
font-style: italic;
margin-top: 4rem;
}

/* general links */
Expand Down
3 changes: 1 addition & 2 deletions js/onixProcessor.js
Original file line number Diff line number Diff line change
Expand Up @@ -207,8 +207,7 @@ var onixProcessor = (function() {
conf_group.appendChild(cred_p);
}

var detconf_hd = document.createElement('p');
detconf_hd.classList.add('sub-hd');
var detconf_hd = document.createElement('h4');
detconf_hd.appendChild(document.createTextNode('Detailed Conformance Information'));
conf_group.appendChild(detconf_hd);

Expand Down
3 changes: 1 addition & 2 deletions js/packageProcessor.js
Original file line number Diff line number Diff line change
Expand Up @@ -451,8 +451,7 @@ var packageProcessor = (function() {
conf_group.appendChild(cred_p);
}

var detconf_hd = document.createElement('p');
detconf_hd.classList.add('sub-hd');
var detconf_hd = document.createElement('h4');
detconf_hd.appendChild(document.createTextNode('Detailed Conformance Information'));
conf_group.appendChild(detconf_hd);

Expand Down

0 comments on commit 4f8a065

Please sign in to comment.