diff --git a/JustShortIt.csproj b/JustShortIt.csproj index 7d30a33..386847e 100644 --- a/JustShortIt.csproj +++ b/JustShortIt.csproj @@ -8,14 +8,6 @@ . - - - - - - - - diff --git a/compilerconfig.json b/compilerconfig.json deleted file mode 100644 index 48ade59..0000000 --- a/compilerconfig.json +++ /dev/null @@ -1,6 +0,0 @@ -[ - { - "outputFile": "wwwroot/css/index.css", - "inputFile": "wwwroot/css/index.sass" - } -] \ No newline at end of file diff --git a/compilerconfig.json.defaults b/compilerconfig.json.defaults deleted file mode 100644 index 41870cc..0000000 --- a/compilerconfig.json.defaults +++ /dev/null @@ -1,71 +0,0 @@ -{ - "compilers": { - "less": { - "autoPrefix": "", - "cssComb": "none", - "ieCompat": true, - "math": null, - "strictMath": false, - "strictUnits": false, - "relativeUrls": true, - "rootPath": "", - "sourceMapRoot": "", - "sourceMapBasePath": "", - "sourceMap": false - }, - "sass": { - "autoPrefix": "", - "loadPaths": "", - "style": "expanded", - "relativeUrls": true, - "sourceMap": false - }, - "nodesass": { - "autoPrefix": "", - "includePath": "", - "indentType": "space", - "indentWidth": 2, - "outputStyle": "nested", - "precision": 5, - "relativeUrls": true, - "sourceMapRoot": "", - "lineFeed": "", - "sourceMap": false - }, - "stylus": { - "sourceMap": false - }, - "babel": { - "sourceMap": false - }, - "coffeescript": { - "bare": false, - "runtimeMode": "node", - "sourceMap": false - }, - "handlebars": { - "root": "", - "noBOM": false, - "name": "", - "namespace": "", - "knownHelpersOnly": false, - "forcePartial": false, - "knownHelpers": [], - "commonjs": "", - "amd": false, - "sourceMap": false - } - }, - "minifiers": { - "css": { - "enabled": true, - "termSemicolons": true, - "gzip": false - }, - "javascript": { - "enabled": true, - "termSemicolons": true, - "gzip": false - } - } -} \ No newline at end of file diff --git a/package-lock.json b/package-lock.json index 2eb8c6b..e416c66 100644 --- a/package-lock.json +++ b/package-lock.json @@ -6,7 +6,6 @@ "": { "dependencies": { "autoprefixer": "^10.4.16", - "bulma": "^0.9.4", "cssnano": "^6.0.1", "daisyui": "^4.4.0", "postcss": "^8.4.31", @@ -257,11 +256,6 @@ "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, - "node_modules/bulma": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/bulma/-/bulma-0.9.4.tgz", - "integrity": "sha512-86FlT5+1GrsgKbPLRRY7cGDg8fsJiP/jzTqXXVqiUZZ2aZT8uemEOHlU1CDU+TxklPEZ11HZNNWclRBBecP4CQ==" - }, "node_modules/camelcase-css": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", @@ -2288,11 +2282,6 @@ "update-browserslist-db": "^1.0.13" } }, - "bulma": { - "version": "0.9.4", - "resolved": "https://registry.npmjs.org/bulma/-/bulma-0.9.4.tgz", - "integrity": "sha512-86FlT5+1GrsgKbPLRRY7cGDg8fsJiP/jzTqXXVqiUZZ2aZT8uemEOHlU1CDU+TxklPEZ11HZNNWclRBBecP4CQ==" - }, "camelcase-css": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/camelcase-css/-/camelcase-css-2.0.1.tgz", diff --git a/package.json b/package.json index 54b1685..7946aeb 100644 --- a/package.json +++ b/package.json @@ -1,7 +1,6 @@ { "dependencies": { "autoprefixer": "^10.4.16", - "bulma": "^0.9.4", "cssnano": "^6.0.1", "daisyui": "^4.4.0", "postcss": "^8.4.31", diff --git a/wwwroot/css/index.sass b/wwwroot/css/index.sass deleted file mode 100644 index 2adc772..0000000 --- a/wwwroot/css/index.sass +++ /dev/null @@ -1,51 +0,0 @@ -/* ditching the roundings */ -$radius-small: 0px -$radius: 0px -$radius-large: 0px - -/**/ -$primary: hsl(257, 45%, 36%) -$secondary: hsl(140, 70%, 40%) -$secondary-light: hsl(140, 70%, 50%) -$secondary-dark: hsl(140, 70%, 20%) - -$weight-light: 600 -$weight-normal: 600 -$weight-medium: 600 -$weight-semibold: 800 -$weight-bold: 800 - -$link: $secondary -$link-hover: $secondary-dark - -$scheme-main: hsl(0, 0%, 8%) -$scheme-main-bis: hsl(0, 0%, 4%) -$scheme-main-ter: hsl(0, 0%, 0%) - -$text: $secondary -$text-light: $secondary-light -$text-strong: $secondary-light - -/* bulma generates the colors, so we have to overwrite them */ -a.button.is-primary, -button.button.is-primary - color: $text-strong !important - -nav.navbar.is-primary - box-shadow: none !important - .navbar-item - color: $text-strong !important - -root, html, body - letter-spacing: 0.05rem - -/* TODO check what we need here and ditch the rest */ -/* don't judge me */ -@import "../../node_modules/bulma/sass/utilities/_all" -@import "../../node_modules/bulma/sass/base/_all" -@import "../../node_modules/bulma/sass/elements/_all" -@import "../../node_modules/bulma/sass/form/_all" -@import "../../node_modules/bulma/sass/components/_all" -@import "../../node_modules/bulma/sass/grid/_all" -@import "../../node_modules/bulma/sass/helpers/_all" -@import "../../node_modules/bulma/sass/layout/_all" \ No newline at end of file