[ADD] benchmarks: add benchmarks in main branch

this will make it easier to compare various situations.
This commit is contained in:
Géry Debongnie
2019-04-29 22:54:26 +02:00
parent 40e486a9eb
commit eb910193d7
32 changed files with 26815 additions and 1 deletions
+42
View File
@@ -0,0 +1,42 @@
.main {
position: absolute;
left: 0;
right: 0;
top: 0;
bottom: 0;
display: grid;
grid-template-columns: 220px 1fr;
}
.left-thing {
background-color: gray;
padding: 20px;
color: white;
}
.left-thing button {
width: 100%;
}
.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;
}
.remove {
float: right;
}