mirror of
https://github.com/FranP-code/Tic-Tac-Toe-Game.git
synced 2025-10-12 23:52:39 +00:00
32 lines
525 B
SCSS
32 lines
525 B
SCSS
@import './playerSelection.scss';
|
|
@import './game.scss';
|
|
|
|
html, body {
|
|
|
|
height: 100%;
|
|
|
|
font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
|
|
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
body {
|
|
|
|
margin: 0;
|
|
padding: 0;
|
|
|
|
background-color: rgb(221, 121, 121);
|
|
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
button {
|
|
|
|
cursor: pointer;
|
|
}
|
|
|
|
.animate__animated.animate__fadeOutDown {
|
|
--animate-duration: 1s;
|
|
} |