Initial commit

Update .gitignore, LICENSE-CC0, and 70 more files...
This commit is contained in:
2024-11-04 22:52:24 +01:00
commit 88a40efb4e
72 changed files with 3903 additions and 0 deletions

20
scss/core/overflow.scss Normal file
View File

@@ -0,0 +1,20 @@
// NibblePoker CSS Theme - CC0 1.0 (Public Domain)
/* Core > Overflow */
@mixin overflow-maker($overflow-type) {
.o-#{$overflow-type} {
overflow: #{$overflow-type};
}
.ox-#{$overflow-type} {
overflow-x: #{$overflow-type};
}
.oy-#{$overflow-type} {
overflow-y: #{$overflow-type};
}
}
@include overflow-maker(auto);
@include overflow-maker(scroll);
@include overflow-maker(clip);
@include overflow-maker(hidden);