Skip to content

Commit b08866d

Browse files
committed
deploy: daaf905
0 parents  commit b08866d

27 files changed

+2706
-0
lines changed

.nojekyll

Whitespace-only changes.

CNAME

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
yim.gta.menu

assets/css/audio.css

Lines changed: 58 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,58 @@
1+
section {
2+
display: flex;
3+
flex-direction: column;
4+
gap: .5rem;
5+
justify-content: center;
6+
align-items: center;
7+
}
8+
9+
main {
10+
margin-bottom: 3rem;
11+
gap: 2rem;
12+
}
13+
14+
section[data-hidden="true"] {
15+
display: none;
16+
}
17+
18+
button,
19+
button:focus {
20+
outline: none;
21+
border: none;
22+
font-weight: bold;
23+
font-size: medium;
24+
color: var(--text-color);
25+
}
26+
27+
button:active {
28+
outline: none;
29+
border: none;
30+
}
31+
32+
#buttons {
33+
display: flex;
34+
flex-direction: row;
35+
flex-wrap: wrap;
36+
gap: 1rem;
37+
font-weight: bold;
38+
font-size: medium;
39+
}
40+
41+
#buttons>.card:not(:hover) {
42+
background-color: var(--background);
43+
}
44+
45+
button.card:hover {
46+
background-color: var(--button-background-hover);
47+
color: var(--button-color-hover);
48+
cursor: pointer;
49+
}
50+
51+
.card:disabled,
52+
.card[disabled],
53+
.card[data-disabled="true"] {
54+
cursor: not-allowed !important;
55+
opacity: .5;
56+
color: var(--text-color);
57+
pointer-events: none;
58+
}

0 commit comments

Comments
 (0)