File size: 3,865 Bytes
57a85c6
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
@tailwind base;
@tailwind components;
@tailwind utilities;

/* Base Typography Improvements */
body {
	font-family: 'Inter', system-ui, -apple-system, sans-serif;
	font-feature-settings: 'cv11', 'ss01';
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

/* Improved serif font for content */
.font-serif {
	font-family: 'Georgia', 'Times New Roman', serif;
	font-feature-settings: 'liga', 'kern';
}

/* Glass Panel Effect */
.glass-panel {
  background: rgba(255, 255, 255, 0.85);
  backdrop-filter: blur(20px) saturate(180%);
  -webkit-backdrop-filter: blur(20px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.3);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.08);
}

.dark .glass-panel {
  background: rgba(15, 23, 42, 0.75);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.4);
}

/* Smooth Focus States */
*:focus-visible {
	outline: 2px solid rgba(99, 102, 241, 0.5);
	outline-offset: 2px;
}

/* Better Text Selection */
::selection {
	background-color: rgba(99, 102, 241, 0.3);
}

.dark ::selection {
	background-color: rgba(99, 102, 241, 0.4);
}

/* Improved Scrollbar */
::-webkit-scrollbar {
	width: 8px;
	height: 8px;
}

::-webkit-scrollbar-track {
	background: transparent;
}

::-webkit-scrollbar-thumb {
	background: rgba(156, 163, 175, 0.4);
	border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
	background: rgba(156, 163, 175, 0.6);
}

.dark ::-webkit-scrollbar-thumb {
	background: rgba(75, 85, 99, 0.5);
}

.dark ::-webkit-scrollbar-thumb:hover {
	background: rgba(75, 85, 99, 0.7);
}

/* Blog Content Improvements */
.prose {
	--tw-prose-bullets: theme('colors.brand.500');
	--tw-prose-counters: theme('colors.brand.600');
}

.dark .prose {
	--tw-prose-invert-bullets: theme('colors.brand.400');
	--tw-prose-invert-counters: theme('colors.brand.400');
}

/* List styling for better readability */
.prose ul > li::marker {
	color: var(--tw-prose-bullets);
}

.prose ol > li::marker {
	color: var(--tw-prose-counters);
	font-weight: 600;
}

/* Blockquote improvements */
.prose blockquote {
	position: relative;
	quotes: none;
}

.prose blockquote::before {
	content: '"';
	position: absolute;
	left: -0.5rem;
	top: -0.5rem;
	font-size: 3rem;
	color: theme('colors.brand.200');
	font-family: Georgia, serif;
	line-height: 1;
}

.dark .prose blockquote::before {
	color: theme('colors.brand.800');
}

/* Smooth animations */
@keyframes fade-in-up {
	from {
		opacity: 0;
		transform: translateY(10px);
	}
	to {
		opacity: 1;
		transform: translateY(0);
	}
}

.animate-fade-in-up {
	animation: fade-in-up 0.5s ease-out;
}

/* Pulse effect for loading states */
@keyframes gentle-pulse {
	0%, 100% {
		opacity: 1;
	}
	50% {
		opacity: 0.7;
	}
}

.animate-gentle-pulse {
	animation: gentle-pulse 2s ease-in-out infinite;
}

/* Better link hover effect */
.prose a {
	transition: all 0.2s ease;
}

/* Code block improvements */
.prose pre {
	position: relative;
}

.prose pre code {
	font-size: 0.875rem;
	line-height: 1.7;
}

/* Improved heading spacing in blog content */
.prose h2 {
	margin-top: 2.5em;
	margin-bottom: 0.75em;
}

.prose h3 {
	margin-top: 2em;
	margin-bottom: 0.5em;
}

.prose h4 {
	margin-top: 1.5em;
	margin-bottom: 0.5em;
}

/* First paragraph after heading - no margin top */
.prose h2 + p,
.prose h3 + p,
.prose h4 + p {
	margin-top: 0;
}

/* Better paragraph spacing */
.prose p + p {
	margin-top: 1.25em;
}

/* Responsive improvements */
@media (max-width: 768px) {
	.prose {
		font-size: 1rem;
	}
	
	.prose blockquote {
		padding-left: 1rem;
		padding-right: 1rem;
	}
	
	.prose blockquote::before {
		font-size: 2rem;
		left: -0.25rem;
	}
}

/* Print styles */
@media print {
	.glass-panel {
		background: white;
		backdrop-filter: none;
		box-shadow: none;
		border: 1px solid #e5e7eb;
	}
	
	nav, aside, .no-print {
		display: none !important;
	}
}