rename demo example into benchmarks

This commit is contained in:
Géry Debongnie
2019-03-19 13:55:27 +01:00
parent 91e7e00f97
commit 6a2e4dbf2f
8 changed files with 6 additions and 6 deletions
+45
View File
@@ -0,0 +1,45 @@
.main {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
display: grid;
grid-template-columns: 200px 1fr;
}
.left-thing {
background-color: gray;
padding: 20px;
}
.left-thing button {
width: 100%;
}
.left-thing .counter span {
color: white;
}
.left-thing .counter button {
width: 40px;
}
.right-thing {
padding: 20px;
overflow: auto;
}
/* Message widget */
.message .author {
font-weight: bold;
}
.message {
width: 400px;
background-color: lightblue;
margin: 10px 5px;
border-radius: 5px;
padding: 5px;
}