mirror of
https://gitlab.kit.edu/uskyk/typicalc.git
synced 2024-11-10 03:10:44 +00:00
45 lines
664 B
CSS
45 lines
664 B
CSS
#header {
|
|
height: 100%;
|
|
min-width: 100%;
|
|
align-items: center;
|
|
overflow-x: auto;
|
|
overflow-y: hidden;
|
|
padding: 0.25em;
|
|
}
|
|
|
|
#view-title {
|
|
font-size: var(--lumo-font-size-l);
|
|
cursor: pointer;
|
|
align-self: center;
|
|
margin: 0 47% 0.5% 0;
|
|
}
|
|
|
|
#view-title a {
|
|
color: var(--lumo-header-text-color);
|
|
}
|
|
|
|
#input-bar {
|
|
width: 75%;
|
|
/* require a larger width on small screens! */
|
|
min-width: min(100%, 1100px);
|
|
flex-grow: 1;
|
|
align-items: flex-end;
|
|
padding: 0 1em;
|
|
margin-top: -0.5em;
|
|
justify-content: end;
|
|
}
|
|
|
|
#help-icon {
|
|
color: white;
|
|
align-self: center;
|
|
}
|
|
|
|
#top-line {
|
|
width: 100%;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
#language-select {
|
|
margin-right: auto;
|
|
}
|