Created
July 21, 2024 13:26
-
-
Save AlexHedley/89aec3a0e229a2a7f5a3f250fc8f1d5c to your computer and use it in GitHub Desktop.
Poker
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
.container { display: grid; | |
grid-template-columns: 1fr 1fr 1fr 1fr; | |
grid-template-rows: 0.7fr 0.7fr 0.5fr; | |
grid-auto-columns: 1fr; | |
grid-auto-rows: 1fr; | |
gap: 0px 0px; | |
grid-auto-flow: row; | |
grid-template-areas: | |
"ProfilePic Card1 Card2 PotOdds" | |
"ProfilePic Name Name Name" | |
"ProfilePic Bet Bet Bet"; | |
} | |
.ProfilePic { grid-area: ProfilePic; } | |
.Card1 { grid-area: Card1; } | |
.Card2 { grid-area: Card2; } | |
.PotOdds { grid-area: PotOdds; } | |
.Name { grid-area: Name; } | |
.Bet { grid-area: Bet; } |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<div class="container"> | |
<div class="ProfilePic"></div> | |
<div class="Card1"></div> | |
<div class="Card2"></div> | |
<div class="PotOdds"></div> | |
<div class="Name"></div> | |
<div class="Bet"></div> | |
</div> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
https://grid.layoutit.com/