Initial commit

This commit is contained in:
arthur faria
2025-07-29 22:22:38 -03:00
commit 189fa1734c
22 changed files with 876 additions and 0 deletions

15
wwwroot/css/site.css Normal file
View File

@@ -0,0 +1,15 @@
/* site.css */
/* Reset de margens e fonte padrão */
body {
margin: 0;
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
background-color: #f8f9fa;
}
/* Espaçamento abaixo da navbar */
.navbar {
margin-bottom: 1rem;
}
/* Container principal já recebe mt-4 no layout */

4
wwwroot/js/site.js Normal file
View File

@@ -0,0 +1,4 @@
// Inicializa Material Components
mdc.topAppBar.MDCTopAppBar.attachTo(
document.querySelector('.mdc-top-app-bar')
);