1
0
Fork 0
mirror of https://github.com/Unkn0wnCat/KevinK.dev.js.git synced 2025-07-15 07:35:26 +02:00

Run prettier

This commit is contained in:
Kevin Kandlbinder 2021-07-26 13:15:39 +00:00
parent 79b6120522
commit 839ea26e92
10 changed files with 875 additions and 870 deletions

View file

@ -10,7 +10,8 @@
border-radius: 5px;
overflow: hidden;
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;
text-decoration: none;
margin: 20px;
@ -68,7 +69,7 @@
display: block;
text-decoration: none;
color: inherit;
transition: background-color .25s, color .25s;
transition: background-color 0.25s, color 0.25s;
@media (prefers-color-scheme: light) {
background: darken($accentColor, 1);

View file

@ -11,7 +11,7 @@
color: $textColor;
backdrop-filter: blur(5px);
z-index: 999;
transition: background-color .25s, color .25s;
transition: background-color 0.25s, color 0.25s;
@supports (backdrop-filter: blur(5px)) {
background: rgba($background, 0.9);
@ -53,7 +53,7 @@
&.active {
border-color: white;
transition: border-color .25s;
transition: border-color 0.25s;
@media (prefers-color-scheme: light) {
border-color: $accentColor;

View file

@ -20,7 +20,7 @@ html,
color: $textColor;
display: flex;
flex-direction: column;
transition: background-color .25s, color .25s;
transition: background-color 0.25s, color 0.25s;
@media (prefers-color-scheme: light) {
background: $lightBackground;
@ -34,7 +34,7 @@ footer {
color: white;
padding: 5px;
text-align: center;
transition: background-color .25s, color .25s;
transition: background-color 0.25s, color 0.25s;
a {
color: inherit;
@ -80,9 +80,9 @@ h1 {
color: $accentColor;
text-shadow: 0 0 20px rgba($accentColor, .2);
text-shadow: 0 0 20px rgba($accentColor, 0.2);
@media (prefers-color-scheme: light) {
text-shadow: 0 0 20px rgba($accentColor, .3);
text-shadow: 0 0 20px rgba($accentColor, 0.3);
}
}

View file

@ -51,7 +51,7 @@
text-decoration: underline dotted rgba(0, 0, 0, 0);
padding: 6px 0 6px 25px;
color: $textColor;
transition: color .25s;
transition: color 0.25s;
@media (prefers-color-scheme: light) {
color: $lightTextColor;

View file

@ -42,10 +42,14 @@
.heroSectionBgOver {
background: linear-gradient(to bottom, transparent 80%, $background);
transition: background-image .25s;
transition: background-image 0.25s;
@media (prefers-color-scheme: light) {
background: linear-gradient(to bottom, transparent 90%, $lightBackground);
background: linear-gradient(
to bottom,
transparent 90%,
$lightBackground
);
}
}

View file

@ -69,7 +69,7 @@
.projectAbout {
background: #060606;
color: white;
transition: background-color .25s, color .25s;
transition: background-color 0.25s, color 0.25s;
@media (prefers-color-scheme: light) {
background: $lightBackground;