diff --git a/ui/src/components/CardButtonScore.vue b/ui/src/components/CardButtonScore.vue new file mode 100644 index 0000000..d6d8cc5 --- /dev/null +++ b/ui/src/components/CardButtonScore.vue @@ -0,0 +1,114 @@ + + + + + \ No newline at end of file diff --git a/ui/src/components/CardControl.vue b/ui/src/components/CardControl.vue index 33a1c4b..b002357 100644 --- a/ui/src/components/CardControl.vue +++ b/ui/src/components/CardControl.vue @@ -2,28 +2,28 @@ mdi-camera-control - Contrôles + Contrôle du jeu - - mdi-skip-previous + + mdi-skip-previous - - mdi-skip-next + + mdi-skip-next - - mdi-pause + + mdi-pause - - mdi-play + + mdi-play diff --git a/ui/src/components/CardSolution.vue b/ui/src/components/CardSolution.vue index 5fbc40b..c36a094 100644 --- a/ui/src/components/CardSolution.vue +++ b/ui/src/components/CardSolution.vue @@ -1,6 +1,6 @@ @@ -35,8 +40,43 @@ import CardSoundboard from '@/components/CardSoundboard.vue'; background-color: #2E7D32; /* Changez la couleur en fonction de votre thème */ } .btn{ - border-radius:30px!important; + border-radius:20px!important; + } + .btn.red { background-color: #d42828; /* Changez la couleur en fonction de votre thème */ + + } + .btn.blue { + background-color: #2867d4; /* Changez la couleur en fonction de votre thème */ + + } + .btn.orange { + background-color: #d48f28; /* Changez la couleur en fonction de votre thème */ + + } + .btn.green { + background-color: #28d42e; /* Changez la couleur en fonction de votre thème */ + + } + .scorediv-style-red { + background-color: #d42828 !important; + padding: 15px; + border-top-left-radius: 10%; + } + .scorediv-style-orange { + background-color: #d48f28 !important; + padding: 15px; + border-bottom-left-radius: 10%; + } + .scorediv-style-blue { + background-color: #2867d4 !important; + padding: 15px; + border-top-right-radius: 10%; + } + .scorediv-style-green { + background-color: #28d42e !important; + padding: 15px; + border-bottom-right-radius: 10%; } }