interstellar_ai/app/styles/header.css

39 lines
862 B
CSS
Raw Normal View History

2024-09-18 11:17:34 +02:00
header {
2024-09-23 11:55:58 +02:00
background-color: var(--header-background-color); /* Use the new header background color */
color: var(--header-text-color); /* Use the new header text color */
2024-09-18 11:17:34 +02:00
width: 100%;
text-decoration: none;
position: fixed;
top: 0;
left: 0;
padding: 10px 20px;
box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
z-index: 1000;
font-family: var(--font-family);
}
header li {
display: inline-block;
margin: 0 15px;
}
header img {
height: 2em;
vertical-align: middle;
}
header a,
header li button {
2024-09-23 11:55:58 +02:00
color: var(--header-text-color); /* Use the new header text color */
2024-09-18 11:17:34 +02:00
text-decoration: none;
transition: color 0.3s;
border: none;
background-color: transparent;
font-size: 1em;
}
header a:hover,
header li button:hover {
2024-09-23 11:55:58 +02:00
color: var(--input-button-color); /* Keep the hover color */
2024-09-18 11:17:34 +02:00
}