Skip to content

Commit

Permalink
Merge branch 'dev'
Browse files Browse the repository at this point in the history
  • Loading branch information
Swaroop Guggilam committed May 22, 2022
2 parents da2a310 + 683d833 commit ca6436e
Show file tree
Hide file tree
Showing 4 changed files with 42 additions and 3 deletions.
29 changes: 29 additions & 0 deletions docs/css/base-structure.css
Original file line number Diff line number Diff line change
Expand Up @@ -294,6 +294,21 @@ hr.newgridhrline {
margin-top: 1px;
}

.labelSu {
display: inline-block;
margin: 0px;
height: 25px;
padding-left: 5px;
padding-right: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-top: 1px;
font-size: 14px;
text-align: center;
line-height: 28px;
border-radius: 3px;
}

.label_option {
display: inline-block;
margin: 0px;
Expand Down Expand Up @@ -1439,6 +1454,20 @@ sup {
display: block;
text-align: center;
}

.labelSu {
display: inline-block;
height: 50px;
padding-left: 5px;
padding-right: 5px;
margin-left: 5px;
margin-bottom: 5px;
margin-top: 5px;
font-size: 28px;
text-align: center;
line-height: 50px;
border-radius: 3px;
}
}

/* Replay */
Expand Down
5 changes: 5 additions & 0 deletions docs/css/dark_theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,11 @@
border: 1px solid var(--blueskyMedium);
}

.labelSu {
color: var(--white);
border: 1px solid var(--blueskyMedium);
}

.label_option {
color: var(--white);
border: 2px solid var(--blueDark);
Expand Down
5 changes: 5 additions & 0 deletions docs/css/light_theme.css
Original file line number Diff line number Diff line change
Expand Up @@ -85,6 +85,11 @@
border: 1px solid var(--blueDark);
}

.labelSu {
color: var(--black);
border: 1px solid var(--blueDark);
}

.label_option {
color: var(--black);
border: 1px solid var(--blueDark);
Expand Down
6 changes: 3 additions & 3 deletions docs/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -527,11 +527,11 @@
</span>
<span id="mode_sudoku" style="display:none;">
<input type="radio" name="mode_sudoku" value="1" id="sub_sudoku1" checked="checked">
<label for="sub_sudoku1" class="label" id="sub_sudoku1_lb">Normal</label>
<label for="sub_sudoku1" class="labelSu" id="sub_sudoku1_lb">Normal</label>
<input type="radio" name="mode_sudoku" value="2" id="sub_sudoku2">
<label for="sub_sudoku2" class="label" id="sub_sudoku2_lb">Corner</label>
<label for="sub_sudoku2" class="labelSu" id="sub_sudoku2_lb">Corner</label>
<input type="radio" name="mode_sudoku" value="3" id="sub_sudoku3">
<label for="sub_sudoku3" class="label" id="sub_sudoku3_lb">Centre</label>
<label for="sub_sudoku3" class="labelSu" id="sub_sudoku3_lb">Centre</label>
</span>
</div>
<div id="stylemode_button">
Expand Down

0 comments on commit ca6436e

Please sign in to comment.