-
Notifications
You must be signed in to change notification settings - Fork 51
/
index.html
102 lines (82 loc) · 1.61 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>List Benchmarks</title>
<style>
@import url('https://fonts.googleapis.com/css?family=Source+Sans+Pro');
body {
font-family: 'Source Sans Pro', sans-serif;
color: #222222;
padding: 0 2em;
}
table {
border: 2px solid white;
border-collapse: collapse;
}
table td,
table th {
text-align: right;
padding: .2em .3em;
}
table tr td:first-child {
padding: .2em .5em;
}
table td:nth-of-type(odd),
table th:nth-of-type(odd) {
background: #f5f5f5;
}
table tr:nth-of-type(even) td {
background: white;
}
table th,
table td {
border: 2px solid white;
}
#wrapper {
display: flex;
flex-direction: column;
align-items: center;
}
.benchmark-wrapper {
display: flex;
flex-direction: column;
}
@media only screen and (min-width: 1000px) {
.benchmark-wrapper {
flex-direction: row;
}
}
.benchmark-wrapper table {
margin-left: 1em;
}
.fastest, .slower {
font-size: 0.7em;
}
h1,
h2 {
font-weight: 400;
}
h1 {
font-size: 3em;
}
.benchmark {
padding-bottom: 2em;
margin-bottom: 2em;
border-bottom: 1px solid #cccccc;
}
.benchmark-name {
display: inline;
font-size: 2.4em;
}
.benchmark-description {
padding-left: .5em;
display: inline;
color: #555555;
}
</style>
</head>
<body>
<script src="bundle.js"></script>
</body>
</html>