Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
vanvianen committed Jan 21, 2024
1 parent 3b8ac31 commit 649b0ca
Show file tree
Hide file tree
Showing 29 changed files with 1,225 additions and 1,434 deletions.
17 changes: 9 additions & 8 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

69 changes: 0 additions & 69 deletions src/scss/_effect.scss

This file was deleted.

17 changes: 17 additions & 0 deletions src/scss/_mode.scss
@@ -0,0 +1,17 @@
// Dark Mode Toggle:
// Enables dark mode styles with a CSS class.


body.dark-mode {
background-color: #333;
color: #fff;

.btn {
background-color: #555;
color: #fff;
}

.card {
background-color: #424242;
}
}
45 changes: 11 additions & 34 deletions src/scss/effects/_animate.scss → src/scss/animation/--hover.scss
Expand Up @@ -18,6 +18,17 @@
// ============================================================================


// @mixin hover-animation($transition-duration: 0.3s) {
// transition: all $transition-duration ease;
// &:hover {
// transform: scale(1.1);
// }
// }

// .hover-grow {
// @include hover-animation();
// }

// Hover
// ----------------------------------------------------------------------------

Expand Down Expand Up @@ -87,13 +98,6 @@





// Blink
// ----------------------------------------------------------------------------



// Hover Drop Animation:
// ----------------------------------------------------------------------------

Expand All @@ -110,30 +114,3 @@




// .animated {
// -webkit-animation-duration: 3s;
// animation-duration: 3s;
// -webkit-animation-fill-mode: both;
// animation-fill-mode: both;
// }

// .animated-middle {
// -webkit-animation-duration: 1.2s;
// animation-duration: 1.2s;
// -webkit-animation-fill-mode: both;
// animation-fill-mode: both;
// }

// .animated-quick {
// -webkit-animation-duration: 0.6s;
// animation-duration: 0.6s;
// -webkit-animation-fill-mode: both;
// animation-fill-mode: both;
// }

// .animated.infinite {
// -webkit-animation-iteration-count: infinite;
// animation-iteration-count: infinite;
// }

26 changes: 26 additions & 0 deletions src/scss/animation/_base.scss
Expand Up @@ -130,6 +130,32 @@ $color_end: #f00,



// .animated {
// -webkit-animation-duration: 3s;
// animation-duration: 3s;
// -webkit-animation-fill-mode: both;
// animation-fill-mode: both;
// }

// .animated-middle {
// -webkit-animation-duration: 1.2s;
// animation-duration: 1.2s;
// -webkit-animation-fill-mode: both;
// animation-fill-mode: both;
// }

// .animated-quick {
// -webkit-animation-duration: 0.6s;
// animation-duration: 0.6s;
// -webkit-animation-fill-mode: both;
// animation-fill-mode: both;
// }

// .animated.infinite {
// -webkit-animation-iteration-count: infinite;
// animation-iteration-count: infinite;
// }




Expand Down

0 comments on commit 649b0ca

Please sign in to comment.