Spaces:
Running
Running
File size: 1,682 Bytes
0612745 593d0b2 0612745 9bc2267 0612745 9bc2267 0612745 8b37398 0612745 3397f5e 0612745 1c6bbc6 0612745 bf72ab6 0612745 bf72ab6 0612745 52e0e5b 0612745 |
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 51 52 53 54 55 56 57 58 59 60 61 62 63 |
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Criado de Personagens por IA</title>
<style>
body {
margin: 0;
padding: 10px;
overflow: hidden;
background-color: #000000;
}
.top-bar,
.bottom-bar {
position: fixed;
width: 100%;
height: 160px;
background-color: #000000;
color: rgb(0, 0, 0);
text-align: center;
line-height: 240px;
font-size: 24px;
z-index: 9999; /* Garante que as barras fiquem sobre o iframe */
}
.top-bar {
top: 0;
}
.bottom-bar {
bottom: 0;
}
#iframe-container {
position: absolute;
top: 120px;
bottom: 80px;
width: 100%;
overflow: hidden; /* Oculta as partes do iframe além das barras superior e inferior */
}
#iframe {
width:100%;
height: calc(90% + 90px); /* Ajusta a altura do iframe para incluir as barras superior e inferior */
margin-top: -58px; /* Move o iframe para cima para alinhar com a parte visível da página */
border: none;
}
</style>
</head>
<body>
<div class="top-bar"></div>
<div id="iframe-container">
<iframe id="iframe" src="https://app.brancher.ai/7f14dcfc-7fb9-4143-ad2a-a2e6ac2d1b26"></iframe>
</div>
<div class="bottom-bar"></div>
</body>
</html>
|