mirror of
https://github.com/Unkn0wnCat/KevinK.dev.js.git
synced 2025-06-15 09:02:01 +02:00
Run prettier
This commit is contained in:
parent
79b6120522
commit
839ea26e92
10 changed files with 875 additions and 870 deletions
|
@ -10,7 +10,8 @@
|
||||||
border-radius: 5px;
|
border-radius: 5px;
|
||||||
overflow: hidden;
|
overflow: hidden;
|
||||||
box-shadow: -1px 11px 33px -10px rgba(127, 127, 127, 0.3);
|
box-shadow: -1px 11px 33px -10px rgba(127, 127, 127, 0.3);
|
||||||
transition: transform 0.25s, box-shadow 0.25s, background-color 0.25s, color 0.25s;
|
transition: transform 0.25s, box-shadow 0.25s, background-color 0.25s,
|
||||||
|
color 0.25s;
|
||||||
color: $textColor;
|
color: $textColor;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
margin: 20px;
|
margin: 20px;
|
||||||
|
@ -68,7 +69,7 @@
|
||||||
display: block;
|
display: block;
|
||||||
text-decoration: none;
|
text-decoration: none;
|
||||||
color: inherit;
|
color: inherit;
|
||||||
transition: background-color .25s, color .25s;
|
transition: background-color 0.25s, color 0.25s;
|
||||||
|
|
||||||
@media (prefers-color-scheme: light) {
|
@media (prefers-color-scheme: light) {
|
||||||
background: darken($accentColor, 1);
|
background: darken($accentColor, 1);
|
||||||
|
|
|
@ -11,7 +11,7 @@
|
||||||
color: $textColor;
|
color: $textColor;
|
||||||
backdrop-filter: blur(5px);
|
backdrop-filter: blur(5px);
|
||||||
z-index: 999;
|
z-index: 999;
|
||||||
transition: background-color .25s, color .25s;
|
transition: background-color 0.25s, color 0.25s;
|
||||||
|
|
||||||
@supports (backdrop-filter: blur(5px)) {
|
@supports (backdrop-filter: blur(5px)) {
|
||||||
background: rgba($background, 0.9);
|
background: rgba($background, 0.9);
|
||||||
|
@ -53,7 +53,7 @@
|
||||||
|
|
||||||
&.active {
|
&.active {
|
||||||
border-color: white;
|
border-color: white;
|
||||||
transition: border-color .25s;
|
transition: border-color 0.25s;
|
||||||
|
|
||||||
@media (prefers-color-scheme: light) {
|
@media (prefers-color-scheme: light) {
|
||||||
border-color: $accentColor;
|
border-color: $accentColor;
|
||||||
|
|
|
@ -20,7 +20,7 @@ html,
|
||||||
color: $textColor;
|
color: $textColor;
|
||||||
display: flex;
|
display: flex;
|
||||||
flex-direction: column;
|
flex-direction: column;
|
||||||
transition: background-color .25s, color .25s;
|
transition: background-color 0.25s, color 0.25s;
|
||||||
|
|
||||||
@media (prefers-color-scheme: light) {
|
@media (prefers-color-scheme: light) {
|
||||||
background: $lightBackground;
|
background: $lightBackground;
|
||||||
|
@ -34,7 +34,7 @@ footer {
|
||||||
color: white;
|
color: white;
|
||||||
padding: 5px;
|
padding: 5px;
|
||||||
text-align: center;
|
text-align: center;
|
||||||
transition: background-color .25s, color .25s;
|
transition: background-color 0.25s, color 0.25s;
|
||||||
|
|
||||||
a {
|
a {
|
||||||
color: inherit;
|
color: inherit;
|
||||||
|
@ -80,9 +80,9 @@ h1 {
|
||||||
|
|
||||||
color: $accentColor;
|
color: $accentColor;
|
||||||
|
|
||||||
text-shadow: 0 0 20px rgba($accentColor, .2);
|
text-shadow: 0 0 20px rgba($accentColor, 0.2);
|
||||||
|
|
||||||
@media (prefers-color-scheme: light) {
|
@media (prefers-color-scheme: light) {
|
||||||
text-shadow: 0 0 20px rgba($accentColor, .3);
|
text-shadow: 0 0 20px rgba($accentColor, 0.3);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -51,7 +51,7 @@
|
||||||
text-decoration: underline dotted rgba(0, 0, 0, 0);
|
text-decoration: underline dotted rgba(0, 0, 0, 0);
|
||||||
padding: 6px 0 6px 25px;
|
padding: 6px 0 6px 25px;
|
||||||
color: $textColor;
|
color: $textColor;
|
||||||
transition: color .25s;
|
transition: color 0.25s;
|
||||||
|
|
||||||
@media (prefers-color-scheme: light) {
|
@media (prefers-color-scheme: light) {
|
||||||
color: $lightTextColor;
|
color: $lightTextColor;
|
||||||
|
|
|
@ -42,10 +42,14 @@
|
||||||
|
|
||||||
.heroSectionBgOver {
|
.heroSectionBgOver {
|
||||||
background: linear-gradient(to bottom, transparent 80%, $background);
|
background: linear-gradient(to bottom, transparent 80%, $background);
|
||||||
transition: background-image .25s;
|
transition: background-image 0.25s;
|
||||||
|
|
||||||
@media (prefers-color-scheme: light) {
|
@media (prefers-color-scheme: light) {
|
||||||
background: linear-gradient(to bottom, transparent 90%, $lightBackground);
|
background: linear-gradient(
|
||||||
|
to bottom,
|
||||||
|
transparent 90%,
|
||||||
|
$lightBackground
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
@ -69,7 +69,7 @@
|
||||||
.projectAbout {
|
.projectAbout {
|
||||||
background: #060606;
|
background: #060606;
|
||||||
color: white;
|
color: white;
|
||||||
transition: background-color .25s, color .25s;
|
transition: background-color 0.25s, color 0.25s;
|
||||||
|
|
||||||
@media (prefers-color-scheme: light) {
|
@media (prefers-color-scheme: light) {
|
||||||
background: $lightBackground;
|
background: $lightBackground;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue