diff --git a/frontend/index.html b/frontend/index.html index a8f8693..d754939 100644 --- a/frontend/index.html +++ b/frontend/index.html @@ -60,10 +60,28 @@ #traceroute-output .error-line { color: #f87171; font-weight: bold;} /* Rot */ #traceroute-output .end-line { color: #a78bfa; font-weight: bold; margin-top: 10px;} /* Lila */ + /* Navigations-Styling */ + nav ul { list-style: none; padding: 0; margin: 0; display: flex; gap: 1rem; } + nav a { color: #c4b5fd; /* purple-300 */ text-decoration: none; } + nav a:hover { color: #a78bfa; /* purple-400 */ text-decoration: underline; } + header { background-color: #374151; /* gray-700 */ padding: 1rem; margin-bottom: 1.5rem; border-radius: 0.5rem; /* rounded-lg */ display: flex; justify-content: space-between; align-items: center; } + header h1 { font-size: 1.5rem; /* text-2xl */ font-weight: bold; color: #e5e7eb; /* gray-200 */ } +
+