ADD:
- 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:
+177
@@ -0,0 +1,177 @@
|
||||
/*------------Variaveis------------*/
|
||||
|
||||
:root {
|
||||
--color-background-Light: #f5f8fa;
|
||||
--color-background-Dark: #202124;
|
||||
|
||||
--color-Primary-Light: #ffffff;
|
||||
--color-Primary-Dark: #41444a;
|
||||
|
||||
--color-Accent: #00bf63;
|
||||
--color-Accent-darker: #07a65a;
|
||||
}
|
||||
|
||||
/*------------body------------*/
|
||||
|
||||
body {
|
||||
background-color: var(--color-background-Light);
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
/*------------Section_1------------*/
|
||||
|
||||
.Section_1 {
|
||||
padding-top: 100px;
|
||||
padding-bottom: 200px;
|
||||
border-bottom: 2px solid rgba(0, 0, 0, 0.2);
|
||||
}
|
||||
|
||||
#Dashboard_img {
|
||||
display: block;
|
||||
|
||||
margin: 0 0 0 auto;
|
||||
max-width: 50%;
|
||||
|
||||
border-radius: 12px;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.Section_1 .Title_Section {
|
||||
text-align: left;
|
||||
|
||||
width: 400px;
|
||||
margin-bottom: 2rem;
|
||||
font-size: 2rem;
|
||||
}
|
||||
|
||||
.Section_1 .P_Section {
|
||||
text-align: left;
|
||||
|
||||
width: 400px;
|
||||
font-size: 1rem;
|
||||
}
|
||||
|
||||
.Section_1 .Button_Section {
|
||||
text-decoration: none;
|
||||
font-weight: bold;
|
||||
border: none;
|
||||
margin-top: 1rem;
|
||||
white-space: nowrap;
|
||||
|
||||
line-height: 100px;
|
||||
padding: 10px 20px;
|
||||
border-radius: 28px;
|
||||
|
||||
color: var(--color-background-Dark);
|
||||
background-color: var(--color-Accent);
|
||||
transition: background-color 0.3s ease;
|
||||
}
|
||||
|
||||
.Section_1 .Button_Section:hover {
|
||||
background-color: var(--color-Accent-darker);
|
||||
}
|
||||
|
||||
/*------------Section_2------------*/
|
||||
|
||||
.Section_2 {
|
||||
padding-top: 200px;
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
|
||||
.Section_2 .Title_Section {
|
||||
text-align: center;
|
||||
margin-bottom: 2rem;
|
||||
font-size: 2rem;
|
||||
width: 400px;
|
||||
}
|
||||
|
||||
.Section_2 .P_Section {
|
||||
text-align: center;
|
||||
font-size: 1rem;
|
||||
margin-bottom: 2rem;
|
||||
width: 400px;
|
||||
}
|
||||
|
||||
.Logo_icons {
|
||||
display: grid;
|
||||
grid-template-columns: repeat(4, 1fr);
|
||||
gap: 20px;
|
||||
border-radius: 12px;
|
||||
padding: 15px 15px;
|
||||
margin: 0 auto 0 0;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.5);
|
||||
}
|
||||
|
||||
.Company_logos {
|
||||
display: block;
|
||||
width: 100px;
|
||||
height: 100px;
|
||||
max-width: 100%;
|
||||
max-height: 100%;
|
||||
border: solid;
|
||||
border-radius: 12px;
|
||||
padding: 10px 10px;
|
||||
}
|
||||
|
||||
/*------------others------------*/
|
||||
|
||||
.Destacado {
|
||||
color: var(--color-Accent);
|
||||
}
|
||||
|
||||
.container {
|
||||
display: flex;
|
||||
max-width: 80rem;
|
||||
align-items: center;
|
||||
margin: 0 auto;
|
||||
}
|
||||
|
||||
/*------------responsive------------*/
|
||||
|
||||
@media screen and (max-width: 1070px) {
|
||||
.Section_1 {
|
||||
padding-top: 150px;
|
||||
padding-bottom: 100px;
|
||||
display: grid;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
place-items: center;
|
||||
}
|
||||
|
||||
#Dashboard_img {
|
||||
margin: 0 0 0 0;
|
||||
min-width: 80%;
|
||||
}
|
||||
|
||||
.Section_1 .Title_Section,
|
||||
.Section_1 .P_Section,
|
||||
.Section_1 .Button_Section,
|
||||
.Section_2 .Title_Section,
|
||||
.Section_2 .P_Section,
|
||||
.Section_2 .Button_Section {
|
||||
place-items: center;
|
||||
text-align: center;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
.Text_Section {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
.Section_2 {
|
||||
padding-top: 100px;
|
||||
display: grid;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
}
|
||||
|
||||
.Logo_icons {
|
||||
margin: auto;
|
||||
grid-template-columns: repeat(2, 1fr);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user