-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathstyles.css
More file actions
112 lines (98 loc) · 2.1 KB
/
styles.css
File metadata and controls
112 lines (98 loc) · 2.1 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
:root {
--bg-dark: #121212;
--card-bg: #1e1e1e;
--text-primary: #e0e0e0;
--text-secondary: #a0a0a0;
--accent: #bb86fc;
--accent-hover: #3700b3;
--transition: all 0.3s ease;
}
/* Modo oscuro por defecto */
body {
background-color: var(--bg-dark);
color: var(--text-primary);
font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
line-height: 1.6;
margin: 0;
padding: 0;
min-height: 100vh;
transition: var(--transition);
}
.container {
max-width: 900px;
margin: 0 auto;
padding: 2rem;
}
/* Estilo para la foto de perfil */
.profile-header {
text-align: center;
margin-bottom: 3rem;
}
.profile-img {
width: 200px;
height: 200px;
border-radius: 50%;
object-fit: cover;
border: 3px solid var(--accent);
box-shadow: 0 0 20px rgba(187, 134, 252, 0.3);
transition: var(--transition);
}
.profile-img:hover {
transform: scale(1.05);
box-shadow: 0 0 30px rgba(187, 134, 252, 0.5);
}
h1, h2, h3 {
color: var(--accent);
margin-top: 0;
}
h1 {
font-size: 2.5rem;
margin-top: 1rem;
}
/* Tarjetas de contenido */
.card {
background-color: var(--card-bg);
border-radius: 10px;
padding: 1.5rem;
margin-bottom: 2rem;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
transition: var(--transition);
}
.card:hover {
transform: translateY(-5px);
box-shadow: 0 10px 15px rgba(0, 0, 0, 0.2);
}
/* Enlaces y botones */
a {
color: var(--accent);
text-decoration: none;
transition: var(--transition);
}
a:hover {
color: var(--accent-hover);
text-decoration: underline;
}
.btn {
display: inline-block;
background-color: var(--accent);
color: #121212;
padding: 0.6rem 1.5rem;
border-radius: 30px;
font-weight: bold;
margin: 0.5rem;
transition: var(--transition);
}
.btn:hover {
background-color: var(--accent-hover);
color: white;
text-decoration: none;
transform: translateY(-3px);
}
/* Pie de página */
footer {
text-align: center;
margin-top: 3rem;
padding: 1rem;
color: var(--text-secondary);
font-size: 0.9rem;
}