Spaces:
Runtime error
Runtime error
File size: 463 Bytes
3c2af35 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 | /* static/css/styles.css */
body {
font-family: Arial, sans-serif;
margin: 0;
padding: 0;
background: #f5f5f5;
}
header {
background: #333;
color: #fff;
padding: 10px;
text-align: center;
}
.container {
padding: 20px;
}
#three-canvas {
width: 100%;
height: 300px;
background: #000;
margin-bottom: 20px;
}
input[type="text"], button {
padding: 10px;
font-size: 1em;
}
button {
cursor: pointer;
} |