-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.css
More file actions
56 lines (45 loc) · 1.08 KB
/
index.css
File metadata and controls
56 lines (45 loc) · 1.08 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
@import "tailwindcss";
@theme {
--font-main: "Inter", ui-sans-serif, system-ui, sans-serif;
--font-heading: "Playfair Display", serif;
}
:root {
--font-main: 'Inter', sans-serif;
--font-heading: 'Playfair Display', serif;
}
body {
font-family: var(--font-main);
scroll-behavior: smooth;
-webkit-font-smoothing: antialiased;
}
h1, h2, h3, .serif-font {
font-family: var(--font-heading) !important;
}
.sans-font {
font-family: var(--font-main) !important;
}
/* Estilo para el contenedor de ClickBank */
#cbtb {
min-height: 80px;
display: flex;
align-items: center;
justify-content: center;
margin: 2rem 0;
}
.prose-custom {
line-height: 1.8;
font-size: 1.15rem;
}
.prose-editorial p {
margin-bottom: 2rem;
}
.prose-editorial ul, .prose-editorial ol {
margin-bottom: 2rem;
}
@keyframes pulse-custom {
0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(52, 211, 153, 0.4); }
50% { transform: scale(1.02); box-shadow: 0 0 40px 10px rgba(52, 211, 153, 0.2); }
}
.animate-pulse-custom {
animation: pulse-custom 3s infinite cubic-bezier(0.4, 0, 0.6, 1);
}