Spaces:
Running
Running
Update index.html
Browse files- index.html +37 -17
index.html
CHANGED
@@ -1,19 +1,39 @@
|
|
1 |
-
<!
|
2 |
<html>
|
3 |
-
|
4 |
-
|
5 |
-
|
6 |
-
|
7 |
-
|
8 |
-
|
9 |
-
|
10 |
-
|
11 |
-
|
12 |
-
|
13 |
-
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
19 |
</html>
|
|
|
1 |
+
<!DOCTYPE html>
|
2 |
<html>
|
3 |
+
<head>
|
4 |
+
<title>GLUE leaderboard</title>
|
5 |
+
<meta http-equiv="Content-type" content="text/html; charset=utf-8">
|
6 |
+
<meta name="viewport" content="width=device-width, initial-scale=1">
|
7 |
+
|
8 |
+
<style>
|
9 |
+
@media (prefers-color-scheme: dark) {
|
10 |
+
html {
|
11 |
+
filter: invert(100%);
|
12 |
+
}
|
13 |
+
body {
|
14 |
+
background: white;
|
15 |
+
}
|
16 |
+
}
|
17 |
+
html, body {
|
18 |
+
width: 100vw;
|
19 |
+
height: 100vh;
|
20 |
+
margin: 0px;
|
21 |
+
overflow: hidden;
|
22 |
+
}
|
23 |
+
* {
|
24 |
+
box-sizing: border-box;
|
25 |
+
}
|
26 |
+
iframe {
|
27 |
+
border: 0px;
|
28 |
+
width: 100%;
|
29 |
+
height: 100%;
|
30 |
+
}
|
31 |
+
</style>
|
32 |
+
|
33 |
+
</head>
|
34 |
+
|
35 |
+
<body>
|
36 |
+
<iframe src="https://gluebenchmark.com/leaderboard/"></iframe>
|
37 |
+
</body>
|
38 |
+
|
39 |
</html>
|