1
0
This repository has been archived on 2026-06-27. You can view files and clone it. You cannot open issues or pull requests or push a commit.
Files
MSE-PI-E2EEDA-Plein-de-eeee…/ui/src/app/components/header/header.component.scss
2026-04-15 19:51:44 +02:00

42 lines
610 B
SCSS

header {
background: #00bcd4;
color: white;
box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}
.header-content {
max-width: 1200px;
margin: 0 auto;
padding: 16px 24px;
display: flex;
justify-content: space-between;
align-items: center;
}
h1 {
margin: 0;
font-size: 24px;
cursor: pointer;
&:hover {
opacity: 0.9;
}
}
nav a {
color: white;
text-decoration: none;
margin-left: 24px;
padding: 8px 16px;
border-radius: 4px;
transition: background 0.3s;
&:hover {
background: rgba(255, 255, 255, 0.1);
}
&.active {
background: rgba(255, 255, 255, 0.2);
}
}