Created
May 26, 2020 20:05
-
-
Save iliakarasin/bb0225dc2a778463fc9ee54a13ed03f8 to your computer and use it in GitHub Desktop.
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
/* reset */ | |
*, body { | |
margin: 0; | |
padding: 0; | |
color: #000; | |
} | |
.game-board { | |
background-color: green; | |
} | |
.card { | |
display: inline-block; | |
height: 100px; | |
width: 75px; | |
border-radius: 5px; | |
border: 1px solid #fff; | |
text-align: center; | |
padding: 20px 10px; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment