mirror of
https://github.com/OliveTin/OliveTin
synced 2026-05-04 05:00:36 +00:00
65 lines
917 B
CSS
65 lines
917 B
CSS
@layer components, karma, theme;
|
|
|
|
header {
|
|
position: fixed;
|
|
width: 100%;
|
|
z-index: 5;
|
|
}
|
|
|
|
aside {
|
|
padding-top: 4em;
|
|
z-index: 3; /* Make sure the sidebar is on top of the terminal */
|
|
}
|
|
|
|
main {
|
|
padding-top: 4em;
|
|
}
|
|
|
|
dialog {
|
|
border-radius: 1em;
|
|
}
|
|
|
|
section {
|
|
padding: 0;
|
|
}
|
|
|
|
aside .flex-row {
|
|
padding-left: 1em;
|
|
padding-right: .5em;
|
|
}
|
|
|
|
#sidebar-toggler-button {
|
|
margin-right: .5em;
|
|
}
|
|
|
|
div.buttons button svg {
|
|
vertical-align: middle;
|
|
}
|
|
|
|
section.small {
|
|
border-radius: .4em;
|
|
}
|
|
|
|
.sm-side-icons .action-button button {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
}
|
|
|
|
.sm-imageicons-fullwidth .action-button button .icon img {
|
|
width: 100%;
|
|
}
|
|
|
|
.sm-transparent-header header {
|
|
background-color: transparent;
|
|
box-shadow: none;
|
|
border-color: transparent;
|
|
}
|
|
|
|
.sm-transparent-header #sidebar-button {
|
|
border-color: transparent;
|
|
}
|
|
|
|
.sm-transparent-footer footer span {
|
|
background-color: transparent;
|
|
} |