-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathagenda.html
More file actions
57 lines (53 loc) · 1.61 KB
/
agenda.html
File metadata and controls
57 lines (53 loc) · 1.61 KB
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
<!DOCTYPE html>
<html lang="pt-BR">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Agenda de Eventos - Condomínio</title>
<link rel="stylesheet" href="css/estilo.css">
<link rel="stylesheet" href="css/dashboard.css">
<style>
.eventos-container {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
gap: 20px;
}
.evento-card {
background-color: #fff;
padding: 20px;
border-radius: 8px;
box-shadow: 0 4px 8px rgba(0,0,0,0.1);
}
.evento-card h3 {
margin-top: 0;
color: var(--verde-primario);
}
.evento-card p {
margin: 5px 0;
color: #333;
}
</style>
</head>
<body>
<header class="header">
<h1>Agenda de Eventos do Condomínio</h1>
<button onclick="window.location.href='index.html'">Voltar</button>
</header>
<nav class="menu">
<a href="index.html">Início</a>
<a href="avisos.html">Avisos</a>
<a href="agenda.html" class="active">Agenda</a>
<a href="moradores.html">Moradores</a>
</nav>
<main class="main-content">
<div class="agenda-container">
<h2>Eventos e Serviços Recorrentes</h2>
<div id="listaEventos" class="eventos-container">
<p>Carregando agenda...</p>
</div>
</div>
</main>
<script src="js/auth.js"></script>
<script src="js/agenda.js"></script>
</body>
</html>