PuzzleGame/PuzzleGameProject/Assets/Dice.uss
2025-02-27 15:52:40 +01:00

54 lines
1.4 KiB
Text

.die.selected-of-pair {
border-left-color: rgb(59, 115, 40);
border-right-color: rgb(59, 115, 40);
border-top-color: rgb(59, 115, 40);
border-bottom-color: rgb(59, 115, 40);
border-top-width: 5px;
border-right-width: 5px;
border-bottom-width: 5px;
border-left-width: 5px;
}
.die.white {
background-color: rgb(255, 255, 255);
}
.die {
width: 50px;
height: 50px;
flex-shrink: 0;
border-top-left-radius: 7px;
border-top-right-radius: 7px;
border-bottom-right-radius: 7px;
border-bottom-left-radius: 7px;
border-left-color: rgb(0, 0, 0);
border-right-color: rgb(0, 0, 0);
border-top-color: rgb(0, 0, 0);
border-bottom-color: rgb(0, 0, 0);
border-top-width: 2px;
border-right-width: 2px;
border-bottom-width: 2px;
border-left-width: 2px;
font-size: 38px;
-unity-font-style: bold;
}
.die.black {
background-color: rgb(0, 0, 0);
color: rgb(255, 255, 255);
border-left-color: rgb(255, 255, 255);
border-right-color: rgb(255, 255, 255);
border-top-color: rgb(255, 255, 255);
border-bottom-color: rgb(255, 255, 255);
}
.die.selected {
border-left-color: rgb(255, 200, 71);
border-right-color: rgb(255, 200, 71);
border-top-color: rgb(255, 200, 71);
border-bottom-color: rgb(255, 200, 71);
border-top-width: 5px;
border-right-width: 5px;
border-bottom-width: 5px;
border-left-width: 5px;
}