topbar.blade.php 894 B

12345678910111213141516
  1. <div class="flex items-center gap-4 px-4 py-2 bg-gradient-to-r from-primary-500 to-primary-600 text-white">
  2. <div class="flex items-center gap-2">
  3. <svg xmlns="http://www.w3.org/2000/svg" class="h-6 w-6 text-white" fill="none" viewBox="0 0 24 24" stroke="currentColor">
  4. <path stroke-linecap="round" stroke-linejoin="round" stroke-width="2" d="M9 19v-6a2 2 0 00-2-2H5a2 2 0 00-2 2v6a2 2 0 002 2h2a2 2 0 002-2zm0 0V9a2 2 0 012-2h2a2 2 0 012 2v10m-6 0a2 2 0 002 2h2a2 2 0 002-2m0 0V5a2 2 0 012-2h2a2 2 0 012 2v14a2 2 0 01-2 2h-2a2 2 0 01-2-2z" />
  5. </svg>
  6. <span class="text-lg font-semibold">数学知识图谱管理系统</span>
  7. </div>
  8. </div>
  9. <style>
  10. /* 自定义顶部栏样式 */
  11. .topbar-custom {
  12. background: linear-gradient(90deg, #0ea5e9, #0284c7);
  13. box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
  14. }
  15. </style>