-
Notifications
You must be signed in to change notification settings - Fork 70
/
Copy pathstyle.css
180 lines (149 loc) · 2.64 KB
/
style.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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
/*-
* Copyright 2017 the V8 project authors. All rights reserved.
* Use of this source code is governed by a BSD-style license that can be
* found in the LICENSE file.
*/
body {
font-family: Roboto, Helvetica, Verdana, sans-serif;
font-size: 16px;
line-height: 19px;
padding-bottom: 00px;
}
body main {
display: block;
width: 850px;
margin: auto;
text-align: center;
padding: 10px;
}
::selection {
background-color: rgb(19, 156, 7);
color: white;
}
p.summary {
margin: 18px auto 5px;
background-image: -webkit-linear-gradient(
right,
white 70%,
rgba(255, 255, 255, 0)
);
background-image: -moz-linear-gradient(
right,
white 70%,
rgba(255, 255, 255, 0)
);
background-image: linear-gradient(
to right,
white 70%,
rgba(255, 255, 255, 0)
);
padding: 15px 125px 0;
text-align: center;
}
h1 {
color: rgb(19, 156, 7);
text-align: left;
margin-top: 40px;
}
p {
text-align: left;
text-indent: 20px;
}
p:first-of-type {
text-indent: 0;
}
div#status {
margin-top: 20px;
height: 20px;
}
div#status a:link {
font-weight: bold;
}
div#result-summary:empty {
display: none;
}
div#result-summary {
margin-top: 20px;
}
div#result-summary label {
font-weight: bold;
}
div#result-summary .score {
font-weight: bold;
font-size: 48px;
line-height: 48px;
color: rgb(19, 156, 7);
}
div#result-summary .score {
display: block;
font-size: 18px;
line-height: 18px;
font-weight: normal;
}
div#version {
margin-top: 60px;
font-size: 12px;
font-style: italic;
color: darkgrey;
}
a:link,
a:visited {
color: rgb(19, 156, 7);
text-decoration: none;
}
a:link:hover {
text-decoration: underline;
}
table#results {
border-spacing: 0;
border-collapse: collapse;
margin-top: 15px;
width: 100%;
table-layout: fixed;
}
td,
th {
padding: 4px 8px;
}
th {
font-size: 14px;
}
tr:first-child > th:nth-child(odd):not(:first-child) {
border-left: 15px solid white;
}
tr:first-child > th:nth-child(odd) {
text-align: left;
}
tr:first-child > th:nth-child(even) {
width: px;
}
tr:nth-child(even):not(:first-child) {
background-color: rgb(238, 247, 238);
}
.result {
color: rgb(19, 156, 7);
white-space: nowrap;
}
.highlighted-result {
background-color: rgb(19, 156, 7);
color: white;
}
.benchmark-name {
text-align: left;
white-space: nowrap;
}
.geometric-mean,
.benchmark-name.category,
.result.category {
font-weight: bold;
}
.benchmark-name:not(.category):not(.geometric-mean) {
text-indent: 0.5em;
}
.benchmark-name:not(:first-child) {
border-left: 15px solid white;
}
.benchmark-name a:link,
.benchmark-name a:visited {
color: black;
}