Ayushparikh-code / Ayushparikh-code/Web-dev-mini-projects
Project title
- Dominant language
- HTML
- Stars
- 4.5k
- Forks
- 1.7k
- PR merge metrics
- No merged PRs in 30d
Description
**Project title**
(Write project title over here)
**Project Description**
(Describe the project over here)
Stack:
[
Servi Pro
/* Estilos Generales */
* {
margin: 0;
padding: 0;
box-sizing: border-box;
font-family: 'Inter', sans-serif;
}
body {
background-color: #f7f9fc;
color: #333;
}
/* Barra de Navegación */
header {
display: flex;
justify-content: space-between;
align-items: center;
padding: 20px 5%;
background-color: #ffffff;
border-bottom: 1px solid #eaeaea;
}
.logo {
font-size: 20px;
font-weight: 700;
color: #0d6efd;
display: flex;
align-items: center;
gap: 8px;
}
.logo i {
font-size: 24px;
}
nav {
display: flex;
gap: 30px;
}
nav a {
text-decoration: none;
color: #555;
font-weight: 500;
font-size: 15px;
}
.ayuda {
text-decoration: none;
color: #2b7a0b;
font-weight: 600;
font-size: 15px;
display: flex;
align-items: center;
gap: 8px;
}
/* Sección Principal */
main {
padding: 50px 5%;
max-width: 1200px;
margin: 0 auto;
}
.encabezado-seccion {
display: flex;
justify-content: space-between;
align-items: flex-start;
margin-bottom: 30px;
}
.titulo-seccion h1 {
font-size: 24px;
font-weight: 700;
margin-bottom: 8px;
color: #1a1a1a;
}
.titulo-seccion p {
font-size: 15px;
color: #666;
}
.btn-ver-todos {
background-color: #ffffff;
border: 1px solid #ddd;
padding: 10px 20px;
border-radius: 20px;
font-weight: 600;
color: #333;
cursor: pointer;
transition: 0.2s;
}
.btn-ver-todos:hover {
background-color: #f0f0f0;
}
/* Grilla de Tarjetas */
.grilla-servicios {
display: grid;
grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
gap: 20px;
}
/* Modificación para que la tarjeta sea un enlace (etiqueta <a>) */
.tarjeta {
background-color: #ffffff;
padding: 24px;
border-radius: 12px;
box-shadow: 0 2px 8px rgba(0,0,0,0.04);
transition: transform 0.2s, box-shadow 0.2s;
cursor: pointer;
display: flex;
flex-direction: column;
gap: 12px;
text-decoration: none; /* Quita el subrayado del enlace */
color: inherit; /* Mantiene el color original del texto */
}
.tarjeta:hover {
transform: translateY(-3px);
box-shadow: 0 6px 15px rgba(0,0,0,0.08);
}
.icono-tarjeta {
width: 40px;
height: 40px;
background-color: #eaf2ff;
color: #0d6efd;
border-radius: 8px;
display: flex;
justify-content: center;
align-items: center;
font-size: 18px;
}
.contenido-tarjeta h3 {
font-size: 16px;
font-weight: 600;
color: #1a1a1a;
margin-bottom: 6px;
}
.contenido-tarjeta p {
font-size: 14px;
color: #777;
line-height: 1.4;
}
.cabecera-tarjeta {
display: flex;
align-items: center;
gap: 15px;
margin-bottom: 5px;
}
/* Responsividad básica */
@media (max-width: 768px) {
header {
flex-direction: column;
gap: 15px;
}
.encabezado-seccion {
flex-direction: column;
gap: 15px;
}
}
Servi Pro
Inicio
Explorar Servicios
Ayuda
Servicios más pedidos
Elegí una categoría y pedí presupuesto o reserva por WhatsApp.
Ver todos
Cerrajería
Apertura de puertas y cerraduras 24hs.
Reparación de fugas, cañerías y grifería.
Plomería
Instalaciones eléctricas y reparaciones.
Electricista
Destranque de cañerías y pozos ciegos.
Destapaciones
Instalación, mantenimiento y carga de gas.
Aire Acondicionado
Reparación e instalación de termotanques.
Termocalefón
Control de plagas: cucarachas, termitas, ratas.
Fumigación
Transporte de carga y mudanzas residenciales.
Mudanzas y Fletes
Reparación de portones eléctricos y aberturas.
Aberturas y Portones
Paneles solares y termotanques solares.
Energía Solar
Albañilería, pintura y refacciones generales.
Remodelaciones
] Html
[/* Estilos para el Modal */
.modal-overlay {
display: none;
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
background: rgba(0, 0, 0, 0.6);
backdrop-filter: blur(5px);
z-index: 1000;
justify-content: center;
align-items: center;
}
.modal-content {
background: white;
padding: 30px;
border-radius: 20px;
width: 90%;
max-width: 500px;
position: relative;
box-shadow: 0 20px 40px rgba(0,0,0,0.2);
animation: slideUp 0.3s ease-out;
}
@keyframes slideUp {
from { transform: translateY(20px); opacity: 0; }
to { transform: translateY(0); opacity: 1; }
}
.close-modal {
position: absolute;
top: 20px;
right: 20px;
font-size: 20px;
cursor: pointer;
color: #999;
}
/* Estilos del Formulario */
.form-group {
margin-bottom: 15px;
}
.form-group label {
display: block;
font-size: 14px;
font-weight: 600;
margin-bottom: 5px;
color: #444;
}
.form-group input, .form-group select, .form-group textarea {
width: 100%;
padding: 12px;
border: 1px solid #ddd;
border-radius: 10px;
font-size: 15px;
outline: none;
transition: border-color 0.2s;
}
.form-group input:focus {
border-color: #0d6efd;
}
.btn-enviar {
width: 100%;
background-color: #25d366; /* Color WhatsApp */
color: white;
padding: 14px;
border: none;
border-radius: 10px;
font-weight: 700;
font-size: 16px;
cursor: pointer;
display: flex;
justify-content: center;
align-items: center;
gap: 10px;
margin-top: 10px;
}
.btn-enviar:hover {
background-color: #128c7e;
} ] CSS
[ ] JavaScript
Contributor guide
Assessment
This issue has not been assessed yet.