mirror of
https://github.com/Cockatrice/Cockatrice.git
synced 2026-07-06 13:33:55 -07:00
implement gameboard v1
This commit is contained in:
parent
b103db681b
commit
0d7336edc2
177 changed files with 16995 additions and 139 deletions
33
webclient/src/components/Game/HandZone/HandZone.css
Normal file
33
webclient/src/components/Game/HandZone/HandZone.css
Normal file
|
|
@ -0,0 +1,33 @@
|
|||
.hand-zone {
|
||||
height: 176px;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
background: #0a4a1e;
|
||||
border-top: 2px solid #1a6a33;
|
||||
padding: 4px 12px;
|
||||
box-sizing: border-box;
|
||||
}
|
||||
|
||||
.hand-zone__label {
|
||||
color: #c4e8ce;
|
||||
font-size: 11px;
|
||||
font-weight: 600;
|
||||
letter-spacing: 1px;
|
||||
text-transform: uppercase;
|
||||
margin-bottom: 2px;
|
||||
}
|
||||
|
||||
.hand-zone__cards {
|
||||
flex: 1;
|
||||
display: flex;
|
||||
flex-direction: row;
|
||||
align-items: center;
|
||||
gap: 4px;
|
||||
overflow-x: auto;
|
||||
overflow-y: hidden;
|
||||
}
|
||||
|
||||
.hand-zone--drop-over {
|
||||
background: #126a2d;
|
||||
box-shadow: inset 0 0 0 2px #4de078;
|
||||
}
|
||||
Loading…
Add table
Add a link
Reference in a new issue