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
128 lines
2.0 KiB
CSS
128 lines
2.0 KiB
CSS
@import url("https://fonts.googleapis.com/css2?family=Outfit:wght@200;300;400;500;700&display=swap");
|
|
|
|
: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);
|
|
text-decoration: none;
|
|
}
|
|
|
|
.container {
|
|
max-width: 80%;
|
|
align-items: center;
|
|
margin: 0 auto;
|
|
justify-content: center;
|
|
}
|
|
|
|
.margintop {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.gap {
|
|
gap: rem;
|
|
}
|
|
|
|
.marginbottom {
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.alignitems {
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
|
|
.texto {
|
|
width: 350px;
|
|
max-width: 100%;
|
|
font-size: 20px;
|
|
}
|
|
|
|
* {
|
|
box-sizing: border-box;
|
|
font-family: "Outfit", sans-serif;
|
|
|
|
margin: 0;
|
|
padding: 0;
|
|
}
|
|
|
|
body {
|
|
background-color: var(--color-background-Light);
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.Inputbox {
|
|
outline: none;
|
|
|
|
height: 50px;
|
|
max-width: 550px;
|
|
width: 80%;
|
|
border-radius: 8px;
|
|
padding-left: 10px;
|
|
box-sizing: 1px;
|
|
margin-top: 40px;
|
|
|
|
border: 1px solid var(--color-Accent);
|
|
background-color: var(--color-background-Light);
|
|
}
|
|
|
|
.Button {
|
|
text-decoration: none;
|
|
font-weight: bold;
|
|
border: none;
|
|
|
|
line-height: 35px;
|
|
padding: 5px 20%;
|
|
border-radius: 28px;
|
|
cursor: pointer;
|
|
|
|
color: #333;
|
|
background-color: var(--color-Accent);
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.Button:hover {
|
|
background-color: var(--color-Accent-darker);
|
|
}
|
|
|
|
.main_area {
|
|
margin-top: 50vh;
|
|
justify-content: center;
|
|
display: flex;
|
|
align-items: center;
|
|
background-color: var(--color-Primary-Light);
|
|
border-radius: 28px;
|
|
padding: 20px 50px;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
|
|
max-width: 1000px;
|
|
|
|
width: 80%;
|
|
margin-left: auto;
|
|
margin-right: auto;
|
|
}
|
|
|
|
#Dashboard_img {
|
|
display: block;
|
|
|
|
max-width: 100%;
|
|
|
|
border-radius: 12px;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
|
|
}
|
|
|
|
.logo_icon {
|
|
width: 225px;
|
|
height: 100px;
|
|
border: none;
|
|
outline: none;
|
|
}
|