mirror of
https://github.com/ctwj/urldb.git
synced 2025-11-25 03:15:04 +08:00
45 lines
1.2 KiB
CSS
45 lines
1.2 KiB
CSS
@tailwind base;
|
|
@tailwind components;
|
|
@tailwind utilities;
|
|
|
|
@layer base {
|
|
html {
|
|
font-family: 'Inter', system-ui, sans-serif;
|
|
}
|
|
}
|
|
|
|
@layer components {
|
|
.btn-primary {
|
|
@apply bg-blue-600 hover:bg-blue-700 text-white font-medium py-2 px-4 rounded-lg transition-colors duration-200;
|
|
}
|
|
|
|
.btn-secondary {
|
|
@apply bg-gray-200 hover:bg-gray-300 text-gray-800 font-medium py-2 px-4 rounded-lg transition-colors duration-200;
|
|
}
|
|
|
|
.btn-danger {
|
|
@apply bg-red-600 hover:bg-red-700 text-white font-medium py-2 px-4 rounded-lg transition-colors duration-200;
|
|
}
|
|
|
|
.card {
|
|
@apply bg-white rounded-lg shadow-md border border-gray-200 p-6;
|
|
}
|
|
|
|
.input-field {
|
|
@apply w-full px-3 py-2 border border-gray-300 rounded-lg focus:outline-none focus:ring-2 focus:ring-blue-500 focus:border-transparent;
|
|
}
|
|
|
|
.resource-card {
|
|
@apply bg-white rounded-lg shadow-md border border-gray-200 p-4 hover:shadow-lg transition-shadow duration-200;
|
|
}
|
|
|
|
/* 搜索高亮样式 */
|
|
mark {
|
|
@apply bg-yellow-200 text-yellow-900 rounded font-medium;
|
|
}
|
|
|
|
/* 暗色模式下的高亮样式 */
|
|
.dark mark {
|
|
@apply bg-yellow-600 text-yellow-100;
|
|
}
|
|
} |