Novo Site

This commit is contained in:
2023-07-05 20:00:35 -03:00
parent dae83ec5ec
commit 6630af27d7
3 changed files with 689 additions and 209 deletions
+11 -1
View File
@@ -1 +1,11 @@
function toggleDiv() {
var div = document.getElementById("menu_bar_nav");
var header = document.getElementById("header_css");
if (div.style.display === "flex") {
div.style.display = "none";
header.style.borderRadius = "0 0 12px 12px"
} else {
div.style.display = "flex";
header.style.borderRadius = "0 0 0 0"
}
}