Skip to content

Commit

Permalink
Add modes
Browse files Browse the repository at this point in the history
  • Loading branch information
nbirillo committed Aug 17, 2023
1 parent 92ce5f5 commit 2110a20
Show file tree
Hide file tree
Showing 12 changed files with 272 additions and 33 deletions.
65 changes: 65 additions & 0 deletions backToTheFutureFrontend/src/App.css
Original file line number Diff line number Diff line change
Expand Up @@ -166,6 +166,24 @@
background-image: url('assets/buttons/clean-button-hover.svg');
}

.App-try-again-container {
width: 100%;
align-content: center;
justify-content: center;
display: flex;
height: 16vmin;
}

.App-button-try-again {
background-image: url('assets/buttons/try_again.svg');
height: 6vmin;
width: 20vmin;
margin-top: 1vmin;
}
.App-button-try-again:hover{
background-image: url('assets/buttons/try_again-hover.svg');
}

.App-tamagotchi-container {
display: flex;
flex-direction: column;
Expand Down Expand Up @@ -197,6 +215,10 @@
.App-tamagotchi-image-base {
background-image: url('assets/actions/dog-resize.svg');
}
.App-tamagotchi-image-alert {
background-image: url('assets/actions/alert.svg');
margin-top: 1vmin;
}

@keyframes blink {
from {
Expand Down Expand Up @@ -308,3 +330,46 @@
.App-command-container-sleep {
background-image: url('assets/commands/small-sleep.svg');
}

.App-unclickable-button {
pointer-events: none;
opacity: 40%;
}


.App-buttons-container {
min-height: 10vmin;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
margin-bottom: 1vmin;
}

.App-button-collection {
background-size: contain;
width: 17vmin;
height: 6vmin;
margin-top: 2vmin;
}

.App-button-queue {
background-image: url('assets/buttons/queue.svg');
margin-right: 2vmin;
}
.App-button-queue:hover {
background-image: url('assets/buttons/queue-hover.svg');
}
.App-button-queue-focused {
background-image: url('assets/buttons/queue-focused.svg');
}

.App-button-stack {
background-image: url('assets/buttons/stack.svg');
}
.App-button-stack:hover {
background-image: url('assets/buttons/stack-hover.svg');
}
.App-button-stack-focused {
background-image: url('assets/buttons/stack-focused.svg');
}
5 changes: 5 additions & 0 deletions backToTheFutureFrontend/src/assets/actions/alert.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions backToTheFutureFrontend/src/assets/buttons/queue-focused.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
16 changes: 16 additions & 0 deletions backToTheFutureFrontend/src/assets/buttons/queue-hover.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
15 changes: 15 additions & 0 deletions backToTheFutureFrontend/src/assets/buttons/queue.svg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading

0 comments on commit 2110a20

Please sign in to comment.