27 lines
471 B
HTML
27 lines
471 B
HTML
<!doctype html>
|
|
<html>
|
|
<title>Key events</title>
|
|
<style>
|
|
.sample-area {
|
|
text-align: center;
|
|
margin: 5px;
|
|
height: 50px;
|
|
line-height: 50px;
|
|
border-radius: 5px;
|
|
border: 1px solid #d0d0d0;
|
|
}
|
|
.sample-area:focus {
|
|
border: 1px solid blue;
|
|
color: blue;
|
|
font-weight: bold;
|
|
}
|
|
</style>
|
|
<body>
|
|
<key-events-app>
|
|
Loading...
|
|
</key-events-app>
|
|
|
|
<script src="../bootstrap.js"></script>
|
|
</body>
|
|
</html>
|