Ligar Chegar Ligar Ligar
#localizacao_mobile{ width:100%; height:50px; position:fixed; display:block; bottom:0; text-align:center; z-index:2; } #localizacao_mobile a{ width:25%; float:none; color:#fff; line-height:50px; font-size:0.9em; display:inline-block; z-index:2; } #localizacao_mobile a img{ height:30px; width:auto; padding:5px 0; } #localizacao_mobile .ligar_mobile{ background-color: #feb117; } #localizacao_mobile .chegar_mobile{ background-color: #42d5ff; } #localizacao_mobile .whats_mobile{ background-color: #25d366;} #localizacao_mobile .ifood_mobile{ background-color: #ff0000;}
header #mediumHeader nav{ width:70px; height:70px; margin-top:0px; overflow:hidden; text-align:center; padding-top:70px; box-sizing:border-box; transition:0.3s; background-color:#14829b; margin-right:0; z-index:3; margin-left:0; } header #mediumHeader nav a#menu_mobile{ position:absolute; top:0; right:0; width:70px; height:70px; background:url(../../imagens/mobile/menu-mobile.png) top right no-repeat #14829b; margin-left:0; } header #mediumHeader nav a{ margin-left:0; width:100%; display:block; text-transform:uppercase; font-size:28px; margin-bottom:20px; color:#fff; } function abre_menu(){ var largura = document.getElementById("nav_header").style.width; if(largura == "" || largura == "70px"){ document.getElementById("nav_header").style.width = "100vw"; document.getElementById("nav_header").style.height = "100vh"; document.getElementById("nav_header").style.overflow = "auto"; document.getElementById("nav_header").style.position = "fixed"; document.getElementById("nav_header").style.backgroundColor = "#000000"; document.getElementById("nav_header").style.paddingBottom = "70px"; document.getElementById("menu_mobile").style.backgroundImage = "url('imagens/mobile/close_menu.png')"; } else { document.getElementById("nav_header").style.width = "70px"; document.getElementById("nav_header").style.height = "70px"; document.getElementById("nav_header").style.position = "absolute"; document.getElementById("nav_header").style.background = "none"; document.getElementById("nav_header").style.overflow = "hidden"; document.getElementById("nav_header").style.paddingBottom = "0"; document.getElementById("menu_mobile").style.backgroundImage = "url('imagens/mobile/menu-mobile.png')"; } }