This repository has been archived on 2026-04-25. You can view files and clone it, but cannot push or open issues or pull requests.
WordGame-JS/Snowman-Full/styles/styles.css

37 lines
628 B
CSS
Raw Permalink Normal View History

2024-05-08 12:41:16 -05:00
*{
box-sizing: border-box;
}
body {
background: #333;
color: #fff;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
font-family: Arial, Helvetica, sans-serif;
min-height: 100vh;
margin: 0;
}
#canvas {
-moz-transition:background .5s ease-in;
-o-transition:background .5s ease-in;
-webkit-transition:background .5s ease-in;
background: #a0a0a0;
border-radius: 5px;
max-width: 94vw;
}
#guessInput{
font-size: xx-large;
width: 70px;
}
form{
height: 600px;
border-radius: 5px;
}
#feedback{
height: 50px;
}