36 lines
No EOL
580 B
CSS
36 lines
No EOL
580 B
CSS
body {
|
|
font-family: Arial, sans-serif;
|
|
margin: 0 60px 50px 60px;
|
|
padding: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
height: 100vh;
|
|
background-color: #f4f4f4;
|
|
overflow-x: hidden;
|
|
overflow-y: hidden;
|
|
}
|
|
|
|
h1 {
|
|
margin: 20px;
|
|
}
|
|
|
|
#form-container {
|
|
margin-bottom: 20px;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
input,
|
|
button {
|
|
margin: 10px;
|
|
font-size: 14px;
|
|
}
|
|
|
|
#canvas-container {
|
|
width: 800px;
|
|
height: 600px;
|
|
border: 1px solid #ccc;
|
|
} |