Skip to content

Commit

Permalink
move and refactor css files
Browse files Browse the repository at this point in the history
  • Loading branch information
sprocketc authored and tiensonqin committed Aug 4, 2023
1 parent 5a011ec commit b5df30f
Show file tree
Hide file tree
Showing 10 changed files with 355 additions and 335 deletions.
230 changes: 0 additions & 230 deletions resources/css/datepicker.css

This file was deleted.

47 changes: 0 additions & 47 deletions resources/css/table.css

This file was deleted.

14 changes: 2 additions & 12 deletions resources/css/animation.css → src/main/frontend/animations.css
Original file line number Diff line number Diff line change
Expand Up @@ -31,22 +31,12 @@

.fade-in {
opacity: 0; /* make things invisible upon start */
-webkit-animation: fadein ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
-moz-animation: fadein ease-in 1;
animation: fadeIn ease-in 1;

-webkit-animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1) */
-moz-animation-fill-mode: forwards;
animation-fill-mode: forwards;

-webkit-animation-duration: 1s;
-moz-animation-duration: 1s;
animation: fadeIn ease-in 1; /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
animation-fill-mode: forwards; /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1) */
animation-duration: 1s;
}

.faster-fade-in {
-webkit-animation-duration: 0.3s;
-moz-animation-duration: 0.3s;
animation-duration: 0.3s;
}

Expand Down
Loading

0 comments on commit b5df30f

Please sign in to comment.