-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtest.html
More file actions
50 lines (45 loc) 路 1.21 KB
/
Copy pathtest.html
File metadata and controls
50 lines (45 loc) 路 1.21 KB
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
<html>
<style>
.floating-menu {
font-family: sans-serif;
background: black;
padding: 5px;
;
width: 180px;
z-index: 100;
position: fixed;
bottom: 0px;
right: 0px;
}
.floating-menu a,
.floating-menu h3 {
font-size: 0.9em;
display: block;
margin: 0 0.5em;
color: white;
}
</style>
<nav class="floating-menu">
<h3>Data Tweaking Labs馃</h3>
<a href="https://github.com/synthdatagen">Github</a>
<a
href="https://docs.google.com/presentation/d/1H2cDNjSosFWmXeIfXjcs_qUbVFiEZqbJBaqiaUtnAws/edit?usp=sharing">Presentation</a>
<a href="">Paper</a>
</nav>
st.markdown(htmlp2, unsafe_allow_html=True)
<script>
var coll = document.getElementsByClassName("collapsible");
var i;
for (i = 0; i < coll.length; i++) {
coll[i].addEventListener("click", function () {
this.classList.toggle("active");
var content = this.nextElementSibling;
if (content.style.display === "block") {
content.style.display = "none";
} else {
content.style.display = "block";
}
});
}
</script>
</html>