- Added a css file for standart css
- Added a css file for Header and Footer and php file for updating after login is sucessfull
- Added a css file for the Main Content
- Added a css file for SingUP page and PHP file for handling Singin
- Added a css file for Dashboard page and PHP for the dynamic page solution
- Added a css file for 404 page
- Added a css file for Login page and PHP file for handling Login
- Added a css file for Terms and Privacy page
- Added a css file for Prices content
This commit is contained in:
2025-07-01 08:38:28 -03:00
parent ed06f52496
commit 4c8088ecc6
47 changed files with 3041 additions and 220 deletions
+58
View File
@@ -0,0 +1,58 @@
:root {
--color-background-Light: #f5f8fa;
--color-background-Dark: #202124;
--color-Primary-Light: #ffffff;
--color-Primary-Dark: #41444a;
--color-Accent: #00bf63;
--color-Accent-darker: #07a65a;
}
.Destacado {
color: var(--color-Accent);
}
.container {
max-width: 80rem;
align-items: center;
margin: 0 auto;
place-items: center;
}
* {
box-sizing: border-box;
font-family: "Outfit", sans-serif;
margin: 0;
padding: 0;
}
body {
background-color: var(--color-background-Light);
width: 100%;
height: 100%;
}
.sessao {
background-color: var(--color-Primary-Light);
border-radius: 28px;
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
padding: 20px 20px;
}
.tituloprincipal {
margin-bottom: 25px;
font-size: larger;
color: var(--color-Accent);
}
.subtitulo {
margin-top: 15px;
margin-bottom: 20px;
font-size: large;
}
.texto {
font-size: medium;
margin-bottom: 15px;
}