Initial commit

This commit is contained in:
Yaser
2026-08-13 20:00:11 +03:30
commit b7d0fcf68b
2029 changed files with 126991 additions and 0 deletions

15
.stylelintrc.json Normal file
View File

@@ -0,0 +1,15 @@
{
"extends": "stylelint-config-standard",
"plugins": [
"stylelint-order"
],
"rules": {
"at-rule-no-unknown": null,
"order/order": [
"custom-properties",
"declarations"
],
"order/properties-alphabetical-order": true,
"no-descending-specificity": null
}
}