blob: 3605150e1121cc55d025353cb6ee277c0d30694b (
plain)
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
|
@import "tailwindcss";
@plugin "@tailwindcss/typography";
body {
font-family: 'Inter', system-ui, -apple-system, sans-serif;
line-height: 1.7;
}
.font-mono {
font-family: 'JetBrains Mono', monospace;
}
.dot::after {
content: ".";
color: #ec4899;
text-shadow: 0 0 10px rgba(236, 72, 153, 0.3);
animation: pulse-dot 2s ease-in-out infinite;
}
@keyframes pulse-dot {
0%, 100% {
opacity: 0.6;
transform: scale(1);
}
50% {
opacity: 1;
transform: scale(1.1);
}
}
|