testes/html/construindo.html

111 lines
2.6 KiB
HTML

<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Em Construção</title>
<style>
/* Estilos básicos para garantir que a tela ocupe toda a viewport */
body,
html {
margin: 0;
padding: 0;
height: 100%;
width: 100%;
font-family: Arial, sans-serif;
display: flex;
justify-content: center;
align-items: center;
background: #f0f0f0;
}
.container {
text-align: center;
}
.message {
background: #ffffff;
border: 1px solid #ccc;
padding: 20px;
border-radius: 10px;
box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
animation: fadeIn 2s ease-in-out;
}
h1 {
font-size: 2.5rem;
color: #1478cf;
margin-bottom: 10px;
animation: bounce 1s infinite;
}
p {
font-size: 1.2rem;
color: #333;
margin-bottom: 20px;
}
.link {
text-decoration: none;
color: #0066cc;
font-size: 1rem;
transition: color 0.3s;
}
.link:hover {
text-decoration: underline;
color: #004999;
}
@keyframes fadeIn {
from {
opacity: 0;
transform: translateY(-20px);
}
to {
opacity: 1;
transform: translateY(0);
}
}
@keyframes bounce {
0%,
20%,
50%,
80%,
100% {
transform: translateY(0);
}
40% {
transform: translateY(-30px);
}
60% {
transform: translateY(-15px);
}
}
</style>
</head>
<body>
<div class="container">
<div class="message">
<h1>Em Construção</h1>
<p>Estamos trabalhando nisso! Coisas podem ser modificadas</p>
<a href="https://dev.itguys.com.br/ambiente_do_usu%C3%A1rio/html/Ambiente_Usuario.html" class="link">Voltar
para a Página Inicial</a>
</div>
</div>
<script>
// Exemplo de script básico
document.addEventListener('DOMContentLoaded', () => {
console.log('Página de "Em Construção" carregada.');
});
</script>
</body>
</html>