This commit is contained in:
2025-01-29 18:31:26 -03:00
parent a0a898caee
commit cc375d5d29
3 changed files with 11 additions and 16 deletions

View File

@@ -232,22 +232,14 @@ input, textarea, select {
} }
/* .p-header {
background-color: #24252a;
box-shadow: 0px 3px 10px #464646;
position: fixed;
top: 0;
width: 100%;
z-index: 100;
} */
.navigation { .navigation {
position: fixed; position: fixed;
bottom: 0; bottom: 0;
width: 100%; width: 100%;
height: 60px; height: 60px;
background: white; background: var(--main-gradient);
display: flex; display: none;
justify-content: center; justify-content: center;
align-items: center; align-items: center;
border-radius: 10px 10px 0px 0px; border-radius: 10px 10px 0px 0px;
@@ -283,7 +275,7 @@ input, textarea, select {
.navigation ul li a .icon { .navigation ul li a .icon {
position: fixed; position: fixed;
background: #fff; background: #add7ff;
display: block; display: block;
width: 55px; width: 55px;
height: 55px; height: 55px;
@@ -354,4 +346,8 @@ input, textarea, select {
display: block; display: block;
transition: transform 0.2s; transition: transform 0.2s;
} }
.navigation {
display: flex;
}
} }

View File

@@ -9,9 +9,7 @@ function menuShow() {
} }
} }
function entrar(){
alert('Onde tu pensa que vai entrar?🤨');
}
var elem = document.getElementById("all"); var elem = document.getElementById("all");
function openFullscreen() { function openFullscreen() {
if (elem.requestFullscreen) { if (elem.requestFullscreen) {
@@ -21,5 +19,4 @@ function openFullscreen() {
} else if (elem.msRequestFullscreen) { /* IE11 */ } else if (elem.msRequestFullscreen) { /* IE11 */
elem.msRequestFullscreen(); elem.msRequestFullscreen();
} }
} }
// openFullscreen()

View File

@@ -79,3 +79,5 @@ function notificacao(){
setInterval(()=> { setInterval(()=> {
notificacao() notificacao()
}, 10000) }, 10000)