Spaces:
Running
Running
malteos
commited on
Commit
·
f20a47a
1
Parent(s):
4e36b19
fixes
Browse files- .gitattributes +0 -0
- README.md +0 -0
- index.html +4 -1
- papers.js +0 -0
- style.css +12 -3
.gitattributes
CHANGED
|
File without changes
|
README.md
CHANGED
|
File without changes
|
index.html
CHANGED
|
@@ -113,7 +113,10 @@ document.addEventListener('DOMContentLoaded', function() {
|
|
| 113 |
<div id="header">
|
| 114 |
<h1>EMNLP 2022 Papers</h1>
|
| 115 |
All EMNLP 2022 papers on a map.
|
| 116 |
-
Embeddings are generated with <a href="https://github.com/malteos/scincl" target="_blank">SciNCL (EMNLP paper)</a>
|
|
|
|
|
|
|
|
|
|
| 117 |
|
| 118 |
<div id="legendContainer"></div>
|
| 119 |
</div>
|
|
|
|
| 113 |
<div id="header">
|
| 114 |
<h1>EMNLP 2022 Papers</h1>
|
| 115 |
All EMNLP 2022 papers on a map.
|
| 116 |
+
Embeddings are generated with <a href="https://github.com/malteos/scincl" target="_blank">SciNCL (EMNLP paper)</a>
|
| 117 |
+
and <a href="https://github.com/lmcinnes/umap" target="_blank">UMAP</a>.
|
| 118 |
+
Created by <a href="https://www.linkedin.com/in/malteschwarzer/" target="_blank">Malte Ostendorff</a>
|
| 119 |
+
<a href="https://twitter.com/xyou" target="_blank">(@XYOU)</a>.
|
| 120 |
|
| 121 |
<div id="legendContainer"></div>
|
| 122 |
</div>
|
papers.js
CHANGED
|
File without changes
|
style.css
CHANGED
|
@@ -15,15 +15,15 @@ body {
|
|
| 15 |
}
|
| 16 |
|
| 17 |
a {
|
| 18 |
-
color
|
| 19 |
}
|
| 20 |
a:hover {
|
| 21 |
-
color:rgb(
|
| 22 |
}
|
| 23 |
h1 {
|
| 24 |
margin: 0.5rem;
|
| 25 |
font-size: 1.4rem;
|
| 26 |
-
|
| 27 |
}
|
| 28 |
|
| 29 |
#map {
|
|
@@ -41,10 +41,15 @@ h1 {
|
|
| 41 |
|
| 42 |
top: 150px;
|
| 43 |
height: calc(100% - 150px - 10px);
|
|
|
|
|
|
|
|
|
|
| 44 |
}
|
| 45 |
|
| 46 |
#header {
|
| 47 |
height: 150px;
|
|
|
|
|
|
|
| 48 |
padding: 0.5rem;
|
| 49 |
font-size: 1rem;
|
| 50 |
/* float:left; */
|
|
@@ -85,6 +90,10 @@ h1 {
|
|
| 85 |
outline: 0;
|
| 86 |
}
|
| 87 |
|
|
|
|
|
|
|
|
|
|
|
|
|
| 88 |
|
| 89 |
@media only screen and (min-width: 500px) {
|
| 90 |
/* Medium screen */
|
|
|
|
| 15 |
}
|
| 16 |
|
| 17 |
a {
|
| 18 |
+
color:rgb(148, 18, 18);
|
| 19 |
}
|
| 20 |
a:hover {
|
| 21 |
+
color:rgb(209, 31, 31);
|
| 22 |
}
|
| 23 |
h1 {
|
| 24 |
margin: 0.5rem;
|
| 25 |
font-size: 1.4rem;
|
| 26 |
+
/* font-size: 46px; */
|
| 27 |
}
|
| 28 |
|
| 29 |
#map {
|
|
|
|
| 41 |
|
| 42 |
top: 150px;
|
| 43 |
height: calc(100% - 150px - 10px);
|
| 44 |
+
|
| 45 |
+
/* top: 150px;
|
| 46 |
+
height: calc(100% - 150px - 10px); */
|
| 47 |
}
|
| 48 |
|
| 49 |
#header {
|
| 50 |
height: 150px;
|
| 51 |
+
/* height: 180px; */
|
| 52 |
+
|
| 53 |
padding: 0.5rem;
|
| 54 |
font-size: 1rem;
|
| 55 |
/* float:left; */
|
|
|
|
| 90 |
outline: 0;
|
| 91 |
}
|
| 92 |
|
| 93 |
+
.leaflet-popup-content {
|
| 94 |
+
max-height: 240px;
|
| 95 |
+
overflow-y: auto;
|
| 96 |
+
}
|
| 97 |
|
| 98 |
@media only screen and (min-width: 500px) {
|
| 99 |
/* Medium screen */
|