Skip to content
Snippets Groups Projects
Commit 9f9e9162 authored by Jayden Lam's avatar Jayden Lam
Browse files

Add new file

parent 3e43e197
Branches
No related tags found
No related merge requests found
css 0 → 100644
#game {
display: flex;
justify-content: space-between;
}
#cards, #answers {
flex-basis: 45%;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
}
.card,.answer {
background-color: #f7f7f7;
border: 1px solid #ddd;
padding: 10px;
margin: 10px;
width: calc(50% - 20px);
text-align: center;
}
.card:hover,.answer:hover {
background-color: #eee;
cursor: pointer;
}
#message {
margin-top: 20px;
padding: 10px;
background-color: #f0f0f0;
border: 1px solid #ccc;
}
.container {
position: relative;
width: 100%;
}
\ No newline at end of file
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment