fikusta_header.html 2.4 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  1. {% if fikusta_portal_url %}
  2. <header id="fikusta-global-header">
  3. <div id="fikusta-header-inner">
  4. <div id="fikusta-header-left">
  5. <a href="{{ fikusta_portal_url }}" id="fikusta-portal-link" title="Zurück zum Portal">
  6. <img src="{{ cms_brand_logo_url }}" alt="{{ fikusta_portal_title }}" id="fikusta-header-logo">
  7. <span id="fikusta-portal-title">{{ fikusta_portal_title }}</span>
  8. </a>
  9. </div>
  10. <nav id="fikusta-header-nav" aria-label="Portal-Navigation">
  11. <ul>
  12. <li><a href="{{ base_url }}/">CMS</a></li>
  13. <li><a href="{{ fikusta_portal_url }}/leserservice" target="_blank" rel="noopener">Leser-Service</a></li>
  14. <li><a href="{{ fikusta_portal_url }}/statistik" target="_blank" rel="noopener">Statistik</a></li>
  15. </ul>
  16. </nav>
  17. </div>
  18. </header>
  19. <style>
  20. #fikusta-global-header {
  21. position: sticky;
  22. top: 0;
  23. z-index: 30;
  24. background: #1e3a5f;
  25. color: #fff;
  26. box-shadow: 0 2px 6px rgba(0,0,0,.25);
  27. }
  28. #fikusta-header-inner {
  29. display: flex;
  30. align-items: center;
  31. justify-content: space-between;
  32. max-width: 100%;
  33. padding: 0 1rem;
  34. height: 3rem;
  35. }
  36. #fikusta-header-left {
  37. display: flex;
  38. align-items: center;
  39. gap: 0.5rem;
  40. min-width: 0;
  41. }
  42. #fikusta-portal-link {
  43. display: flex;
  44. align-items: center;
  45. gap: 0.5rem;
  46. color: #fff;
  47. text-decoration: none;
  48. font-weight: 600;
  49. font-size: 0.95rem;
  50. white-space: nowrap;
  51. }
  52. #fikusta-portal-link:hover {
  53. color: #93c5fd;
  54. }
  55. #fikusta-header-logo {
  56. height: 1.75rem;
  57. width: auto;
  58. object-fit: contain;
  59. }
  60. #fikusta-portal-title {
  61. font-size: 1rem;
  62. font-weight: 700;
  63. letter-spacing: 0.02em;
  64. }
  65. #fikusta-header-nav ul {
  66. list-style: none;
  67. margin: 0;
  68. padding: 0;
  69. display: flex;
  70. align-items: center;
  71. gap: 0.25rem;
  72. }
  73. #fikusta-header-nav ul li a {
  74. display: inline-block;
  75. padding: 0.3rem 0.75rem;
  76. border-radius: 0.375rem;
  77. color: #cbd5e1;
  78. text-decoration: none;
  79. font-size: 0.85rem;
  80. transition: background 0.15s, color 0.15s;
  81. }
  82. #fikusta-header-nav ul li a:hover {
  83. background: rgba(255,255,255,.12);
  84. color: #fff;
  85. }
  86. /* Sidebar top correction when header is present */
  87. @media (min-width: 768px) {
  88. #sidebar {
  89. top: 3rem !important;
  90. max-height: calc(100vh - 3rem) !important;
  91. }
  92. }
  93. </style>
  94. {% endif %}