Add stylelint

This commit is contained in:
Jake Howard 2022-08-03 21:22:11 +01:00
parent eae2953b89
commit e5392fa95d
Signed by: jake
GPG Key ID: 57AFB45680EDD477
10 changed files with 2132 additions and 10 deletions

1
.stylelintignore Symbolic link
View File

@ -0,0 +1 @@
./.gitignore

3
.stylelintrc Normal file
View File

@ -0,0 +1,3 @@
{
"extends": ["stylelint-config-standard-scss", "stylelint-config-prettier-scss"]
}

2114
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -11,9 +11,11 @@
"build": "npm-run-all build:*",
"lint:eslint": "eslint --ext js --report-unused-disable-directives .",
"lint:prettier": "prettier --check static/src",
"lint:scss": "stylelint static/src/scss",
"lint": "npm-run-all lint:*",
"format:prettier": "prettier --write static/src",
"format:eslint": "npm run lint:eslint -- --fix",
"format:scss": "npm run lint:scss -- --fix",
"format": "npm-run-all format:*"
},
"author": "Jake Howard",
@ -22,7 +24,10 @@
"eslint": "^8.21.0",
"npm-run-all": "^4.1.5",
"prettier": "2.6.2",
"sass": "^1.52.3"
"sass": "^1.52.3",
"stylelint": "^14.9.1",
"stylelint-config-prettier-scss": "^0.0.1",
"stylelint-config-standard-scss": "^5.0.0"
},
"dependencies": {
"@fortawesome/fontawesome-free": "^6.1.1",

View File

@ -1,7 +1,6 @@
@mixin center-block($width: 85%, $mobile-width: 90%) {
width: $width;
margin: 0 auto;
max-width: $width;
min-width: $width;

View File

@ -3,12 +3,13 @@
$container-max-width: $widescreen;
$pre-background: unset;
$family-code: "Fira Code", monospace;
$dropdown-content-radius: 0px;
$dropdown-content-offset: 0px;
$dropdown-content-radius: 0;
$dropdown-content-offset: 0;
$primary: #e85537;
$link: $primary;
$dark: #17181c;
// Navbar overrides
$navbar-item-color: $grey-light;
$navbar-background-color: $dark;
$navbar-item-hover-color: $grey-lighter;
@ -17,5 +18,5 @@ $navbar-colors: (); // Disable other variants to keep the size down
$code-background: none;
$pre-background: none;
$code-padding: 0px;
$code-padding: 0;
$code: inherit;

View File

@ -23,7 +23,7 @@ body.page-homepage {
.latest {
padding: 0.25rem 0.5rem;
margin-top: 2rem;
background-color: transparentize($dark, 0.2);
background-color: color.adjust($dark, $alpha: -0.2);
border-radius: $input-radius;
max-width: 75%;
overflow-x: hidden;
@ -41,11 +41,11 @@ body.page-homepage {
width: 85%;
margin-top: 15px;
text-align: center;
background-color: transparentize($dark, 0.2) !important;
background-color: color.adjust($dark, $alpha: -0.2) !important;
color: $white !important;
&::placeholder {
color: rgba(214, 210, 205, 0.8) !important;
color: rgba(214 210 205 / 80%) !important;
}
&:focus {

View File

@ -2,6 +2,7 @@
0% {
transform: rotate(0deg);
}
100% {
transform: rotate(360deg);
}

View File

@ -1,6 +1,6 @@
@use "sass:math";
@use "sass:color";
@use "variables" as *;
@use "bulma_overrides" as *;
@import "bulma/bulma";