forked from Bunteshaus/bunteshaus.de
35 lines
586 B
CSS
35 lines
586 B
CSS
#headerinner {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
flex-direction: row;
|
|
flex-wrap: wrap;
|
|
background-color: #741e94;
|
|
padding: .2rem;
|
|
padding-right: .7rem;
|
|
}
|
|
|
|
#headerinner a {
|
|
margin-left: .8rem;
|
|
margin-top: .5rem;
|
|
}
|
|
details {
|
|
margin-top: 0;
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
summary {
|
|
background-color: var(--background-alt);
|
|
padding-bottom: .2rem;
|
|
padding-top: .2rem;
|
|
list-style: none;
|
|
text-align: right;
|
|
}
|
|
|
|
.sticky {
|
|
position: fixed;
|
|
width: 100%;
|
|
max-width: 1024px;
|
|
background-color: var(--background-alt);
|
|
}
|