mirror of
https://github.com/Unkn0wnCat/KevinK.dev.js.git
synced 2025-05-01 03:07:16 +02:00
Run prettier
This commit is contained in:
parent
458b155945
commit
783e56e59d
3 changed files with 24 additions and 26 deletions
|
@ -74,6 +74,6 @@
|
||||||
},
|
},
|
||||||
"lint-staged": {
|
"lint-staged": {
|
||||||
"*.js": "eslint --cache --fix",
|
"*.js": "eslint --cache --fix",
|
||||||
"*.{js,css,md}": "prettier --write"
|
"*.{js,css,md,scss,json}": "prettier --write"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -13,7 +13,7 @@ $theme: (
|
||||||
"orange": #e5752b,
|
"orange": #e5752b,
|
||||||
"green": #18bb20,
|
"green": #18bb20,
|
||||||
"blue": #6d94e9,
|
"blue": #6d94e9,
|
||||||
"purple": #886af5
|
"purple": #886af5,
|
||||||
);
|
);
|
||||||
|
|
||||||
$theme-light: (
|
$theme-light: (
|
||||||
|
@ -24,11 +24,9 @@ $theme-light: (
|
||||||
"orange": #aa4f12,
|
"orange": #aa4f12,
|
||||||
"green": #17681b,
|
"green": #17681b,
|
||||||
"blue": #2b66e5,
|
"blue": #2b66e5,
|
||||||
"purple": #6848da
|
"purple": #6848da,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|
||||||
|
|
||||||
$accentColor: map.get($theme, "accent");
|
$accentColor: map.get($theme, "accent");
|
||||||
$background: map.get($theme, "background");
|
$background: map.get($theme, "background");
|
||||||
$lightBackground: map.get($theme-light, "background");
|
$lightBackground: map.get($theme-light, "background");
|
||||||
|
@ -56,7 +54,8 @@ $skillColor5Light: map.get($theme-light, "purple");
|
||||||
$noticeColor: rgba($accentColor, 0.15);
|
$noticeColor: rgba($accentColor, 0.15);
|
||||||
|
|
||||||
$cardShadow: -1px 11px 33px -10px rgba(27, 27, 27, 0.3);
|
$cardShadow: -1px 11px 33px -10px rgba(27, 27, 27, 0.3);
|
||||||
$cardHoverShadow: -1px 11px 33px -10px rgba(127, 127, 127, 0.2), -1px 11px 33px -10px rgba($accentColor, 0.75);
|
$cardHoverShadow: -1px 11px 33px -10px rgba(127, 127, 127, 0.2),
|
||||||
|
-1px 11px 33px -10px rgba($accentColor, 0.75);
|
||||||
|
|
||||||
$cardLightShadow: -1px 11px 33px -10px rgba(29, 29, 29, 0.7);
|
$cardLightShadow: -1px 11px 33px -10px rgba(29, 29, 29, 0.7);
|
||||||
$cardLightHoverShadow: -1px 11px 33px -10px rgba(29, 29, 29, 0.2),
|
$cardLightHoverShadow: -1px 11px 33px -10px rgba(29, 29, 29, 0.2),
|
||||||
|
@ -70,7 +69,6 @@ $aboutCVShadow: 0 0 15px 0 rgba($accentColor, 0.25);
|
||||||
$aboutCVColorEdu: map.get($theme, "blue");
|
$aboutCVColorEdu: map.get($theme, "blue");
|
||||||
$aboutCVColorEduLight: map.get($theme-light, "blue");
|
$aboutCVColorEduLight: map.get($theme-light, "blue");
|
||||||
|
|
||||||
|
|
||||||
@mixin homeBg {
|
@mixin homeBg {
|
||||||
background: linear-gradient(45deg, #000850 0%, #000320 100%),
|
background: linear-gradient(45deg, #000850 0%, #000320 100%),
|
||||||
radial-gradient(100% 225% at 100% 0%, #ff6928 0%, #000000 100%),
|
radial-gradient(100% 225% at 100% 0%, #ff6928 0%, #000000 100%),
|
||||||
|
|
|
@ -275,11 +275,11 @@
|
||||||
margin: 5px;
|
margin: 5px;
|
||||||
|
|
||||||
&.skill_framework {
|
&.skill_framework {
|
||||||
color: $skillColor1
|
color: $skillColor1;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.skill_platform {
|
&.skill_platform {
|
||||||
color: $skillColor2
|
color: $skillColor2;
|
||||||
}
|
}
|
||||||
|
|
||||||
&.skill_program {
|
&.skill_program {
|
||||||
|
|
Loading…
Add table
Reference in a new issue