sub-manager-frontend/src/styles/PageHeader.css

49 lines
775 B
CSS
Raw Normal View History

2023-09-13 09:50:57 +00:00
#page-header img {
width: 5rem;
2023-09-12 14:27:51 +00:00
height: 5rem;
2023-09-13 09:50:57 +00:00
margin: 1rem;
}
#page-header h1 {
2023-09-12 14:27:51 +00:00
display: inline;
2023-09-13 09:50:57 +00:00
}
#page-header form {
padding: 0;
background-color: transparent;
box-shadow: none;
display:inline;
2023-09-12 14:27:51 +00:00
}
2023-09-13 09:50:57 +00:00
#page-header {
display: flex;
width: 100%;
justify-content: space-between;
align-items: center;
}
#icon-container a{
padding:0;
}
2023-09-13 12:26:38 +00:00
#h-container{
display: flex;
flex-direction: column;
align-content:center;
}
#page-header h2{
display:block;
max-width: fit-content;
}
2023-09-13 09:50:57 +00:00
#page-header h1{
2023-09-13 13:53:00 +00:00
line-height: 1.4em;
2023-09-13 12:26:38 +00:00
display:block;
2023-09-13 09:50:57 +00:00
font-size:6rem;
text-shadow: var(--text-shadow-light);
margin-right: 5rem;
2023-09-13 12:26:38 +00:00
max-width:20ch;
overflow:hidden;
text-overflow:ellipsis;
white-space: nowrap;
2023-09-12 14:27:51 +00:00
}