reverse condition drawing color nad cross game tick bg colr are red
parent
f5b30fa746
commit
4dfc08406d
|
@ -200,7 +200,7 @@ import Layout from "../../layouts/Layout.astro";
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
input[type="checkbox"]:checked {
|
input[type="checkbox"]:checked {
|
||||||
background: blue;
|
background: #FF0000;
|
||||||
}
|
}
|
||||||
input[type="checkbox"]:checked:after {
|
input[type="checkbox"]:checked:after {
|
||||||
content: "X";
|
content: "X";
|
||||||
|
|
|
@ -234,7 +234,7 @@ import Layout from "../../layouts/Layout.astro";
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
input[type="checkbox"]:checked {
|
input[type="checkbox"]:checked {
|
||||||
background: blue;
|
background: #FF0000;
|
||||||
}
|
}
|
||||||
input[type="checkbox"]:checked:after {
|
input[type="checkbox"]:checked:after {
|
||||||
border: none;
|
border: none;
|
||||||
|
|
|
@ -187,7 +187,7 @@ import Layout from "../../layouts/Layout.astro";
|
||||||
position: relative;
|
position: relative;
|
||||||
}
|
}
|
||||||
input[type="checkbox"]:checked {
|
input[type="checkbox"]:checked {
|
||||||
background: blue;
|
background: #FF0000;
|
||||||
}
|
}
|
||||||
input[type="checkbox"]:checked:after {
|
input[type="checkbox"]:checked:after {
|
||||||
border: none;
|
border: none;
|
||||||
|
|
|
@ -183,9 +183,9 @@ import Layout from '../../layouts/Layout.astro';
|
||||||
}
|
}
|
||||||
const outlineImage = this.add.image(customWidth / 2, customHeight / 2, 'outline');
|
const outlineImage = this.add.image(customWidth / 2, customHeight / 2, 'outline');
|
||||||
if(isMobile){
|
if(isMobile){
|
||||||
outlineImage.setDepth(1).setScale(0.33);
|
outlineImage.setDepth(-1).setScale(0.33);
|
||||||
} else{
|
} else{
|
||||||
outlineImage.setDepth(1).setScale(0.65);
|
outlineImage.setDepth(-1).setScale(0.65);
|
||||||
}
|
}
|
||||||
|
|
||||||
graphics = this.add.graphics();
|
graphics = this.add.graphics();
|
||||||
|
|
Loading…
Reference in New Issue