-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathristretto255.benchmarks.css
79 lines (66 loc) · 1.47 KB
/
ristretto255.benchmarks.css
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
/**
* Copyright (c) Facebook, Inc. and its affiliates.
*
* This source code is licensed under the MIT license found in the
* LICENSE file in the root directory of this source tree.
*/
body {
margin: 20px;
width: 85%;
display: block;
margin: auto;
font-family: Arial,sans-serif;
font-weight: 300;
}
.container {
width: 950px;
margin: auto;
padding-bottom: 100px;
}
h1 {
color: white;
background-color: #001e5c;
text-align: center;
}
total_time {
color: #001e5c;
}
table.benchmarks {
table-layout: fixed;
border-collapse: collapse;
width: 100%;
}
table.benchmarks tr td, table.benchmarks tr th {
border: 1px solid #ddd;
padding-left: 8px;
padding-right: 8px;
padding-top: 2px;
padding-bottom: 2px;
}
table.benchmarks tr {
height: 30px;
}
table.benchmarks tr:nth-child(even){background-color: #f2f2f2;}
table.benchmarks tr:hover {background-color: #ddd;}
table.benchmarks th {
padding-top: 12px;
padding-bottom: 12px;
padding-left: 8px;
padding-right: 8px;
text-align: left;
background-color: #4CAF50;
color: white;
}
table.benchmarks tr th:nth-of-type(1), table.benchmarks tr td:nth-of-type(1) {
width: 300px;
}
table.benchmarks tr th:nth-of-type(2), table.benchmarks tr td:nth-of-type(2) {
text-align: center;
width: 100px;
}
table.benchmarks tr td:nth-of-type(2) {
background-color: #ffec95;
}
table.benchmarks tr:nth-child(even) td:nth-of-type(2) {
background-color: #ffd200;
}