This commit is contained in:
2025-11-14 17:30:19 +01:00
parent 5b19b729c4
commit 9ff15dd9f7
26 changed files with 1044 additions and 0 deletions

View File

@@ -0,0 +1,16 @@
@use "sudoku";
%diagonal{
background-color: gold;
}
table.sudoku{
@for $i from 1 through 9{
tr:nth-child(#{$i}) > td:nth-child(#{$i}){
@extend %diagonal;
}
tr:nth-child(#{$i}) > td:nth-child(#{10 - $i}){
@extend %diagonal;
}
}
}