-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathequipo.css
More file actions
148 lines (126 loc) · 3.03 KB
/
Copy pathequipo.css
File metadata and controls
148 lines (126 loc) · 3.03 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
/* Fondo y colores generales */
body {
background-color: #f8f8f8;
color: #333333;
}
/* Estilos de los títulos */
h1, h2 {
font-weight: 400;
text-align: center;
margin-bottom: 30px;
text-transform: none; /* Elimina mayúsculas, hace más natural */
}
/* Estilo específico para el título principal (h1) */
h1 {
font-size: 40px; /* Reducir un poco el tamaño */
color: var(--primary-color);
letter-spacing: 1px; /* Espaciado sutil */
text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.05); /* Sombras muy suaves */
}
/* Estilo para los subtítulos (h2) */
h2 {
font-size: 32px; /* Tamaño más moderado */
color: #444;
font-weight: 500; /* Un poco más fuerte para resaltar */
letter-spacing: 1px;
}
/* Estilos para la sección del equipo */
.team-section {
display: flex;
flex-wrap: wrap;
justify-content: center;
gap: 20px;
margin-top: 30px;
}
/* Tarjeta de cada miembro del equipo */
.team-card {
background: #ffffff;
border-radius: 12px;
padding: 20px;
width: 250px;
text-align: center;
box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.15); /* Sombra suave para look limpio */
transition: transform 0.3s ease-in-out;
}
.team-card:hover {
transform: scale(1.05);
}
/* Estilo de las imágenes */
.team-card img {
width: 120px;
height: 120px;
border-radius: 50%;
object-fit: cover;
box-shadow: 0px 2px 8px rgba(0, 0, 0, 0.2); /* Sombra suave */
}
/* Nombre y rol */
.team-card h3 {
font-size: 22px;
margin: 15px 0 5px;
font-weight: 600; /* Resalta el nombre */
color: #333; /* Color más oscuro */
}
.team-card p {
font-size: 16px;
color: #777;
margin-bottom: 15px;
font-style: italic; /* Toque elegante */
}
/* Iconos de redes sociales */
.team-card a {
color: #555;
font-size: 18px;
margin: 0 10px;
transition: color 0.3s;
}
.team-card a:hover {
color: #009688; /* Verde suave al pasar el mouse */
}
/* Espaciado especial para el fundador */
.founder {
background: #e3f2fd; /* Azul claro para destacar */
border-left: 5px solid #009688;
}
/* Estilos para la grilla */
.team-grid {
display: flex;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 20px;
justify-content: center;
padding: 20px;
}
.team-card {
background: #fff;
text-align: center;
padding: 15px;
border-radius: 10px;
box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1); /* Mantener sombra sutil */
transition: transform 0.3s ease;
}
.team-card:hover {
transform: scale(1.05);
}
.team-img {
width: 100px;
height: 100px;
border-radius: 50%;
object-fit: cover;
margin-bottom: 10px;
}
.team-card a {
margin: 5px;
color: #0077b5; /* Color de LinkedIn */
}
/* Agregar un toque sutil de interactividad */
.team-card:hover {
box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15); /* Más profundidad al pasar el mouse */
}
.team-card {
text-align: center;
}
.center {
display: flex;
justify-content: center;
align-items: center;
text-align: center;
}