28 lines
496 B
HTML
28 lines
496 B
HTML
<html>
|
|
<head>
|
|
<meta charset="utf-8"/>
|
|
<title>숫자야구</title>
|
|
<style>
|
|
#screen {
|
|
width: 300px;
|
|
height: 200px;
|
|
text-align: center;
|
|
user-select: none;
|
|
}
|
|
#screen.waiting {
|
|
background-color: aqua;
|
|
}
|
|
#screen.ready {
|
|
background-color: red;
|
|
color: white;
|
|
}
|
|
#screen.now {
|
|
background-color: greenyellow;
|
|
}
|
|
</style>
|
|
</head>
|
|
<body>
|
|
<div id="root"></div>
|
|
<script src="./dist/app.js"></script>
|
|
</body>
|
|
</html> |