-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtitulo.css
More file actions
50 lines (41 loc) · 1.03 KB
/
Copy pathtitulo.css
File metadata and controls
50 lines (41 loc) · 1.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
@import url('https://fonts.googleapis.com/css2?family=Sancreek&display=swap');
.quarto-title .title {
font-family: 'Sancreek', cursive !important;
text-align: center !important;
font-size: 3rem !important;
}
.quarto-title .subtitle {
text-align: center !important;
font-size: 1.5rem !important;
}
h1,
h1.title,
.quarto-title .title {
font-family: 'Sancreek', cursive !important;
text-align: center !important;
font-size: 3rem !important;
}
.hex-card {
background: linear-gradient(135deg, #ffffff, #fdf1f4);
border-radius: 20px;
padding: 25px;
margin: 30px 0;
max-width: 500px;
text-align: center;
box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
border: 2px solid #CD5C74; /* usa el rosa que pasaste */
}
.hex-card p {
font-size: 1.1rem;
color: #444;
margin-bottom: 15px;
}
.hex-card img {
margin-top: 15px;
border-radius: 12px;
box-shadow: 0 3px 10px rgba(0,0,0,0.15);
transition: transform 0.3s ease;
}
.hex-card img:hover {
transform: scale(1.05);
}