1
0

Big changes on API and Frontend

This commit is contained in:
Jose
2025-03-11 23:58:11 +01:00
parent 0e5e93cb73
commit 6cc3c6525e
19 changed files with 389 additions and 142 deletions

67
frontend/src/css/Home.css Normal file
View File

@@ -0,0 +1,67 @@
.home-container {
font-family: Arial, sans-serif;
text-align: center;
background-color: #f4f4f4;
padding: 20px;
}
.hero-section {
background: #4CAF50;
color: white;
padding: 50px 20px;
border-radius: 8px;
}
.hero-title {
font-size: 3em;
margin-bottom: 10px;
}
.hero-description {
font-size: 1.2em;
margin-bottom: 20px;
}
.cta-button {
background-color: #fff;
color: #4CAF50;
border: none;
padding: 15px 30px;
font-size: 1.1em;
cursor: pointer;
border-radius: 5px;
transition: background-color 0.3s ease;
}
.cta-button:hover {
background-color: #388E3C;
color: white;
}
.about-section {
margin-top: 50px;
}
.features {
display: flex;
justify-content: space-around;
margin-top: 30px;
}
.feature {
background-color: #ffffff;
padding: 20px;
border-radius: 8px;
width: 30%;
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}
.feature h3 {
font-size: 1.5em;
color: #333;
}
.feature p {
font-size: 1.1em;
color: #666;
}

View File

@@ -4,14 +4,22 @@
left: -350px;
width: 350px;
height: 100%;
background-color: #333;
color: white;
transition: left 0.3s ease;
padding: 30px;
box-shadow: 2px 0 5px rgba(0,0,0,0.5);
z-index: 1000;
}
.side-menu.light {
background-color: white;
color: black;
}
.side-menu.dark {
background-color: #333;
color: white;
}
.side-menu.open {
left: 0;
}
@@ -27,11 +35,18 @@
right: 20px;
background: none;
border: none;
color: white;
font-size: 30px;
cursor: pointer;
}
.side-menu .close-btn.light {
color: black;
}
.side-menu .close-btn.dark {
color: white;
}
.side-menu .close-btn .fa-times {
width: 30px;
height: 30px;
@@ -39,25 +54,4 @@
.side-menu .close-btn:hover {
color: var(--primary-color);
}
.side-menu ul {
list-style: none;
padding: 0;
}
.side-menu ul li {
margin: 20px 0;
}
.side-menu ul li a:hover {
color: var(--primary-color);
}
.side-menu ul li a {
color: white;
text-decoration: none;
font-size: 30px;
font-weight: 600;
/*text-transform: uppercase;*/
}