elektrofoni/style.css

62 lines
872 B
CSS

:root {
--background-color: #abcdef;
--text-color: #123456;
}
body {
background-color: var(--background-color);
color: var(--text-color);
overflow: hidden;
}
main {
margin: 10px;
overflow: hidden;
}
#authed-view-wrapper {
height: calc(100vh - 2 * 10px);
overflow: hidden;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: stretch;
gap: 10px;
}
#authed-view-library {
flex: 1 1;
overflow-y: auto;
}
#player {
}
#search-positioner {
position: relative;
}
#search-bar {
position: absolute;
transform: translateY(-200%);
width: 100%;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: stretch;
gap: 10px;
}
#search-bar button {
justify-self: flex-end;
}
#search-bar-input-wrapper {
flex: 1 1;
}
#search-bar-input-wrapper input {
width: 100%;
}