-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
16 changed files
with
237 additions
and
31 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,22 @@ | ||
@import "primevue/resources/primevue.min.css"; //core css | ||
@import "primeicons/primeicons.css"; //icons | ||
@import "primevue/resources/themes/vela-blue/theme.css"; //theme | ||
@import "primevue/resources/themes/vela-orange/theme.css"; //theme | ||
|
||
.p-speeddial-action{ | ||
background: var(--surface-d); | ||
color: var(--text-color); | ||
|
||
&:hover{ | ||
background: var(--surface-f); | ||
} | ||
} | ||
|
||
.p-dialog .p-dialog-content { | ||
.p-confirm-dialog-message { | ||
margin-left: 0; | ||
margin-right: 0.5rem; | ||
} | ||
&:has(.pi) .p-confirm-dialog-message{ | ||
margin-left: 1rem; | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Binary file not shown.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,89 @@ | ||
@keyframes chouquettes-falling { | ||
from { | ||
top: -64px | ||
} | ||
to { | ||
top: calc(100% - 26px) | ||
} | ||
} | ||
|
||
@keyframes chouquette-mode-rolling { | ||
from { | ||
transform: rotate(0deg); | ||
overflow: hidden; | ||
} | ||
99.9% { | ||
overflow: hidden; | ||
} | ||
to { | ||
transform: rotate(360deg); | ||
background-image: url(/src/assets/images/chouquette.png); | ||
background-blend-mode: difference; | ||
background-repeat: space; | ||
} | ||
} | ||
|
||
@keyframes chouquette-mode-rolling-reverse { | ||
from { | ||
transform: rotate(360deg); | ||
background-image: url(/src/assets/images/chouquette.png); | ||
background-blend-mode: difference; | ||
background-repeat: space; | ||
overflow: hidden; | ||
} | ||
99.9% { | ||
overflow: hidden; | ||
} | ||
to { | ||
transform: rotate(0deg); | ||
} | ||
} | ||
|
||
@keyframes bounce-in { | ||
0% { | ||
transform: scale(0); | ||
} | ||
50% { | ||
transform: scale(1.2); | ||
} | ||
100% { | ||
transform: scale(1); | ||
} | ||
} | ||
|
||
@keyframes bounce-in-delay { | ||
0% { | ||
opacity: 0; | ||
} | ||
33% { | ||
opacity: 0; | ||
transform: scale(0); | ||
} | ||
50% { | ||
opacity: 1; | ||
transform: scale(1.1); | ||
} | ||
90% { | ||
transform: scale(1); | ||
} | ||
} | ||
|
||
@keyframes fade-in { | ||
from { | ||
opacity: 0; | ||
} | ||
to { | ||
opacity: 1; | ||
} | ||
} | ||
|
||
@keyframes shake-animation { | ||
0% { transform:translate(0,0) } | ||
2.5% { transform:translate(5px,0) } | ||
5% { transform:translate(0,0) } | ||
7.5% { transform:translate(5px,0) } | ||
10% { transform:translate(0,0) } | ||
12.5% { transform:translate(5px,0) } | ||
15% { transform:translate(0,0) } | ||
100% { transform:translate(0,0) } | ||
} |
2 changes: 1 addition & 1 deletion
2
src/assets/style/_mixins.scss → src/assets/style/global/_mixins.scss
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
$ch-box-shadow: 0 4px 10px rgba(0, 0, 0, 0.03), 0 0 2px rgba(0, 0, 0, 0.06), 0 2px 6px rgba(0, 0, 0, 0.12); | ||
|
||
$ch-font-family: 'Dancing Script', cursive; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
@import "_breakpoints"; | ||
@import "_keyframes"; | ||
@import "_mixins"; | ||
@import "_variables"; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.bounce-small-enter-active { | ||
animation: bounce-in .3s; | ||
} | ||
.bounce-small-leave-active { | ||
animation: bounce-in .3s reverse; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
.bounce-enter-active { | ||
animation: bounce-in .4s; | ||
} | ||
.bounce-leave-active { | ||
animation: bounce-in .4s reverse; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.fade-fast-enter-active, | ||
.fade-fast-leave-active { | ||
transition: opacity 0.1s ease; | ||
} | ||
|
||
.fade-fast-enter-from, | ||
.fade-fast-leave-to { | ||
opacity: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
.fade-enter-active, | ||
.fade-leave-active { | ||
transition: opacity 0.3s ease; | ||
} | ||
|
||
.fade-enter-from, | ||
.fade-leave-to { | ||
opacity: 0; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
.slide-fade-enter-active { | ||
transition: all 0.3s ease-out; | ||
} | ||
|
||
.slide-fade-leave-active { | ||
transition: all 0.2s cubic-bezier(1, 0.5, 0.8, 1); | ||
} | ||
|
||
.slide-fade-enter-from, | ||
.slide-fade-leave-to { | ||
transform: translateX(20px); | ||
opacity: 0; | ||
} |
Oops, something went wrong.