79 lines
1.4 KiB
CSS
79 lines
1.4 KiB
CSS
body {
|
|
margin: 0;
|
|
padding: 0;
|
|
background-color: #121212;
|
|
font-family: 'Segoe UI', sans-serif;
|
|
color: white;
|
|
justify-content: center;
|
|
}
|
|
|
|
.App {
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 2rem;
|
|
min-height: 100vh;
|
|
text-align: center;
|
|
}
|
|
|
|
/* 🔹 מרכז כותרת */
|
|
.title-wrapper {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: center;
|
|
margin-bottom: 1rem;
|
|
}
|
|
|
|
.main-title {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 2rem;
|
|
font-weight: bold;
|
|
color: white;
|
|
gap: 0.6rem;
|
|
font-family: 'Orbitron', sans-serif;
|
|
}
|
|
|
|
.navix-logo {
|
|
width: 40px;
|
|
height: 40px;
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
}
|
|
|
|
/* 🔹 תיבת חיפוש בצד שמאל */
|
|
.search-wrapper {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: flex-start;
|
|
max-width: 1200px;
|
|
margin-bottom: 2rem;
|
|
margin-left: 2rem;
|
|
}
|
|
|
|
.search-input {
|
|
background: transparent;
|
|
margin-bottom: 10px;
|
|
border: none;
|
|
border-bottom: 2px solid #2e6dc0;
|
|
color: white;
|
|
font-family: 'Rajdhani', sans-serif;
|
|
font-size: 1.1rem;
|
|
padding: 0.4rem 0;
|
|
width: 240px;
|
|
transition: border-color 0.3s ease;
|
|
outline: none;
|
|
}
|
|
|
|
.search-input::placeholder {
|
|
color: #7a8aa5;
|
|
font-style: italic;
|
|
}
|
|
|
|
.search-input:focus {
|
|
border-bottom: 2px solid #4a90e2;
|
|
}
|
|
|
|
/* (שאר סגנונות שלך כמו add-button וכו') */
|