interstellar_ai/app/styles/header.css

60 lines
1.1 KiB
CSS
Raw Normal View History

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;
align-items: center;
2024-09-25 11:40:17 +02:00
margin: 1.5vh 0;
2024-09-18 11:17:34 +02:00
}
2024-09-24 14:54:39 +02:00
.hamburger{
display: none;
}
2024-09-25 11:40:17 +02:00
.hamburger.open:nth-child(1)
.nav-links{
position: absolute;
display: flex;
gap: 15px;
width: 25vw;
height: 5vh;
}
.nav-btn{
background-color: transparent;
border: none;
}
.header-logo{
margin:auto;
width: 250px;
height: 5vh;
background-image: url(../../public/img/logo.png);
background-position: center;
background-repeat: no-repeat;
background-size: contain;
background-color: transparent;
border: none;
}
.login-button .header-login-button{
position: absolute;
top: 2.5vh;
right: 1vw;
justify-self: flex-end;
2024-09-25 11:22:59 +02:00
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
}