Skip to content

Commit

Permalink
update font
Browse files Browse the repository at this point in the history
  • Loading branch information
xiaoranzhou committed Jan 31, 2024
1 parent efb7eed commit b1c55d9
Showing 1 changed file with 11 additions and 7 deletions.
18 changes: 11 additions & 7 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -20,8 +20,12 @@

<style>
.smallRef{
font-size: 5px;

font-size: 0.7rem;
line-height: 0.9rem;
}
.description{
font-size: 0.9rem;
line-height: 1.1rem;
}
</style>
</head>
Expand Down Expand Up @@ -259,13 +263,13 @@ <h5 class="modal-title" id="suggestionModalLabel">For your experimental metadata

switch(element.type){
case "Repository":
repoText[loc] += ("<b>"+element.acronym + "</b> ("+element.description +
")<br><a href='"+element.link +"' class='smallRef'> Click here to learn more about"+
repoText[loc] += ("<b>"+element.acronym + "</b> <span class='description'>("+element.description +
")</span><br><a href='"+element.link +"' class='smallRef'> Click here to learn more about"+
element.acronym +"</a><br>");
break;
case "Minimum Information standards":
misText[loc] += ("<b>"+element.acronym + "</b> ("+element.description +
")<br><a href='"+element.link +"' class='smallRef'> Click here to learn more about"
misText[loc] += ("<b>"+element.acronym + "</b> <span class='description'>("+element.description +
")</span><br><a href='"+element.link +"' class='smallRef'> Click here to learn more about"
+element.acronym +"</a><br>");
break;
}
Expand Down Expand Up @@ -302,7 +306,7 @@ <h5 class="modal-title" id="suggestionModalLabel">For your experimental metadata
loc = 4;
break;
}
var htmlText = `<div class="row border border-3">
var htmlText = `<div class="row ">
<div class="col-2 border border-2">
`+q3Ids[idd]+`
</div>
Expand Down

0 comments on commit b1c55d9

Please sign in to comment.