2018-05-22 20:34:41 +03:00
|
|
|
<!DOCTYPE html>
|
|
|
|
<html>
|
|
|
|
<head>
|
|
|
|
<title>Counter</title>
|
|
|
|
<style>
|
|
|
|
* {
|
|
|
|
font-family: sans-serif;
|
|
|
|
font-size: 16pt;
|
|
|
|
}
|
|
|
|
h1 {
|
|
|
|
font-size: 18pt;
|
|
|
|
font-weight: bold;
|
|
|
|
margin: 0;
|
|
|
|
}
|
|
|
|
button {
|
|
|
|
padding: 5px 10px;
|
|
|
|
border: none;
|
|
|
|
background: slategrey;
|
|
|
|
margin: 10px auto;
|
|
|
|
color: white;
|
|
|
|
}
|
|
|
|
body {
|
|
|
|
width: 400px;
|
|
|
|
margin: auto;
|
|
|
|
}
|
|
|
|
#container,
|
|
|
|
.counter {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: column;
|
|
|
|
justify-content: flex-start;
|
|
|
|
align-items: flex-start;
|
|
|
|
align-content: flex-start;
|
|
|
|
}
|
|
|
|
.counter {
|
2018-09-21 02:20:42 +03:00
|
|
|
margin-bottom: 10px;
|
2018-05-22 20:34:41 +03:00
|
|
|
background: steelblue;
|
|
|
|
color: white;
|
|
|
|
align-items: center;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
.field {
|
|
|
|
display: flex;
|
|
|
|
flex-flow: row;
|
|
|
|
justify-content: space-around;
|
|
|
|
width: 100%;
|
|
|
|
}
|
|
|
|
</style>
|
|
|
|
</head>
|
|
|
|
<body>
|
|
|
|
<button id="add-counter" type="button">add counter</button>
|
|
|
|
<div id="container">
|
2018-09-21 02:20:42 +03:00
|
|
|
|
2018-05-22 20:34:41 +03:00
|
|
|
</div>
|
|
|
|
</body>
|
2018-09-21 02:20:42 +03:00
|
|
|
</html>
|