Files
TicTacToe-Multiplayer/deployment/client/data/index.css
2021-03-25 01:27:24 +01:00

35 lines
597 B
CSS

/* Style buttons */
.btn {
background-color: DodgerBlue;
border: none;
color: white;
padding: 12px 30px;
margin: 10px 5px;
border-radius: 12px;
cursor: pointer;
font-size: 20px;
}
/* Darker background on mouse-over */
.btn:hover {
background-color: RoyalBlue;
}
.object-wrapper {
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.object-div {
max-width: 420px;
width: 100%;
}
.object {
padding: 20px;
display: inline-block;
width: 100%;
text-align: center;
}