Spaces:
Running
Running
File size: 494 Bytes
87a47fc 8740fa6 87a47fc 8740fa6 87a47fc 8740fa6 87a47fc |
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 |
#container {
width: 1000px;
height: 600px;
border: 1px solid #ccc;
margin: 20px auto;
}
#controls {
text-align: center;
margin-bottom: 10px;
}
#codeFile, #codeInput, button {
margin: 10px;
padding: 10px;
}
#codeInput {
width: 80%;
max-width: 600px;
font-family: monospace;
}
button {
cursor: pointer;
background-color: #007bff;
color: white;
border: none;
border-radius: 5px;
}
button:hover {
background-color: #0056b3;
} |