149 lines
2.7 KiB
SCSS
149 lines
2.7 KiB
SCSS
$headerHeight: 3.5em;
|
|
|
|
:host {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: space-between;
|
|
background-color: #3f51b5;
|
|
color: white;
|
|
position: relative;
|
|
height: $headerHeight;
|
|
box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12);
|
|
|
|
div {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
position: relative;
|
|
height: $headerHeight;
|
|
|
|
&.left {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
align-items: center;
|
|
gap: 1em;
|
|
padding: 0 1em;
|
|
z-index: 2;
|
|
|
|
a {
|
|
display: flex;
|
|
flex-direction: row;
|
|
justify-content: center;
|
|
align-items: center;
|
|
color: white;
|
|
text-decoration: none;
|
|
gap: .5em;
|
|
|
|
img {
|
|
$imageSize: 2em;
|
|
width: $imageSize;
|
|
height: $imageSize;
|
|
}
|
|
|
|
.title {
|
|
font-size: 1.5em;
|
|
display: none;
|
|
|
|
@media screen and (min-width: 600px) {
|
|
display: block;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
&.middle {
|
|
flex: 1;
|
|
$borderRadiusValue: 10em;
|
|
position: relative;
|
|
transition: max-width .2s ease-in-out;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
z-index: 1;
|
|
|
|
app-publications-search-bar {
|
|
width: 100%;
|
|
max-width: 12em;
|
|
|
|
@media screen and (min-width: 435px) {
|
|
max-width: 16em;
|
|
}
|
|
|
|
@media screen and (min-width: 500px) {
|
|
max-width: 20em;
|
|
}
|
|
|
|
@media screen and (min-width: 700px) {
|
|
max-width: 24em;
|
|
}
|
|
|
|
@media screen and (min-width: 800px) {
|
|
max-width: 32em;
|
|
}
|
|
|
|
@media screen and (min-width: 900px) {
|
|
max-width: 38em;
|
|
}
|
|
|
|
@media screen and (min-width: 1000px) {
|
|
max-width: 45em;
|
|
}
|
|
|
|
@media screen and (min-width: 1100px) {
|
|
max-width: 50em;
|
|
}
|
|
}
|
|
}
|
|
|
|
&.right {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
z-index: 2;
|
|
margin-right: .5em;
|
|
|
|
a, button {
|
|
margin: .5em;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
app-side-menu {
|
|
height: 100%;
|
|
}
|
|
|
|
.authenticated-user-menu {
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 0.2em 0;
|
|
|
|
a {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
text-decoration: none;
|
|
background-color: white;
|
|
color: black;
|
|
padding: 1em;
|
|
gap: .5em;
|
|
transition: background-color .2s ease-in-out, color .2s ease-in-out;
|
|
|
|
&:hover {
|
|
background-color: #5c6bc0;
|
|
color: white;
|
|
}
|
|
|
|
&.disconnection {
|
|
color: #D50000;
|
|
|
|
&:hover {
|
|
background-color: #E53935;
|
|
color: white;
|
|
}
|
|
}
|
|
}
|
|
}
|