Skip to content

Commit

Permalink
Some CSS mods to make letter smaller
Browse files Browse the repository at this point in the history
  • Loading branch information
kispaljr committed Dec 6, 2022
1 parent 03e22b7 commit 1e8d3a5
Showing 1 changed file with 13 additions and 7 deletions.
20 changes: 13 additions & 7 deletions alapmuveleti/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,17 @@
border-spacing: 0.5em 0;
}

table.columns {
border-collapse: separate;
border-right: 15em;
}


th,
td {
border: none;
/* 1px solid; */
font-size: 18pt;
font-size: 14pt;
font-family: Arial;
height: 28pt;
}
Expand Down Expand Up @@ -92,7 +98,7 @@
if (this.random_missing_operand) {
missing_pos = rando([0,2,4]).value;
}
op[missing_pos] = "___";
op[missing_pos] = "__";
return op;
}
}
Expand Down Expand Up @@ -272,18 +278,18 @@
</div>


<table id='exercises'>
<table class='columns' id='exercises'>
<tr>
<td>
<td class='columns'>
<table id='exercises_1' class='exercises'></table>
</td>
<td>
<td class='columns'>
<table id='exercises_2' class='exercises'></table>
</td>
<td>
<td class='columns'>
<table id='exercises_3' class='exercises'></table>
</td>
<td>
<td class='columns'>
<table id='exercises_4' class='exercises'></table>
</td>
</tr>
Expand Down

0 comments on commit 1e8d3a5

Please sign in to comment.