2024-09-25 11:22:59 +02:00
|
|
|
header{
|
|
|
|
position: absolute;
|
|
|
|
padding: 0 20px;
|
2024-09-18 11:17:34 +02:00
|
|
|
top: 0;
|
|
|
|
left: 0;
|
2024-09-25 11:22:59 +02:00
|
|
|
width: 100%;
|
|
|
|
height: 10vh;
|
2024-09-24 14:54:39 +02:00
|
|
|
display: flex;
|
|
|
|
justify-content: space-between;
|
|
|
|
align-items: center;
|
2024-09-18 11:17:34 +02:00
|
|
|
}
|
|
|
|
|
2024-09-24 14:54:39 +02:00
|
|
|
.hamburger{
|
|
|
|
display: none;
|
|
|
|
}
|
|
|
|
|
2024-09-25 11:22:59 +02:00
|
|
|
.login-button button{
|
|
|
|
padding: 10px 20px;
|
|
|
|
background-color: var(--input-button-color);
|
|
|
|
color: var(--text-color);
|
|
|
|
border: none;
|
|
|
|
border-radius: 5px;
|
|
|
|
cursor: pointer;
|
|
|
|
transition: background-color 0.3s;
|
2024-09-24 14:54:39 +02:00
|
|
|
}
|
|
|
|
|
2024-09-25 11:22:59 +02:00
|
|
|
.login-button button:hover {
|
|
|
|
background-color: var(--input-button-hover-color);
|
2024-09-24 14:54:39 +02:00
|
|
|
}
|