sitewww/styles/reset.css
vinicius 925f5ba1ee
All checks were successful
Deploy para Servidor de Produção / Determinar ambiente de destino (push) Successful in 2s
Deploy para Servidor de Produção / Deploy para (push) Successful in 24s
versao inicial do site
2025-06-23 22:19:55 -03:00

20 lines
308 B
CSS
Executable file

body,
html {
width: 100%;
height: 100%;
background-color: var(--background);
}
* {
margin: 0;
padding: 0;
transition: all 300ms cubic-bezier(0, 1, 1, 1);
scroll-behavior: smooth;
line-height: 100%;
a:focus {
box-shadow: none;
}
text-decoration: none;
}