Skip to content

Commit 2cde90c

Browse files
author
Top-5
committed
Add subtle poker table green gradient background to game area
1 parent 88d0aa8 commit 2cde90c

File tree

1 file changed

+9
-1
lines changed

1 file changed

+9
-1
lines changed

src/App.css

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -81,7 +81,13 @@ h1 {
8181
}
8282

8383
.game-area {
84-
background: rgba(255, 255, 255, 0.1);
84+
background: linear-gradient(135deg,
85+
#1a5632 0%,
86+
#2d7a4d 25%,
87+
#1f6840 50%,
88+
#2d7a4d 75%,
89+
#1a5632 100%
90+
);
8591
border-radius: calc(var(--unit) * 0.006);
8692
padding: calc(var(--unit) * 0.01);
8793
width: calc(var(--unit) * 0.98);
@@ -90,6 +96,8 @@ h1 {
9096
flex-direction: column;
9197
flex: 1;
9298
max-height: calc(var(--unit) * 0.94);
99+
box-shadow: inset 0 calc(var(--unit) * 0.002) calc(var(--unit) * 0.008) rgba(0, 0, 0, 0.3),
100+
0 calc(var(--unit) * 0.004) calc(var(--unit) * 0.012) rgba(0, 0, 0, 0.2);
93101
}
94102

95103
.top-row {

0 commit comments

Comments
 (0)