VictorSanh
commited on
Commit
β’
1fe8070
1
Parent(s):
a9357b4
fix crop warning - thanks @rguo123 !
Browse files- index.html +8 -2
index.html
CHANGED
@@ -8,6 +8,7 @@
|
|
8 |
font-family: Arial, sans-serif;
|
9 |
background-color: #f0f0f0;
|
10 |
display: flex;
|
|
|
11 |
justify-content: center;
|
12 |
align-items: center;
|
13 |
height: 100vh;
|
@@ -28,13 +29,18 @@
|
|
28 |
height: 100%;
|
29 |
border: none;
|
30 |
}
|
|
|
|
|
|
|
|
|
|
|
31 |
</style>
|
32 |
</head>
|
33 |
<body>
|
|
|
34 |
<div class="iframe-container">
|
35 |
-
<p>This is an embedded interactive visualization of (a subset of) <a href="https://huggingface.co/datasets/HuggingFaceM4/OBELICS" target="_blank">OBELICS</a> powered by <a href="https://home.nomic.ai/" target="_blank">Nomic AI</a>. You will find the original map <a href="https://atlas.nomic.ai/map/f2fba2aa-3647-4f49-a0f3-9347daeee499/ee4a84bd-f125-4bcc-a683-1b4e231cb10f" target="_blank">here</a>.</p>
|
36 |
<iframe src="https://atlas.nomic.ai/map/f2fba2aa-3647-4f49-a0f3-9347daeee499/ee4a84bd-f125-4bcc-a683-1b4e231cb10f" allow="clipboard-read; clipboard-write"
|
37 |
title="Nomic Atlas"></iframe>
|
38 |
</div>
|
39 |
</body>
|
40 |
-
</html>
|
|
|
8 |
font-family: Arial, sans-serif;
|
9 |
background-color: #f0f0f0;
|
10 |
display: flex;
|
11 |
+
flex-direction: column; /* This will stack the children vertically */
|
12 |
justify-content: center;
|
13 |
align-items: center;
|
14 |
height: 100vh;
|
|
|
29 |
height: 100%;
|
30 |
border: none;
|
31 |
}
|
32 |
+
body > p {
|
33 |
+
width: 80%;
|
34 |
+
text-align: center;
|
35 |
+
margin-bottom: 20px; /* Add some space between the paragraph and the iframe container */
|
36 |
+
}
|
37 |
</style>
|
38 |
</head>
|
39 |
<body>
|
40 |
+
<p>This is an embedded interactive visualization of (a subset of) <a href="https://huggingface.co/datasets/HuggingFaceM4/OBELICS" target="_blank">OBELICS</a> powered by <a href="https://home.nomic.ai/" target="_blank">Nomic AI</a>. You will find the original map <a href="https://atlas.nomic.ai/map/f2fba2aa-3647-4f49-a0f3-9347daeee499/ee4a84bd-f125-4bcc-a683-1b4e231cb10f" target="_blank">here</a>.</p>
|
41 |
<div class="iframe-container">
|
|
|
42 |
<iframe src="https://atlas.nomic.ai/map/f2fba2aa-3647-4f49-a0f3-9347daeee499/ee4a84bd-f125-4bcc-a683-1b4e231cb10f" allow="clipboard-read; clipboard-write"
|
43 |
title="Nomic Atlas"></iframe>
|
44 |
</div>
|
45 |
</body>
|
46 |
+
</html>
|