96 lines
1.2 KiB
SCSS
96 lines
1.2 KiB
SCSS
|
|
|
|
body, html
|
|
{
|
|
width: 100%;
|
|
margin: 0;
|
|
padding: 0;
|
|
font-size: 16px;
|
|
-webkit-font-smoothing: antialiased;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
background: var(--color-page);
|
|
}
|
|
|
|
html
|
|
{
|
|
height: 100vh;
|
|
-webkit-text-size-adjust: 100%;
|
|
}
|
|
|
|
body
|
|
{
|
|
height: 100vh;
|
|
background: var(--color-page);
|
|
color: var(--color-text);
|
|
font-size: 16px;
|
|
@extend %font;
|
|
}
|
|
|
|
.clear
|
|
{
|
|
display: block;
|
|
clear: both;
|
|
float: none;
|
|
}
|
|
|
|
.app
|
|
{
|
|
height: 100vh;
|
|
display: grid;
|
|
grid-template-columns: auto 1fr;
|
|
justify-content: stretch;
|
|
grid-gap: 3px;
|
|
}
|
|
|
|
.theme-rounded .app
|
|
{
|
|
grid-gap: 0;
|
|
}
|
|
|
|
.app-main
|
|
{
|
|
overflow-y: auto;
|
|
}
|
|
|
|
.fade-enter-active, .fade-leave-active
|
|
{
|
|
transition: opacity .5s;
|
|
}
|
|
|
|
.fade-enter, .fade-leave-to
|
|
{
|
|
opacity: 0;
|
|
}
|
|
|
|
|
|
.ui-split
|
|
{
|
|
display: grid;
|
|
grid-template-columns: 1fr 1fr;
|
|
gap: var(--padding);
|
|
align-items: stretch;
|
|
justify-content: stretch;
|
|
|
|
& + .ui-split
|
|
{
|
|
margin-top: 50px;
|
|
}
|
|
|
|
.ui-property + .ui-property
|
|
{
|
|
margin-top: 0;
|
|
padding-top: 0;
|
|
}
|
|
}
|
|
|
|
.ui-split-three
|
|
{
|
|
@extend .ui-split;
|
|
grid-template-columns: 1fr 1fr 1fr;
|
|
}
|
|
|
|
.ui-split-four
|
|
{
|
|
@extend .ui-split;
|
|
grid-template-columns: 1fr 1fr 1fr 1fr;
|
|
} |