-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
80 lines (69 loc) · 1.55 KB
/
styles.css
File metadata and controls
80 lines (69 loc) · 1.55 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
/* Estilos base */
:root {
--primary-color: #2c3e50;
--secondary-color: #3498db;
--text-color: #333;
--background-color: #f5f6fa;
}
body {
font-family: 'Inter', sans-serif;
line-height: 1.6;
background-color: var(--background-color);
color: var(--text-color);
margin: 0;
}
.container {
max-width: 1200px;
margin: 0 auto;
padding: 2rem;
}
/* Header con gradiente y animación */
.header {
background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
color: white;
padding: 3rem;
border-radius: 10px;
margin-bottom: 2rem;
transform: translateY(0);
transition: transform 0.3s ease;
}
/* Secciones con efecto hover */
.section {
background: white;
padding: 2rem;
border-radius: 8px;
margin-bottom: 1.5rem;
box-shadow: 0 2px 15px rgba(0,0,0,0.1);
transition: transform 0.3s ease;
}
.section:hover {
transform: translateY(-5px);
}
/* Grid de habilidades */
.skills-grid {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
gap: 1.5rem;
}
.skill-category {
background: #f8f9fa;
padding: 1.5rem;
border-radius: 8px;
}
/* Estilo para items de experiencia */
.experience-item {
border-left: 3px solid var(--secondary-color);
padding-left: 1rem;
margin-bottom: 1.5rem;
}
/* Contacto y redes sociales */
.contact-info {
display: grid;
grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
gap: 1rem;
}
.contact-item {
display: flex;
align-items: center;
gap: 0.5rem;
}