Skip to content

Commit

Permalink
deploy: ffa1114
Browse files Browse the repository at this point in the history
  • Loading branch information
GeopJr committed Jul 14, 2023
0 parents commit 4fa1dd6
Show file tree
Hide file tree
Showing 27 changed files with 1,493 additions and 0 deletions.
Empty file added .nojekyll
Empty file.
1 change: 1 addition & 0 deletions CNAME
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
yim.gta.menu
58 changes: 58 additions & 0 deletions assets/css/audio.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
section {
display: flex;
flex-direction: column;
gap: .5rem;
justify-content: center;
align-items: center;
}

main {
margin-bottom: 3rem;
gap: 2rem;
}

section[data-hidden="true"] {
display: none;
}

button,
button:focus {
outline: none;
border: none;
font-weight: bold;
font-size: medium;
color: var(--text-color);
}

button:active {
outline: none;
border: none;
}

#buttons {
display: flex;
flex-direction: row;
flex-wrap: wrap;
gap: 1rem;
font-weight: bold;
font-size: medium;
}

#buttons>.card:not(:hover) {
background-color: var(--background);
}

button.card:hover {
background-color: var(--button-background-hover);
color: var(--button-color-hover);
cursor: pointer;
}

.card:disabled,
.card[disabled],
.card[data-disabled="true"] {
cursor: not-allowed !important;
opacity: .5;
color: var(--text-color);
pointer-events: none;
}
Loading

0 comments on commit 4fa1dd6

Please sign in to comment.