37 lines
No EOL
628 B
CSS
Executable file
37 lines
No EOL
628 B
CSS
Executable file
*{
|
|
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;
|
|
} |