Skip to content

Commit

Permalink
Merge pull request #615 from pllim/subrole-head-not-bold
Browse files Browse the repository at this point in the history
Roles: Sub-role in italics instead of bold
  • Loading branch information
hamogu authored Aug 12, 2024
2 parents bb49a86 + b8b6573 commit 218a823
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions css/style.css
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ time, mark, audio, video {
vertical-align: baseline;
}

em {
font-style: italic;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
Expand Down
2 changes: 1 addition & 1 deletion js/functions.js
Original file line number Diff line number Diff line change
Expand Up @@ -125,7 +125,7 @@ $( document ).ready(function(){
if (index > 0) {
blocks += '<br>';
}
blocks += '<strong>' + resp["subrole-head"] + '</strong>';
blocks += '<em>' + resp["subrole-head"] + '</em>';
}
blocks += '<p>' + resp["description"] + '</p>' +
'<ul>' + detail_list + '</ul>';
Expand Down

0 comments on commit 218a823

Please sign in to comment.