Last active
October 12, 2019 12:47
-
-
Save PrimeTimeTran/bd7f71221e1b7ecb62fc6f3ea0e74f50 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
.App { | |
flex: 1; | |
display: flex; | |
min-height: 100vh; | |
text-align: center; | |
background-color: #e9ebee; | |
} | |
.choice-card { | |
flex: 1; | |
display: flex; | |
margin: 100px; | |
font-size: 3em; | |
padding: 0 40px; | |
font-weight: 300; | |
text-align: center; | |
border-radius: 25px; | |
flex-direction: column; | |
align-items: center; | |
border: 1px solid black; | |
background-color: white; | |
justify-content: space-around; | |
box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); | |
} | |
img { | |
width: 250px; | |
height: 250px; | |
} | |
h1 { | |
font-size: 50px; | |
} | |
.winner { | |
color: green; | |
border: 10px solid green; | |
} | |
.loser { | |
color: red; | |
border: 10px solid red; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment