53 lines
1.1 KiB
HTML
53 lines
1.1 KiB
HTML
|
<!DOCTYPE html>
|
||
|
<html>
|
||
|
<head>
|
||
|
<link href="https://fonts.googleapis.com/icon?family=Material+Icons" rel="stylesheet">
|
||
|
<title>NCounter</title>
|
||
|
<style>
|
||
|
body {
|
||
|
font-family: -apple-system, system-ui, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
|
||
|
}
|
||
|
|
||
|
button {
|
||
|
background: 0;
|
||
|
border: 0;
|
||
|
}
|
||
|
|
||
|
.dialog {
|
||
|
display: flex;
|
||
|
justify-content: center;
|
||
|
align-items: center;
|
||
|
|
||
|
position: fixed;
|
||
|
top: 0;
|
||
|
right: 0;
|
||
|
bottom: 0;
|
||
|
left: 0;
|
||
|
|
||
|
background-color: rgba(0,0,0,0.25);
|
||
|
|
||
|
z-index: 12;
|
||
|
|
||
|
pointer-events: none;
|
||
|
}
|
||
|
|
||
|
.dialog-content {
|
||
|
background-color: #E0E0E0;
|
||
|
pointer-events: all;
|
||
|
|
||
|
width: 250px;
|
||
|
|
||
|
border-radius: 5px;
|
||
|
box-shadow: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.24);
|
||
|
padding: 5px;
|
||
|
|
||
|
display: flex;
|
||
|
flex-wrap: wrap;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<script src="index.js"></script>
|
||
|
</body>
|
||
|
</html>
|