mytril
Version:
Mytril Svelte library component for rapidly building modern websites based on Svelte and Sveltekit
41 lines (34 loc) • 691 B
CSS
.myt-system-bar {
--c: var(--myt-system-bar-c);
--bg: var(--myt-system-bar-bg);
font-size: 0.75rem;
}
.myt-system-bar {
align-items: center;
display: flex;
flex: 1 1 auto;
height: 1.5rem;
justify-content: flex-end;
max-width: 100%;
padding-inline: 0.5rem;
position: relative;
text-align: end;
width: 100%;
color: var(--c);
background-color: var(--bg);
transition:
color 0.5s,
background-color 0.5s;
}
.myt-system-bar.myt-system-bar--window {
height: 2rem;
}
.myt-system-bar.myt-system-bar--absolute {
position: absolute;
}
.myt-system-bar.myt-system-bar--fixed {
position: fixed;
}
.myt-system-bar:not(.myt-system-bar--absolute) {
padding-inline-end: 0.5rem;
}