121 lines
1.4 KiB
SCSS
121 lines
1.4 KiB
SCSS
$main-color: #00D4FF;
|
|
$background-color: #F5F5F5;
|
|
$font-main-color: #4D4D4D;
|
|
$font-secondary-color: #9E9E9E;
|
|
|
|
.body {
|
|
color: $font-main-color;
|
|
user-select: none;
|
|
min-width: 900px;
|
|
min-height: 400px;
|
|
}
|
|
|
|
.fill {
|
|
height: 100%;
|
|
width: 100%;
|
|
}
|
|
|
|
.fill-with {
|
|
width: 100%;
|
|
}
|
|
|
|
.fill-height {
|
|
height: 100%;
|
|
}
|
|
|
|
.background-white {
|
|
background-color: white;
|
|
}
|
|
|
|
.center-box {
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
}
|
|
|
|
.vertical-center-box {
|
|
display: flex;
|
|
align-items: center;
|
|
}
|
|
|
|
.horizontal-center-box {
|
|
display: flex;
|
|
justify-content: center;
|
|
}
|
|
|
|
.icon-size-xs {
|
|
width: 16px;
|
|
height: 16px;
|
|
|
|
> use {
|
|
width: 16px;
|
|
height: 16px;
|
|
}
|
|
}
|
|
|
|
.icon-size-sm {
|
|
width: 20px;
|
|
height: 20px;
|
|
|
|
> use {
|
|
width: 20px;
|
|
height: 20px;
|
|
}
|
|
}
|
|
|
|
.icon-size-md {
|
|
width: 24px;
|
|
height: 24px;
|
|
|
|
> use {
|
|
width: 24px;
|
|
height: 24px;
|
|
}
|
|
}
|
|
|
|
.icon-size-lg {
|
|
width: 32px;
|
|
height: 32px;
|
|
|
|
> use {
|
|
|
|
width: 32px;
|
|
height: 32px;
|
|
}
|
|
}
|
|
|
|
.icon-size-xl {
|
|
width: 64px;
|
|
height: 64px;
|
|
|
|
> use {
|
|
width: 64px;
|
|
height: 64px;
|
|
}
|
|
}
|
|
|
|
.icon-size-menu {
|
|
width: 23px;
|
|
height: 23px;
|
|
|
|
> use {
|
|
width: 23px;
|
|
height: 23px;
|
|
}
|
|
}
|
|
|
|
#loading-mask {
|
|
position: absolute;
|
|
display: flex;
|
|
justify-content: center;
|
|
align-items: center;
|
|
width: 100%;
|
|
height: 100%;
|
|
z-index: 100;
|
|
background-color: rgba(200, 200, 200, 0.2);
|
|
}
|
|
|
|
#fit-fullscreen {
|
|
width: 100vw;
|
|
height: 100vh;
|
|
} |