4c8088ecc6
- 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
74 lines
1.1 KiB
CSS
74 lines
1.1 KiB
CSS
: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: 70rem;
|
|
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%;
|
|
}
|
|
|
|
#Construcao_img {
|
|
display: block;
|
|
max-width: 50%;
|
|
|
|
border-radius: 12px;
|
|
}
|
|
|
|
.sessao {
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
justify-content: center;
|
|
place-items: center;
|
|
border-radius: 28px;
|
|
}
|
|
|
|
.titulo {
|
|
margin-top: 1rem;
|
|
font-size: 4rem;
|
|
}
|
|
|
|
.texto {
|
|
font-size: 2rem;
|
|
margin-top: 1rem;
|
|
margin-bottom: 2rem;
|
|
}
|
|
|
|
.button {
|
|
font-weight: bold;
|
|
text-decoration: none;
|
|
padding: 10px;
|
|
background-color: var(--color-Accent);
|
|
border-radius: 28px;
|
|
margin-bottom: 2rem;
|
|
color: black;
|
|
}
|