62 lines
924 B
CSS
62 lines
924 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;
|
|
}
|
|
|
|
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
canvas {
|
|
width: 100%;
|
|
height: 100%
|
|
}
|
|
|
|
#controls {
|
|
position: absolute;
|
|
top: 10px;
|
|
left: 10px;
|
|
z-index: 10;
|
|
background-color: rgba(0, 0, 0, 0.7);
|
|
padding: 20px;
|
|
color: white;
|
|
font-family: Arial, sans-serif;
|
|
}
|
|
|
|
input {
|
|
margin-bottom: 10px;
|
|
width: 100px;
|
|
}
|