mirror of
https://github.com/RyanGreenup/cadmus.git
synced 2025-08-07 14:46:39 +02:00
6238 lines
174 KiB
CSS
6238 lines
174 KiB
CSS
@-webkit-keyframes a {
|
|
0%,
|
|
to {
|
|
-webkit-transform: translateX(0);
|
|
transform: translateX(0);
|
|
-webkit-transform-origin: 50% 50%;
|
|
transform-origin: 50% 50%
|
|
}
|
|
15% {
|
|
-webkit-transform: translateX(-50%) rotate(-6deg);
|
|
transform: translateX(-50%) rotate(-6deg)
|
|
}
|
|
30% {
|
|
-webkit-transform: translateX(25%) rotate(6deg);
|
|
transform: translateX(25%) rotate(6deg)
|
|
}
|
|
45% {
|
|
-webkit-transform: translateX(-25%) rotate(-3.6deg);
|
|
transform: translateX(-25%) rotate(-3.6deg)
|
|
}
|
|
60% {
|
|
-webkit-transform: translateX(15%) rotate(2.4deg);
|
|
transform: translateX(15%) rotate(2.4deg)
|
|
}
|
|
75% {
|
|
-webkit-transform: translateX(-10%) rotate(-1.2deg);
|
|
transform: translateX(-10%) rotate(-1.2deg)
|
|
}
|
|
}
|
|
|
|
@keyframes a {
|
|
0%,
|
|
to {
|
|
-webkit-transform: translateX(0);
|
|
transform: translateX(0);
|
|
-webkit-transform-origin: 50% 50%;
|
|
transform-origin: 50% 50%
|
|
}
|
|
15% {
|
|
-webkit-transform: translateX(-50%) rotate(-6deg);
|
|
transform: translateX(-50%) rotate(-6deg)
|
|
}
|
|
30% {
|
|
-webkit-transform: translateX(25%) rotate(6deg);
|
|
transform: translateX(25%) rotate(6deg)
|
|
}
|
|
45% {
|
|
-webkit-transform: translateX(-25%) rotate(-3.6deg);
|
|
transform: translateX(-25%) rotate(-3.6deg)
|
|
}
|
|
60% {
|
|
-webkit-transform: translateX(15%) rotate(2.4deg);
|
|
transform: translateX(15%) rotate(2.4deg)
|
|
}
|
|
75% {
|
|
-webkit-transform: translateX(-10%) rotate(-1.2deg);
|
|
transform: translateX(-10%) rotate(-1.2deg)
|
|
}
|
|
}
|
|
|
|
.shown {
|
|
display: -webkit-flex!important;
|
|
display: -ms-flexbox!important;
|
|
display: flex!important
|
|
}
|
|
|
|
.hidden,
|
|
[hidden] {
|
|
display: none!important
|
|
}
|
|
|
|
.content-start {
|
|
-webkit-justify-content: flex-start!important;
|
|
-ms-flex-pack: start!important;
|
|
justify-content: flex-start!important
|
|
}
|
|
|
|
.content-center {
|
|
-webkit-justify-content: center!important;
|
|
-ms-flex-pack: center!important;
|
|
justify-content: center!important
|
|
}
|
|
|
|
.content-end {
|
|
-webkit-justify-content: flex-end!important;
|
|
-ms-flex-pack: end!important;
|
|
justify-content: flex-end!important
|
|
}
|
|
|
|
.grow {
|
|
-webkit-flex-grow: 1!important;
|
|
-ms-flex-positive: 1!important;
|
|
flex-grow: 1!important
|
|
}
|
|
|
|
.no-grow {
|
|
-webkit-flex-grow: 0!important;
|
|
-ms-flex-positive: 0!important;
|
|
flex-grow: 0!important
|
|
}
|
|
|
|
.items-start {
|
|
-webkit-align-items: flex-start!important;
|
|
-ms-flex-align: start!important;
|
|
align-items: flex-start!important
|
|
}
|
|
|
|
.items-center {
|
|
-webkit-align-items: center!important;
|
|
-ms-flex-align: center!important;
|
|
align-items: center!important
|
|
}
|
|
|
|
.items-end {
|
|
-webkit-align-items: flex-end!important;
|
|
-ms-flex-align: end!important;
|
|
align-items: flex-end!important
|
|
}
|
|
|
|
.shrink {
|
|
-webkit-flex-shrink: 1!important;
|
|
-ms-flex-negative: 1!important;
|
|
flex-shrink: 1!important
|
|
}
|
|
|
|
.no-shrink {
|
|
-webkit-flex-shrink: 0!important;
|
|
-ms-flex-negative: 0!important;
|
|
flex-shrink: 0!important
|
|
}
|
|
|
|
.overflow-visible {
|
|
overflow: visible!important
|
|
}
|
|
|
|
.overflow-hidden {
|
|
overflow: hidden!important
|
|
}
|
|
|
|
.overflow-scroll {
|
|
overflow: scroll!important
|
|
}
|
|
|
|
.overflow-x-visible {
|
|
overflow-x: visible!important
|
|
}
|
|
|
|
.overflow-x-hidden {
|
|
overflow-x: hidden!important
|
|
}
|
|
|
|
.overflow-x-scroll {
|
|
overflow-x: scroll!important
|
|
}
|
|
|
|
.overflow-y-visible {
|
|
overflow-y: visible!important
|
|
}
|
|
|
|
.overflow-y-hidden {
|
|
overflow-y: hidden!important
|
|
}
|
|
|
|
.overflow-y-scroll {
|
|
overflow-y: scroll!important
|
|
}
|
|
|
|
.rotate-left {
|
|
-webkit-transform: rotate(-90deg)!important;
|
|
transform: rotate(-90deg)!important
|
|
}
|
|
|
|
.rotate-right {
|
|
-webkit-transform: rotate(90deg)!important;
|
|
transform: rotate(90deg)!important
|
|
}
|
|
|
|
.rotating {
|
|
-webkit-animation: rotate .9s linear infinite!important;
|
|
animation: rotate .9s linear infinite!important
|
|
}
|
|
|
|
.rotate--90 {
|
|
-webkit-transform: rotate(-90deg);
|
|
transform: rotate(-90deg)
|
|
}
|
|
|
|
.rotate-180 {
|
|
-webkit-transform: rotate(180deg);
|
|
transform: rotate(180deg)
|
|
}
|
|
|
|
.screen-reader-only {
|
|
position: absolute;
|
|
width: 1px;
|
|
height: 1px;
|
|
padding: 0;
|
|
margin: -1px;
|
|
overflow: hidden;
|
|
clip: rect(0, 0, 0, 0);
|
|
border: 0
|
|
}
|
|
|
|
.screen-reader-only-focusable:active,
|
|
.screen-reader-only-focusable:focus {
|
|
position: static;
|
|
width: auto;
|
|
height: auto;
|
|
margin: 0;
|
|
overflow: visible;
|
|
clip: auto
|
|
}
|
|
|
|
.text-left {
|
|
text-align: left!important
|
|
}
|
|
|
|
.text-center {
|
|
text-align: center!important
|
|
}
|
|
|
|
.text-right {
|
|
text-align: right!important
|
|
}
|
|
|
|
.text-justify {
|
|
text-align: justify!important
|
|
}
|
|
|
|
.text-no-wrap,
|
|
.text-nowrap {
|
|
white-space: nowrap!important
|
|
}
|
|
|
|
.text-truncate {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
max-width: 100%
|
|
}
|
|
|
|
.text-hide {
|
|
font: 0/0 svelto;
|
|
color: transparent;
|
|
text-shadow: none;
|
|
background-color: transparent;
|
|
border: 0
|
|
}
|
|
|
|
.text-lowercase {
|
|
text-transform: lowercase!important
|
|
}
|
|
|
|
.text-uppercase {
|
|
text-transform: uppercase!important
|
|
}
|
|
|
|
.text-capitalize {
|
|
text-transform: capitalize!important
|
|
}
|
|
|
|
.visible {
|
|
visibility: visible!important
|
|
}
|
|
|
|
.invisible {
|
|
visibility: hidden!important
|
|
}
|
|
|
|
.no-animations,
|
|
.no-animations * {
|
|
transition: none!important
|
|
}
|
|
|
|
.multiple {
|
|
position: relative;
|
|
display: -webkit-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-flex-wrap: wrap;
|
|
-ms-flex-wrap: wrap;
|
|
flex-wrap: wrap;
|
|
-webkit-align-items: flex-start;
|
|
-ms-flex-align: start;
|
|
align-items: flex-start
|
|
}
|
|
|
|
.multiple:last-child {
|
|
margin-bottom: -.625rem
|
|
}
|
|
|
|
.multiple>.multiple:last-child,
|
|
.tagbox-tags>.multiple:last-child {
|
|
margin-bottom: 0
|
|
}
|
|
|
|
.multiple>:not(.multiple) {
|
|
margin-bottom: .625rem
|
|
}
|
|
|
|
.multiple:not(.no-wrap):not(.vertical):not(.joined) {
|
|
margin-right: -.3125rem;
|
|
margin-left: -.3125rem
|
|
}
|
|
|
|
.multiple:not(.no-wrap):not(.vertical):not(.joined)>:not(.multiple) {
|
|
margin-right: .3125rem;
|
|
margin-left: .3125rem
|
|
}
|
|
|
|
.multiple:not(.no-wrap):not(.vertical):not(.joined)>.multiple:not(.no-wrap):not(.vertical):not(.joined) {
|
|
margin-right: 0;
|
|
margin-left: 0
|
|
}
|
|
|
|
.multiple:not(.no-wrap):not(.vertical):not(.joined)>.multiple.joined,
|
|
.multiple:not(.no-wrap):not(.vertical):not(.joined)>.multiple.no-wrap,
|
|
.multiple:not(.no-wrap):not(.vertical):not(.joined)>.multiple.vertical {
|
|
margin-right: .3125rem;
|
|
margin-left: .3125rem
|
|
}
|
|
|
|
.multiple.no-wrap:not(.vertical):not(.joined)>:not(.multiple):not(:first-child) {
|
|
margin-left: .3125rem
|
|
}
|
|
|
|
.multiple.no-wrap:not(.vertical):not(.joined)>:not(.multiple):not(:last-child) {
|
|
margin-right: .3125rem
|
|
}
|
|
|
|
.multiple.no-wrap:not(.vertical):not(.joined)>.multiple:not(.no-wrap):not(.vertical):not(.joined):not(:first-child) {
|
|
margin-left: 0
|
|
}
|
|
|
|
.multiple.no-wrap:not(.vertical):not(.joined)>.multiple:not(.no-wrap):not(.vertical):not(.joined):not(:last-child) {
|
|
margin-right: 0
|
|
}
|
|
|
|
.multiple.no-wrap:not(.vertical):not(.joined)>.multiple.joined:not(:first-child),
|
|
.multiple.no-wrap:not(.vertical):not(.joined)>.multiple.no-wrap:not(:first-child),
|
|
.multiple.no-wrap:not(.vertical):not(.joined)>.multiple.vertical:not(:first-child) {
|
|
margin-left: .3125rem
|
|
}
|
|
|
|
.multiple.no-wrap:not(.vertical):not(.joined)>.multiple.joined:not(:last-child),
|
|
.multiple.no-wrap:not(.vertical):not(.joined)>.multiple.no-wrap:not(:last-child),
|
|
.multiple.no-wrap:not(.vertical):not(.joined)>.multiple.vertical:not(:last-child) {
|
|
margin-right: .3125rem
|
|
}
|
|
|
|
.multiple.vertical>.multiple:not(.no-wrap):not(.vertical):not(.joined) {
|
|
margin-right: 0;
|
|
margin-left: 0
|
|
}
|
|
|
|
.multiple.vertical>.multiple:not(.no-wrap):not(.vertical):not(.joined)>:not(.multiple):first-child {
|
|
margin-left: 0
|
|
}
|
|
|
|
.multiple.vertical>.multiple:not(.no-wrap):not(.vertical):not(.joined)>:not(.multiple):last-child {
|
|
margin-right: 0
|
|
}
|
|
|
|
.multiple.vertical>.multiple:not(.no-wrap):not(.vertical):not(.joined)>.multiple:not(.no-wrap):not(.vertical):not(.joined):first-child {
|
|
margin-left: -.3125rem
|
|
}
|
|
|
|
.multiple.vertical>.multiple:not(.no-wrap):not(.vertical):not(.joined)>.multiple:not(.no-wrap):not(.vertical):not(.joined):last-child {
|
|
margin-right: -.3125rem
|
|
}
|
|
|
|
.multiple.vertical>.multiple:not(.no-wrap):not(.vertical):not(.joined)>.multiple.joined:first-child,
|
|
.multiple.vertical>.multiple:not(.no-wrap):not(.vertical):not(.joined)>.multiple.no-wrap:first-child,
|
|
.multiple.vertical>.multiple:not(.no-wrap):not(.vertical):not(.joined)>.multiple.vertical:first-child {
|
|
margin-left: 0
|
|
}
|
|
|
|
.multiple.vertical>.multiple:not(.no-wrap):not(.vertical):not(.joined)>.multiple.joined:not(:last-child),
|
|
.multiple.vertical>.multiple:not(.no-wrap):not(.vertical):not(.joined)>.multiple.no-wrap:not(:last-child),
|
|
.multiple.vertical>.multiple:not(.no-wrap):not(.vertical):not(.joined)>.multiple.vertical:not(:last-child) {
|
|
margin-right: .3125rem
|
|
}
|
|
|
|
.multiple.vertical>.multiple:not(.no-wrap):not(.vertical):not(.joined)>.multiple.joined:not(:first-child),
|
|
.multiple.vertical>.multiple:not(.no-wrap):not(.vertical):not(.joined)>.multiple.no-wrap:not(:first-child),
|
|
.multiple.vertical>.multiple:not(.no-wrap):not(.vertical):not(.joined)>.multiple.vertical:not(:first-child) {
|
|
margin-left: .3125rem
|
|
}
|
|
|
|
.multiple.vertical>.multiple:not(.no-wrap):not(.vertical):not(.joined)>.multiple.joined:last-child,
|
|
.multiple.vertical>.multiple:not(.no-wrap):not(.vertical):not(.joined)>.multiple.no-wrap:last-child,
|
|
.multiple.vertical>.multiple:not(.no-wrap):not(.vertical):not(.joined)>.multiple.vertical:last-child {
|
|
margin-right: 0
|
|
}
|
|
|
|
.multiple.vertical {
|
|
-webkit-flex-direction: column;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column
|
|
}
|
|
|
|
.multiple.center,
|
|
.multiple.center-x:not(.vertical),
|
|
.multiple.center-y.vertical {
|
|
-webkit-justify-content: center;
|
|
-ms-flex-pack: center;
|
|
justify-content: center
|
|
}
|
|
|
|
.multiple.center,
|
|
.multiple.center-x.vertical,
|
|
.multiple.center-y:not(.vertical) {
|
|
-webkit-align-items: center;
|
|
-ms-flex-align: center;
|
|
align-items: center
|
|
}
|
|
|
|
.multiple.no-wrap {
|
|
-webkit-flex-wrap: nowrap;
|
|
-ms-flex-wrap: nowrap;
|
|
flex-wrap: nowrap
|
|
}
|
|
|
|
.multiple.equal:not(.vertical)>* {
|
|
-webkit-flex: 1 0 0%;
|
|
-ms-flex: 1 0 0%;
|
|
flex: 1 0 0%
|
|
}
|
|
|
|
.multiple.equal.vertical>* {
|
|
width: 100%
|
|
}
|
|
|
|
.multiple.joined {
|
|
-webkit-flex-wrap: nowrap;
|
|
-ms-flex-wrap: nowrap;
|
|
flex-wrap: nowrap;
|
|
-webkit-align-items: stretch;
|
|
-ms-flex-align: stretch;
|
|
align-items: stretch
|
|
}
|
|
|
|
.multiple.joined>.multiple {
|
|
margin-right: 0;
|
|
margin-left: 0
|
|
}
|
|
|
|
.multiple.joined:not(.vertical)>.multiple.joined.vertical:not(:last-child)>.multiple.joined>:not(.multiple),
|
|
.multiple.joined:not(.vertical)>.multiple.joined.vertical:not(:last-child)>:not(.multiple),
|
|
.multiple.joined:not(.vertical)>.multiple:not(:last-child)>:last-child,
|
|
.multiple.joined:not(.vertical)>:not(:last-child) {
|
|
border-bottom-right-radius: 0;
|
|
border-top-right-radius: 0;
|
|
margin-right: 0;
|
|
border-right-width: 0
|
|
}
|
|
|
|
.multiple.joined:not(.vertical)>.multiple.joined.vertical:not(:first-child)>.multiple.joined>:not(.multiple),
|
|
.multiple.joined:not(.vertical)>.multiple.joined.vertical:not(:first-child)>:not(.multiple),
|
|
.multiple.joined:not(.vertical)>.multiple:not(:first-child)>:first-child,
|
|
.multiple.joined:not(.vertical)>:not(:first-child) {
|
|
border-bottom-left-radius: 0;
|
|
border-top-left-radius: 0;
|
|
margin-left: 0
|
|
}
|
|
|
|
.multiple.joined:not(.vertical).no-separators>.multiple.joined.vertical:not(:first-child)>:not(.multiple),
|
|
.multiple.joined:not(.vertical).no-separators>.multiple:not(:first-child)>:first-child,
|
|
.multiple.joined:not(.vertical).no-separators>:not(:first-child) {
|
|
border-left-width: 0
|
|
}
|
|
|
|
.multiple.joined:not(.vertical).no-separators>.multiple:not(:last-child)>:last-child {
|
|
border-right-width: 0
|
|
}
|
|
|
|
.multiple.joined:not(.vertical).no-separators>.multiple.joined.vertical>:not(.multiple):not(:first-child) {
|
|
border-top-width: 0
|
|
}
|
|
|
|
.multiple.joined:not(.vertical).only-separators>.multiple.joined.vertical:first-child>:not(.multiple),
|
|
.multiple.joined:not(.vertical).only-separators>.multiple:first-child>:first-child,
|
|
.multiple.joined:not(.vertical).only-separators>:first-child {
|
|
border-left-width: 0
|
|
}
|
|
|
|
.multiple.joined:not(.vertical).only-separators>.multiple.joined.vertical:last-child>:not(.multiple),
|
|
.multiple.joined:not(.vertical).only-separators>.multiple:last-child>:last-child,
|
|
.multiple.joined:not(.vertical).only-separators>:last-child {
|
|
border-right-width: 0
|
|
}
|
|
|
|
.multiple.joined:not(.vertical).only-separators>.multiple.joined.vertical>:not(.multiple):first-child {
|
|
border-top-width: 0
|
|
}
|
|
|
|
.multiple.joined:not(.vertical).only-separators>.multiple.joined.vertical>:not(.multiple):last-child {
|
|
border-bottom-width: 0
|
|
}
|
|
|
|
.multiple.joined.vertical>.multiple.joined:not(.vertical):not(:last-child)>.multiple.joined>:not(.multiple),
|
|
.multiple.joined.vertical>.multiple.joined:not(.vertical):not(:last-child)>:not(.multiple),
|
|
.multiple.joined.vertical>.multiple:not(:last-child)>:last-child,
|
|
.multiple.joined.vertical>:not(:last-child) {
|
|
border-bottom-right-radius: 0;
|
|
border-bottom-left-radius: 0;
|
|
margin-bottom: 0;
|
|
border-bottom-width: 0
|
|
}
|
|
|
|
.multiple.joined.vertical>.multiple.joined:not(.vertical):not(:first-child)>.multiple.joined>:not(.multiple),
|
|
.multiple.joined.vertical>.multiple.joined:not(.vertical):not(:first-child)>:not(.multiple),
|
|
.multiple.joined.vertical>.multiple:not(:first-child)>:first-child,
|
|
.multiple.joined.vertical>:not(:first-child) {
|
|
border-top-right-radius: 0;
|
|
border-top-left-radius: 0;
|
|
margin-top: 0
|
|
}
|
|
|
|
.multiple.joined.vertical.no-separators>.multiple.joined:not(.vertical):not(:first-child)>:not(.multiple),
|
|
.multiple.joined.vertical.no-separators>.multiple:not(:first-child)>:first-child,
|
|
.multiple.joined.vertical.no-separators>:not(:first-child) {
|
|
border-top-width: 0
|
|
}
|
|
|
|
.multiple.joined.vertical.no-separators>.multiple:not(:last-child)>:last-child {
|
|
border-bottom-width: 0
|
|
}
|
|
|
|
.multiple.joined.vertical.no-separators>.multiple.joined:not(.vertical)>:not(.multiple):not(:first-child) {
|
|
border-left-width: 0
|
|
}
|
|
|
|
.multiple.joined.vertical.only-separators>.multiple.joined:not(.vertical):first-child>:not(.multiple),
|
|
.multiple.joined.vertical.only-separators>.multiple:first-child>:first-child,
|
|
.multiple.joined.vertical.only-separators>:first-child {
|
|
border-top-width: 0
|
|
}
|
|
|
|
.multiple.joined.vertical.only-separators>.multiple.joined:not(.vertical):last-child>:not(.multiple),
|
|
.multiple.joined.vertical.only-separators>.multiple:last-child>:last-child,
|
|
.multiple.joined.vertical.only-separators>:last-child {
|
|
border-bottom-width: 0
|
|
}
|
|
|
|
.multiple.joined.vertical.only-separators>.multiple.joined:not(.vertical)>:not(.multiple):first-child {
|
|
border-left-width: 0
|
|
}
|
|
|
|
.multiple.joined.vertical.only-separators>.multiple.joined:not(.vertical)>:not(.multiple):last-child {
|
|
border-right-width: 0
|
|
}
|
|
|
|
.multiple.stretched {
|
|
-webkit-align-items: stretch;
|
|
-ms-flex-align: stretch;
|
|
align-items: stretch
|
|
}
|
|
|
|
.multiple.stretched>* {
|
|
-webkit-flex-grow: 1;
|
|
-ms-flex-positive: 1;
|
|
flex-grow: 1
|
|
}
|
|
|
|
html.no-flexbox.flexbox-tweener .multiple>a,
|
|
html.no-flexbox.flexbox-tweener .multiple>button,
|
|
html.no-flexbox.flexbox-tweener .multiple>span {
|
|
display: inline-block
|
|
}
|
|
|
|
script:last-child {
|
|
font: 0/0 svelto;
|
|
color: transparent;
|
|
text-shadow: none;
|
|
background-color: transparent;
|
|
border: 0;
|
|
display: block;
|
|
margin-top: -.625rem
|
|
}
|
|
|
|
.multiple>script:last-child,
|
|
.tagbox-tags>script:last-child {
|
|
margin-top: 0
|
|
}
|
|
|
|
.layout {
|
|
position: relative;
|
|
display: -webkit-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-align-items: stretch;
|
|
-ms-flex-align: stretch;
|
|
align-items: stretch
|
|
}
|
|
|
|
.layout>* {
|
|
margin-bottom: 0!important
|
|
}
|
|
|
|
.layout>script:last-child {
|
|
display: none!important
|
|
}
|
|
|
|
.layout-content,
|
|
.layout-footer,
|
|
.layout-header {
|
|
border-radius: 0;
|
|
-webkit-flex-shrink: 0;
|
|
-ms-flex-negative: 0;
|
|
flex-shrink: 0
|
|
}
|
|
|
|
.layout-header {
|
|
background-color: #333e45;
|
|
border-color: #101416;
|
|
color: #fff
|
|
}
|
|
|
|
.layout-content {
|
|
padding: .625rem;
|
|
-webkit-flex-grow: 1;
|
|
-ms-flex-positive: 1;
|
|
flex-grow: 1
|
|
}
|
|
|
|
.layout-footer {
|
|
background-color: #333e45;
|
|
border-color: #101416;
|
|
color: #fff
|
|
}
|
|
|
|
.layout {
|
|
height: 100%
|
|
}
|
|
|
|
.layout .layout {
|
|
height: auto
|
|
}
|
|
|
|
.layout .layout:not(:last-child),
|
|
.layout .multiple>.layout:last-child,
|
|
.layout .tagbox-tags>.layout:last-child {
|
|
margin-bottom: .625rem
|
|
}
|
|
|
|
.layout-content {
|
|
height: 0;
|
|
overflow: auto
|
|
}
|
|
|
|
.layout.horizontal {
|
|
-webkit-flex-direction: row;
|
|
-ms-flex-direction: row;
|
|
flex-direction: row;
|
|
overflow: hidden
|
|
}
|
|
|
|
.layout.horizontal>.layout-content {
|
|
overflow: auto;
|
|
-webkit-flex-shrink: 1;
|
|
-ms-flex-negative: 1;
|
|
flex-shrink: 1
|
|
}
|
|
|
|
.layout.vertical,
|
|
.layout:not(.vertical):not(.horizontal) {
|
|
-webkit-flex-direction: column;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column;
|
|
overflow: auto
|
|
}
|
|
|
|
@media not print {
|
|
.layout.vertical>.layout-header.sticky,
|
|
.layout:not(.vertical):not(.horizontal)>.layout-header.sticky {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
left: 0;
|
|
z-index: 1100!important
|
|
}
|
|
.layout.vertical>.layout-header.sticky+.layout-content,
|
|
.layout:not(.vertical):not(.horizontal)>.layout-header.sticky+.layout-content {
|
|
margin-top: 56px
|
|
}
|
|
.layout.vertical .layout.vertical>.layout-header.sticky,
|
|
.layout.vertical .layout:not(.vertical):not(.horizontal)>.layout-header.sticky,
|
|
.layout:not(.vertical):not(.horizontal) .layout.vertical>.layout-header.sticky,
|
|
.layout:not(.vertical):not(.horizontal) .layout:not(.vertical):not(.horizontal)>.layout-header.sticky {
|
|
position: relative;
|
|
position: -webkit-sticky;
|
|
position: sticky;
|
|
z-index: 1099!important
|
|
}
|
|
.layout.vertical .layout.vertical>.layout-header.sticky+.layout-content,
|
|
.layout.vertical .layout:not(.vertical):not(.horizontal)>.layout-header.sticky+.layout-content,
|
|
.layout:not(.vertical):not(.horizontal) .layout.vertical>.layout-header.sticky+.layout-content,
|
|
.layout:not(.vertical):not(.horizontal) .layout:not(.vertical):not(.horizontal)>.layout-header.sticky+.layout-content {
|
|
margin-top: 0
|
|
}
|
|
}
|
|
|
|
* {
|
|
border-color: inherit
|
|
}
|
|
|
|
*,
|
|
:after,
|
|
:before {
|
|
box-sizing: inherit
|
|
}
|
|
|
|
html {
|
|
box-sizing: border-box
|
|
}
|
|
|
|
*,
|
|
:after,
|
|
:before {
|
|
-webkit-flex-shrink: 1;
|
|
-ms-flex-negative: 1;
|
|
flex-shrink: 1
|
|
}
|
|
|
|
:not(html):-webkit-full-screen {
|
|
width: 100%!important;
|
|
height: 100%!important
|
|
}
|
|
|
|
:not(html):-moz-full-screen {
|
|
width: 100%!important;
|
|
height: 100%!important
|
|
}
|
|
|
|
:not(html):-ms-fullscreen {
|
|
width: 100%!important;
|
|
height: 100%!important
|
|
}
|
|
|
|
:not(html):fullscreen {
|
|
width: 100%!important;
|
|
height: 100%!important
|
|
}
|
|
|
|
:focus {
|
|
outline: 0
|
|
}
|
|
|
|
::-webkit-input-placeholder {
|
|
opacity: 1
|
|
}
|
|
|
|
::-moz-placeholder {
|
|
opacity: 1
|
|
}
|
|
|
|
::-ms-input-placeholder {
|
|
opacity: 1
|
|
}
|
|
|
|
::placeholder {
|
|
opacity: 1
|
|
}
|
|
|
|
::-moz-selection {
|
|
background-color: rgba(21, 101, 192, .2);
|
|
text-shadow: none
|
|
}
|
|
|
|
::selection {
|
|
background-color: rgba(21, 101, 192, .2);
|
|
text-shadow: none
|
|
}
|
|
|
|
table {
|
|
border-spacing: 0
|
|
}
|
|
|
|
a,
|
|
area,
|
|
button,
|
|
input,
|
|
label,
|
|
select,
|
|
summary,
|
|
textarea {
|
|
-ms-touch-action: manipulation;
|
|
touch-action: manipulation
|
|
}
|
|
|
|
|
|
/*! normalize.css v5.0.0 | MIT License | github.com/necolas/normalize.css */
|
|
|
|
html {
|
|
font-family: sans-serif;
|
|
line-height: 1.15;
|
|
-ms-text-size-adjust: 100%;
|
|
-webkit-text-size-adjust: 100%
|
|
}
|
|
|
|
body {
|
|
margin: 0
|
|
}
|
|
|
|
article,
|
|
aside,
|
|
footer,
|
|
header,
|
|
nav,
|
|
section {
|
|
display: block
|
|
}
|
|
|
|
h1 {
|
|
font-size: 2em;
|
|
margin: .67em 0
|
|
}
|
|
|
|
figcaption,
|
|
figure,
|
|
main {
|
|
display: block
|
|
}
|
|
|
|
figure {
|
|
margin: 1em 40px
|
|
}
|
|
|
|
hr {
|
|
box-sizing: content-box;
|
|
height: 0;
|
|
overflow: visible
|
|
}
|
|
|
|
pre {
|
|
font-family: monospace, monospace;
|
|
font-size: 1em
|
|
}
|
|
|
|
a {
|
|
background-color: transparent;
|
|
-webkit-text-decoration-skip: objects
|
|
}
|
|
|
|
a:active,
|
|
a:hover {
|
|
outline-width: 0
|
|
}
|
|
|
|
abbr[title] {
|
|
border-bottom: none;
|
|
text-decoration: underline;
|
|
-webkit-text-decoration: underline dotted;
|
|
-moz-text-decoration: underline dotted;
|
|
text-decoration: underline dotted
|
|
}
|
|
|
|
b,
|
|
strong {
|
|
font-weight: inherit;
|
|
font-weight: bolder
|
|
}
|
|
|
|
code,
|
|
kbd,
|
|
samp {
|
|
font-family: monospace, monospace;
|
|
font-size: 1em
|
|
}
|
|
|
|
dfn {
|
|
font-style: italic
|
|
}
|
|
|
|
mark {
|
|
background-color: #ff0;
|
|
color: #000
|
|
}
|
|
|
|
small {
|
|
font-size: 80%
|
|
}
|
|
|
|
sub,
|
|
sup {
|
|
font-size: 75%;
|
|
line-height: 0;
|
|
position: relative;
|
|
vertical-align: baseline
|
|
}
|
|
|
|
sub {
|
|
bottom: -.25em
|
|
}
|
|
|
|
sup {
|
|
top: -.5em
|
|
}
|
|
|
|
audio,
|
|
video {
|
|
display: inline-block
|
|
}
|
|
|
|
audio:not([controls]) {
|
|
display: none;
|
|
height: 0
|
|
}
|
|
|
|
img {
|
|
border-style: none
|
|
}
|
|
|
|
svg:not(:root) {
|
|
overflow: hidden
|
|
}
|
|
|
|
button,
|
|
input,
|
|
optgroup,
|
|
select,
|
|
textarea {
|
|
font-family: sans-serif;
|
|
font-size: 100%;
|
|
line-height: 1.15;
|
|
margin: 0
|
|
}
|
|
|
|
button,
|
|
input {
|
|
overflow: visible
|
|
}
|
|
|
|
button,
|
|
select {
|
|
text-transform: none
|
|
}
|
|
|
|
[type=reset],
|
|
[type=submit],
|
|
button,
|
|
html [type=button] {
|
|
-webkit-appearance: button
|
|
}
|
|
|
|
[type=button]::-moz-focus-inner,
|
|
[type=reset]::-moz-focus-inner,
|
|
[type=submit]::-moz-focus-inner,
|
|
button::-moz-focus-inner {
|
|
border-style: none;
|
|
padding: 0
|
|
}
|
|
|
|
[type=button]:-moz-focusring,
|
|
[type=reset]:-moz-focusring,
|
|
[type=submit]:-moz-focusring,
|
|
button:-moz-focusring {
|
|
outline: 1px dotted ButtonText
|
|
}
|
|
|
|
fieldset {
|
|
border: 1px solid silver;
|
|
margin: 0 2px;
|
|
padding: .35em .625em .75em
|
|
}
|
|
|
|
legend {
|
|
box-sizing: border-box;
|
|
color: inherit;
|
|
display: table;
|
|
max-width: 100%;
|
|
padding: 0;
|
|
white-space: normal
|
|
}
|
|
|
|
progress {
|
|
display: inline-block;
|
|
vertical-align: baseline
|
|
}
|
|
|
|
textarea {
|
|
overflow: auto
|
|
}
|
|
|
|
[type=checkbox],
|
|
[type=radio] {
|
|
box-sizing: border-box;
|
|
padding: 0
|
|
}
|
|
|
|
[type=number]::-webkit-inner-spin-button,
|
|
[type=number]::-webkit-outer-spin-button {
|
|
height: auto
|
|
}
|
|
|
|
[type=search] {
|
|
-webkit-appearance: textfield;
|
|
outline-offset: -2px
|
|
}
|
|
|
|
[type=search]::-webkit-search-cancel-button,
|
|
[type=search]::-webkit-search-decoration {
|
|
-webkit-appearance: none
|
|
}
|
|
|
|
::-webkit-file-upload-button {
|
|
-webkit-appearance: button;
|
|
font: inherit
|
|
}
|
|
|
|
details,
|
|
menu {
|
|
display: block
|
|
}
|
|
|
|
summary {
|
|
display: list-item
|
|
}
|
|
|
|
canvas {
|
|
display: inline-block
|
|
}
|
|
|
|
[hidden],
|
|
template {
|
|
display: none
|
|
}
|
|
|
|
input {
|
|
border: 0;
|
|
-webkit-appearance: none!important;
|
|
-moz-appearance: none!important;
|
|
appearance: none!important;
|
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Arial, sans-serif
|
|
}
|
|
|
|
[type=number] {
|
|
-moz-appearance: textfield!important
|
|
}
|
|
|
|
[type=number]::-webkit-inner-spin-button,
|
|
[type=number]::-webkit-outer-spin-button {
|
|
-webkit-appearance: none
|
|
}
|
|
|
|
[type=file]::-webkit-file-upload-button {
|
|
display: none
|
|
}
|
|
|
|
::-moz-ui-invalid {
|
|
box-shadow: none
|
|
}
|
|
|
|
::-ms-clear {
|
|
display: none
|
|
}
|
|
|
|
textarea {
|
|
border: 0;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Arial, sans-serif
|
|
}
|
|
|
|
html {
|
|
font-size: 16px;
|
|
-webkit-tap-highlight-color: transparent;
|
|
-webkit-touch-callout: none
|
|
}
|
|
|
|
body,
|
|
html {
|
|
height: 100%
|
|
}
|
|
|
|
body {
|
|
font-size: 1rem;
|
|
line-height: 1.375;
|
|
-webkit-user-select: none!important;
|
|
-moz-user-select: none!important;
|
|
-ms-user-select: none!important;
|
|
user-select: none!important
|
|
}
|
|
|
|
body,
|
|
input,
|
|
textarea {
|
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Arial, sans-serif;
|
|
font-size: 16px
|
|
}
|
|
|
|
.button,
|
|
.card,
|
|
.card-block:not(.multiple),
|
|
.card-footer:not(.multiple),
|
|
.card-header:not(.multiple),
|
|
.centerer,
|
|
.container,
|
|
.infobar,
|
|
.label,
|
|
.select,
|
|
.spacer,
|
|
.tagbox,
|
|
.widget,
|
|
address,
|
|
dl,
|
|
fieldset,
|
|
footer,
|
|
form,
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6,
|
|
header,
|
|
i.icon,
|
|
img,
|
|
input,
|
|
label,
|
|
ol,
|
|
p,
|
|
pre,
|
|
textarea,
|
|
ul {
|
|
position: relative;
|
|
margin: 0 0 .625rem
|
|
}
|
|
|
|
.button:last-child,
|
|
.card-block:last-child:not(.multiple),
|
|
.card-footer:last-child:not(.multiple),
|
|
.card-header:last-child:not(.multiple),
|
|
.card:last-child,
|
|
.centerer:last-child,
|
|
.container:last-child,
|
|
.infobar:last-child,
|
|
.label:last-child,
|
|
.select:last-child,
|
|
.spacer:last-child,
|
|
.tagbox:last-child,
|
|
.widget:last-child,
|
|
address:last-child,
|
|
dl:last-child,
|
|
fieldset:last-child,
|
|
footer:last-child,
|
|
form:last-child,
|
|
h1:last-child,
|
|
h2:last-child,
|
|
h3:last-child,
|
|
h4:last-child,
|
|
h5:last-child,
|
|
h6:last-child,
|
|
header:last-child,
|
|
i.icon:last-child,
|
|
img:last-child,
|
|
input:last-child,
|
|
label:last-child,
|
|
ol:last-child,
|
|
p:last-child,
|
|
pre:last-child,
|
|
textarea:last-child,
|
|
ul:last-child {
|
|
margin-bottom: 0
|
|
}
|
|
|
|
.multiple>.button:last-child,
|
|
.multiple>.card-block:last-child:not(.multiple),
|
|
.multiple>.card-footer:last-child:not(.multiple),
|
|
.multiple>.card-header:last-child:not(.multiple),
|
|
.multiple>.card:last-child,
|
|
.multiple>.centerer:last-child,
|
|
.multiple>.container:last-child,
|
|
.multiple>.infobar:last-child,
|
|
.multiple>.label:last-child,
|
|
.multiple>.select:last-child,
|
|
.multiple>.spacer:last-child,
|
|
.multiple>.tagbox:last-child,
|
|
.multiple>.widget:last-child,
|
|
.multiple>address:last-child,
|
|
.multiple>dl:last-child,
|
|
.multiple>fieldset:last-child,
|
|
.multiple>footer:last-child,
|
|
.multiple>form:last-child,
|
|
.multiple>h1:last-child,
|
|
.multiple>h2:last-child,
|
|
.multiple>h3:last-child,
|
|
.multiple>h4:last-child,
|
|
.multiple>h5:last-child,
|
|
.multiple>h6:last-child,
|
|
.multiple>header:last-child,
|
|
.multiple>i.icon:last-child,
|
|
.multiple>img:last-child,
|
|
.multiple>input:last-child,
|
|
.multiple>label:last-child,
|
|
.multiple>ol:last-child,
|
|
.multiple>p:last-child,
|
|
.multiple>pre:last-child,
|
|
.multiple>textarea:last-child,
|
|
.multiple>ul:last-child,
|
|
.tagbox-tags>.button:last-child,
|
|
.tagbox-tags>.card-block:last-child:not(.multiple),
|
|
.tagbox-tags>.card-footer:last-child:not(.multiple),
|
|
.tagbox-tags>.card-header:last-child:not(.multiple),
|
|
.tagbox-tags>.card:last-child,
|
|
.tagbox-tags>.centerer:last-child,
|
|
.tagbox-tags>.container:last-child,
|
|
.tagbox-tags>.infobar:last-child,
|
|
.tagbox-tags>.label:last-child,
|
|
.tagbox-tags>.select:last-child,
|
|
.tagbox-tags>.spacer:last-child,
|
|
.tagbox-tags>.tagbox:last-child,
|
|
.tagbox-tags>.widget:last-child,
|
|
.tagbox-tags>address:last-child,
|
|
.tagbox-tags>dl:last-child,
|
|
.tagbox-tags>fieldset:last-child,
|
|
.tagbox-tags>footer:last-child,
|
|
.tagbox-tags>form:last-child,
|
|
.tagbox-tags>h1:last-child,
|
|
.tagbox-tags>h2:last-child,
|
|
.tagbox-tags>h3:last-child,
|
|
.tagbox-tags>h4:last-child,
|
|
.tagbox-tags>h5:last-child,
|
|
.tagbox-tags>h6:last-child,
|
|
.tagbox-tags>header:last-child,
|
|
.tagbox-tags>i.icon:last-child,
|
|
.tagbox-tags>img:last-child,
|
|
.tagbox-tags>input:last-child,
|
|
.tagbox-tags>label:last-child,
|
|
.tagbox-tags>ol:last-child,
|
|
.tagbox-tags>p:last-child,
|
|
.tagbox-tags>pre:last-child,
|
|
.tagbox-tags>textarea:last-child,
|
|
.tagbox-tags>ul:last-child {
|
|
margin-bottom: .625rem
|
|
}
|
|
|
|
.layout-priority-z-index {
|
|
-webkit-user-select: none!important;
|
|
-moz-user-select: none!important;
|
|
-ms-user-select: none!important;
|
|
user-select: none!important;
|
|
cursor: move!important
|
|
}
|
|
|
|
.layout-priority-z-index .card-block:not(.multiple),
|
|
.layout-priority-z-index .card-footer:not(.multiple),
|
|
.layout-priority-z-index .card-header:not(.multiple),
|
|
.layout-priority-z-index .container,
|
|
.layout-priority-z-index .infobar,
|
|
.layout-priority-z-index .tagbox,
|
|
.layout-priority-z-index fieldset {
|
|
z-index: unset
|
|
}
|
|
|
|
.priority-z-index {
|
|
z-index: 1000000!important
|
|
}
|
|
|
|
.actionable,
|
|
.button,
|
|
.button>* {
|
|
-ms-touch-action: manipulation;
|
|
touch-action: manipulation;
|
|
cursor: pointer
|
|
}
|
|
|
|
.xslow {
|
|
transition-duration: .9s!important
|
|
}
|
|
|
|
.slow {
|
|
transition-duration: .5s!important
|
|
}
|
|
|
|
.normal {
|
|
transition-duration: .35s!important
|
|
}
|
|
|
|
.fast {
|
|
transition-duration: .15s!important
|
|
}
|
|
|
|
.xfast {
|
|
transition-duration: 75ms!important
|
|
}
|
|
|
|
.sharp {
|
|
border-radius: 0!important
|
|
}
|
|
|
|
.rounded {
|
|
border-radius: .375em!important
|
|
}
|
|
|
|
.circular {
|
|
border-radius: 1000000px!important
|
|
}
|
|
|
|
.bordered {
|
|
border-width: 1px;
|
|
border-style: solid
|
|
}
|
|
|
|
.border-inherit {
|
|
border-color: inherit!important
|
|
}
|
|
|
|
.border-transparent {
|
|
border-color: transparent!important
|
|
}
|
|
|
|
.card-block:not(.multiple):not(.inherit):not(.transparent),
|
|
.card-footer:not(.multiple):not(.inherit):not(.transparent),
|
|
.card-header:not(.multiple):not(.inherit):not(.transparent),
|
|
.inherit,
|
|
.tagbox input.tagbox-partial,
|
|
html.clip-path-polygon .pointing-bottom:after,
|
|
html.clip-path-polygon .pointing-left:after,
|
|
html.clip-path-polygon .pointing-right:after,
|
|
html.clip-path-polygon .pointing-top:after,
|
|
html.clip-path-polygon .pointing:not(.pointing-left):not(.pointing-bottom):not(.pointing-right):after,
|
|
html.clip-path-url .pointing-bottom:after,
|
|
html.clip-path-url .pointing-left:after,
|
|
html.clip-path-url .pointing-right:after,
|
|
html.clip-path-url .pointing-top:after,
|
|
html.clip-path-url .pointing:not(.pointing-left):not(.pointing-bottom):not(.pointing-right):after,
|
|
img:not(.inherit):not(.transparent) {
|
|
background-color: inherit;
|
|
border-color: inherit;
|
|
color: inherit
|
|
}
|
|
|
|
.active.inherit,
|
|
.hover.inherit {
|
|
background-color: inherit
|
|
}
|
|
|
|
.transparent {
|
|
border-color: transparent;
|
|
color: inherit
|
|
}
|
|
|
|
.active.transparent,
|
|
.hover.transparent,
|
|
.transparent {
|
|
background-color: transparent
|
|
}
|
|
|
|
.text-inherit {
|
|
color: inherit!important
|
|
}
|
|
|
|
.text-transparent {
|
|
color: transparent!important
|
|
}
|
|
|
|
* {
|
|
transition: opacity .15s
|
|
}
|
|
|
|
.disabled,
|
|
[disabled] {
|
|
pointer-events: none!important;
|
|
opacity: .5!important
|
|
}
|
|
|
|
.disabled,
|
|
.disabled *,
|
|
.disabled:after,
|
|
.disabled :after,
|
|
.disabled:before,
|
|
.disabled :before,
|
|
[disabled],
|
|
[disabled] *,
|
|
[disabled]:after,
|
|
[disabled] :after,
|
|
[disabled]:before,
|
|
[disabled] :before {
|
|
cursor: default!important;
|
|
-webkit-animation-play-state: paused!important;
|
|
animation-play-state: paused!important
|
|
}
|
|
|
|
.fluid:not(.multiple) {
|
|
width: 100%;
|
|
max-width: 100%;
|
|
-webkit-flex: 1 1 auto;
|
|
-ms-flex: 1 1 auto;
|
|
flex: 1 1 auto
|
|
}
|
|
|
|
.fluid.multiple {
|
|
-webkit-flex-grow: 1;
|
|
-ms-flex-positive: 1;
|
|
flex-grow: 1
|
|
}
|
|
|
|
.fluid.multiple:not(.vertical)>* {
|
|
-webkit-flex: 1 1 auto;
|
|
-ms-flex: 1 1 auto;
|
|
flex: 1 1 auto
|
|
}
|
|
|
|
.fluid.multiple.vertical>* {
|
|
width: 100%;
|
|
max-width: 100%
|
|
}
|
|
|
|
@media screen and (min-width:1276.8px) {
|
|
.limited.multiple.joined,
|
|
.limited.multiple.no-wrap,
|
|
.limited.multiple.vertical,
|
|
.limited:not(.multiple) {
|
|
max-width: 1276.8px
|
|
}
|
|
.limited.multiple:not(.no-wrap):not(.vertical):not(.joined) {
|
|
max-width: calc(1276.8px + .625rem)
|
|
}
|
|
}
|
|
|
|
.centered:not(.multiple) {
|
|
margin-right: auto;
|
|
margin-left: auto
|
|
}
|
|
|
|
@media screen and (min-width:1276.8px) {
|
|
.centered.multiple.limited.joined,
|
|
.centered.multiple.limited.no-wrap,
|
|
.centered.multiple.limited.vertical {
|
|
margin-right: auto;
|
|
margin-left: auto
|
|
}
|
|
}
|
|
|
|
.obscured:before {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
content: "";
|
|
z-index: 1;
|
|
border-radius: inherit;
|
|
background-color: rgba(0, 0, 0, .5)
|
|
}
|
|
|
|
.obscured.bordered:before {
|
|
position: absolute;
|
|
top: -1px;
|
|
right: -1px;
|
|
bottom: -1px;
|
|
left: -1px
|
|
}
|
|
|
|
.obscured-open:before {
|
|
opacity: 1
|
|
}
|
|
|
|
.obscured-show:before {
|
|
transition: opacity .15s
|
|
}
|
|
|
|
.obscured-show:not(.obscured-open):before {
|
|
opacity: 0
|
|
}
|
|
|
|
html.clip-path-polygon .pointing-bottom:after,
|
|
html.clip-path-polygon .pointing-left:after,
|
|
html.clip-path-polygon .pointing-right:after,
|
|
html.clip-path-polygon .pointing-top:after,
|
|
html.clip-path-polygon .pointing:not(.pointing-left):not(.pointing-bottom):not(.pointing-right):after,
|
|
html.clip-path-url .pointing-bottom:after,
|
|
html.clip-path-url .pointing-left:after,
|
|
html.clip-path-url .pointing-right:after,
|
|
html.clip-path-url .pointing-top:after,
|
|
html.clip-path-url .pointing:not(.pointing-left):not(.pointing-bottom):not(.pointing-right):after {
|
|
width: .625em;
|
|
height: .625em;
|
|
-webkit-transform: rotate(45deg);
|
|
transform: rotate(45deg);
|
|
position: absolute;
|
|
content: "";
|
|
z-index: 1;
|
|
box-sizing: content-box;
|
|
border: inherit
|
|
}
|
|
|
|
html.clip-path-polygon .bordered.pointing-bottom:after,
|
|
html.clip-path-polygon .bordered.pointing-left:after,
|
|
html.clip-path-polygon .bordered.pointing-right:after,
|
|
html.clip-path-polygon .bordered.pointing-top:after,
|
|
html.clip-path-polygon .bordered.pointing:not(.pointing-left):not(.pointing-bottom):not(.pointing-right):after,
|
|
html.clip-path-url .bordered.pointing-bottom:after,
|
|
html.clip-path-url .bordered.pointing-left:after,
|
|
html.clip-path-url .bordered.pointing-right:after,
|
|
html.clip-path-url .bordered.pointing-top:after,
|
|
html.clip-path-url .bordered.pointing:not(.pointing-left):not(.pointing-bottom):not(.pointing-right):after {
|
|
border-width: 1px
|
|
}
|
|
|
|
html.clip-path-polygon .pointing-left:after,
|
|
html.clip-path-polygon .pointing-right:after,
|
|
html.clip-path-url .pointing-left:after,
|
|
html.clip-path-url .pointing-right:after {
|
|
top: 50%;
|
|
-webkit-transform: translateY(-50%) rotate(45deg);
|
|
transform: translateY(-50%) rotate(45deg)
|
|
}
|
|
|
|
html.clip-path-polygon .pointing-left:after,
|
|
html.clip-path-url .pointing-left:after {
|
|
left: -.3125em;
|
|
-webkit-clip-path: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJjbGlwLXN2ZyI+PGRlZnM+PGNsaXBQYXRoIGlkPSJjbGlwLXRvcCIgY2xpcFBhdGhVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giPjxwYXRoIGQ9Ik0xIDBIMHYxeiIvPjwvY2xpcFBhdGg+PGNsaXBQYXRoIGlkPSJjbGlwLXJpZ2h0IiBjbGlwUGF0aFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+PHBhdGggZD0iTTAgMGwxIDFWMHoiLz48L2NsaXBQYXRoPjxjbGlwUGF0aCBpZD0iY2xpcC1ib3R0b20iIGNsaXBQYXRoVW5pdHM9Im9iamVjdEJvdW5kaW5nQm94Ij48cGF0aCBkPSJNMCAxaDFWMHoiLz48L2NsaXBQYXRoPjxjbGlwUGF0aCBpZD0iY2xpcC1sZWZ0IiBjbGlwUGF0aFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+PHBhdGggZD0iTTAgMGwxIDFIMHoiLz48L2NsaXBQYXRoPjwvZGVmcz48L3N2Zz4=);
|
|
clip-path: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJjbGlwLXN2ZyI+PGRlZnM+PGNsaXBQYXRoIGlkPSJjbGlwLXRvcCIgY2xpcFBhdGhVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giPjxwYXRoIGQ9Ik0xIDBIMHYxeiIvPjwvY2xpcFBhdGg+PGNsaXBQYXRoIGlkPSJjbGlwLXJpZ2h0IiBjbGlwUGF0aFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+PHBhdGggZD0iTTAgMGwxIDFWMHoiLz48L2NsaXBQYXRoPjxjbGlwUGF0aCBpZD0iY2xpcC1ib3R0b20iIGNsaXBQYXRoVW5pdHM9Im9iamVjdEJvdW5kaW5nQm94Ij48cGF0aCBkPSJNMCAxaDFWMHoiLz48L2NsaXBQYXRoPjxjbGlwUGF0aCBpZD0iY2xpcC1sZWZ0IiBjbGlwUGF0aFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+PHBhdGggZD0iTTAgMGwxIDFIMHoiLz48L2NsaXBQYXRoPjwvZGVmcz48L3N2Zz4=);
|
|
-webkit-clip-path: polygon(0 0, 100% 100%, 0 100%);
|
|
clip-path: polygon(0 0, 100% 100%, 0 100%)
|
|
}
|
|
|
|
html.clip-path-polygon .bordered.pointing-left:after,
|
|
html.clip-path-url .bordered.pointing-left:after {
|
|
margin-left: -1px
|
|
}
|
|
|
|
html.clip-path-polygon .pointing-left,
|
|
html.clip-path-url .pointing-left {
|
|
margin-left: .4419417382em
|
|
}
|
|
|
|
html.clip-path-polygon .pointing-right:after,
|
|
html.clip-path-url .pointing-right:after {
|
|
right: -.3125em;
|
|
-webkit-clip-path: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJjbGlwLXN2ZyI+PGRlZnM+PGNsaXBQYXRoIGlkPSJjbGlwLXRvcCIgY2xpcFBhdGhVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giPjxwYXRoIGQ9Ik0xIDBIMHYxeiIvPjwvY2xpcFBhdGg+PGNsaXBQYXRoIGlkPSJjbGlwLXJpZ2h0IiBjbGlwUGF0aFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+PHBhdGggZD0iTTAgMGwxIDFWMHoiLz48L2NsaXBQYXRoPjxjbGlwUGF0aCBpZD0iY2xpcC1ib3R0b20iIGNsaXBQYXRoVW5pdHM9Im9iamVjdEJvdW5kaW5nQm94Ij48cGF0aCBkPSJNMCAxaDFWMHoiLz48L2NsaXBQYXRoPjxjbGlwUGF0aCBpZD0iY2xpcC1sZWZ0IiBjbGlwUGF0aFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+PHBhdGggZD0iTTAgMGwxIDFIMHoiLz48L2NsaXBQYXRoPjwvZGVmcz48L3N2Zz4=);
|
|
clip-path: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJjbGlwLXN2ZyI+PGRlZnM+PGNsaXBQYXRoIGlkPSJjbGlwLXRvcCIgY2xpcFBhdGhVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giPjxwYXRoIGQ9Ik0xIDBIMHYxeiIvPjwvY2xpcFBhdGg+PGNsaXBQYXRoIGlkPSJjbGlwLXJpZ2h0IiBjbGlwUGF0aFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+PHBhdGggZD0iTTAgMGwxIDFWMHoiLz48L2NsaXBQYXRoPjxjbGlwUGF0aCBpZD0iY2xpcC1ib3R0b20iIGNsaXBQYXRoVW5pdHM9Im9iamVjdEJvdW5kaW5nQm94Ij48cGF0aCBkPSJNMCAxaDFWMHoiLz48L2NsaXBQYXRoPjxjbGlwUGF0aCBpZD0iY2xpcC1sZWZ0IiBjbGlwUGF0aFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+PHBhdGggZD0iTTAgMGwxIDFIMHoiLz48L2NsaXBQYXRoPjwvZGVmcz48L3N2Zz4=);
|
|
-webkit-clip-path: polygon(0 0, 100% 100%, 100% 0);
|
|
clip-path: polygon(0 0, 100% 100%, 100% 0)
|
|
}
|
|
|
|
html.clip-path-polygon .bordered.pointing-right:after,
|
|
html.clip-path-url .bordered.pointing-right:after {
|
|
margin-right: -1px
|
|
}
|
|
|
|
html.clip-path-polygon .pointing-right,
|
|
html.clip-path-url .pointing-right {
|
|
margin-right: .4419417382em
|
|
}
|
|
|
|
html.clip-path-polygon .pointing-bottom:after,
|
|
html.clip-path-polygon .pointing-top:after,
|
|
html.clip-path-polygon .pointing:not(.pointing-left):not(.pointing-bottom):not(.pointing-right):after,
|
|
html.clip-path-url .pointing-bottom:after,
|
|
html.clip-path-url .pointing-top:after,
|
|
html.clip-path-url .pointing:not(.pointing-left):not(.pointing-bottom):not(.pointing-right):after {
|
|
left: 50%;
|
|
-webkit-transform: translateX(-50%) rotate(45deg);
|
|
transform: translateX(-50%) rotate(45deg)
|
|
}
|
|
|
|
html.clip-path-polygon .pointing-bottom:after,
|
|
html.clip-path-url .pointing-bottom:after {
|
|
bottom: -.3125em;
|
|
-webkit-clip-path: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJjbGlwLXN2ZyI+PGRlZnM+PGNsaXBQYXRoIGlkPSJjbGlwLXRvcCIgY2xpcFBhdGhVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giPjxwYXRoIGQ9Ik0xIDBIMHYxeiIvPjwvY2xpcFBhdGg+PGNsaXBQYXRoIGlkPSJjbGlwLXJpZ2h0IiBjbGlwUGF0aFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+PHBhdGggZD0iTTAgMGwxIDFWMHoiLz48L2NsaXBQYXRoPjxjbGlwUGF0aCBpZD0iY2xpcC1ib3R0b20iIGNsaXBQYXRoVW5pdHM9Im9iamVjdEJvdW5kaW5nQm94Ij48cGF0aCBkPSJNMCAxaDFWMHoiLz48L2NsaXBQYXRoPjxjbGlwUGF0aCBpZD0iY2xpcC1sZWZ0IiBjbGlwUGF0aFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+PHBhdGggZD0iTTAgMGwxIDFIMHoiLz48L2NsaXBQYXRoPjwvZGVmcz48L3N2Zz4=);
|
|
clip-path: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJjbGlwLXN2ZyI+PGRlZnM+PGNsaXBQYXRoIGlkPSJjbGlwLXRvcCIgY2xpcFBhdGhVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giPjxwYXRoIGQ9Ik0xIDBIMHYxeiIvPjwvY2xpcFBhdGg+PGNsaXBQYXRoIGlkPSJjbGlwLXJpZ2h0IiBjbGlwUGF0aFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+PHBhdGggZD0iTTAgMGwxIDFWMHoiLz48L2NsaXBQYXRoPjxjbGlwUGF0aCBpZD0iY2xpcC1ib3R0b20iIGNsaXBQYXRoVW5pdHM9Im9iamVjdEJvdW5kaW5nQm94Ij48cGF0aCBkPSJNMCAxaDFWMHoiLz48L2NsaXBQYXRoPjxjbGlwUGF0aCBpZD0iY2xpcC1sZWZ0IiBjbGlwUGF0aFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+PHBhdGggZD0iTTAgMGwxIDFIMHoiLz48L2NsaXBQYXRoPjwvZGVmcz48L3N2Zz4=);
|
|
-webkit-clip-path: polygon(0 100%, 100% 100%, 100% 0);
|
|
clip-path: polygon(0 100%, 100% 100%, 100% 0)
|
|
}
|
|
|
|
html.clip-path-polygon .bordered.pointing-bottom:after,
|
|
html.clip-path-url .bordered.pointing-bottom:after {
|
|
margin-bottom: -1px
|
|
}
|
|
|
|
html.clip-path-polygon .pointing-bottom,
|
|
html.clip-path-url .pointing-bottom {
|
|
margin-bottom: calc(.625rem + .44194em)
|
|
}
|
|
|
|
html.clip-path-polygon .multiple>.pointing-bottom,
|
|
html.clip-path-polygon .tagbox-tags>.pointing-bottom,
|
|
html.clip-path-url .multiple>.pointing-bottom,
|
|
html.clip-path-url .tagbox-tags>.pointing-bottom {
|
|
margin-bottom: .625rem
|
|
}
|
|
|
|
html.clip-path-polygon .pointing-top:after,
|
|
html.clip-path-polygon .pointing:not(.pointing-left):not(.pointing-bottom):not(.pointing-right):after,
|
|
html.clip-path-url .pointing-top:after,
|
|
html.clip-path-url .pointing:not(.pointing-left):not(.pointing-bottom):not(.pointing-right):after {
|
|
top: -.3125em;
|
|
-webkit-clip-path: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJjbGlwLXN2ZyI+PGRlZnM+PGNsaXBQYXRoIGlkPSJjbGlwLXRvcCIgY2xpcFBhdGhVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giPjxwYXRoIGQ9Ik0xIDBIMHYxeiIvPjwvY2xpcFBhdGg+PGNsaXBQYXRoIGlkPSJjbGlwLXJpZ2h0IiBjbGlwUGF0aFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+PHBhdGggZD0iTTAgMGwxIDFWMHoiLz48L2NsaXBQYXRoPjxjbGlwUGF0aCBpZD0iY2xpcC1ib3R0b20iIGNsaXBQYXRoVW5pdHM9Im9iamVjdEJvdW5kaW5nQm94Ij48cGF0aCBkPSJNMCAxaDFWMHoiLz48L2NsaXBQYXRoPjxjbGlwUGF0aCBpZD0iY2xpcC1sZWZ0IiBjbGlwUGF0aFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+PHBhdGggZD0iTTAgMGwxIDFIMHoiLz48L2NsaXBQYXRoPjwvZGVmcz48L3N2Zz4=);
|
|
clip-path: url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGNsYXNzPSJjbGlwLXN2ZyI+PGRlZnM+PGNsaXBQYXRoIGlkPSJjbGlwLXRvcCIgY2xpcFBhdGhVbml0cz0ib2JqZWN0Qm91bmRpbmdCb3giPjxwYXRoIGQ9Ik0xIDBIMHYxeiIvPjwvY2xpcFBhdGg+PGNsaXBQYXRoIGlkPSJjbGlwLXJpZ2h0IiBjbGlwUGF0aFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+PHBhdGggZD0iTTAgMGwxIDFWMHoiLz48L2NsaXBQYXRoPjxjbGlwUGF0aCBpZD0iY2xpcC1ib3R0b20iIGNsaXBQYXRoVW5pdHM9Im9iamVjdEJvdW5kaW5nQm94Ij48cGF0aCBkPSJNMCAxaDFWMHoiLz48L2NsaXBQYXRoPjxjbGlwUGF0aCBpZD0iY2xpcC1sZWZ0IiBjbGlwUGF0aFVuaXRzPSJvYmplY3RCb3VuZGluZ0JveCI+PHBhdGggZD0iTTAgMGwxIDFIMHoiLz48L2NsaXBQYXRoPjwvZGVmcz48L3N2Zz4=);
|
|
-webkit-clip-path: polygon(100% 0, 0 0, 0 100%);
|
|
clip-path: polygon(100% 0, 0 0, 0 100%)
|
|
}
|
|
|
|
html.clip-path-polygon .bordered.pointing-top:after,
|
|
html.clip-path-polygon .bordered.pointing:not(.pointing-left):not(.pointing-bottom):not(.pointing-right):after,
|
|
html.clip-path-url .bordered.pointing-top:after,
|
|
html.clip-path-url .bordered.pointing:not(.pointing-left):not(.pointing-bottom):not(.pointing-right):after {
|
|
margin-top: -1px
|
|
}
|
|
|
|
html.clip-path-polygon .pointing-top,
|
|
html.clip-path-polygon .pointing:not(.pointing-right):not(.pointing-bottom):not(.pointing-left),
|
|
html.clip-path-url .pointing-top,
|
|
html.clip-path-url .pointing:not(.pointing-right):not(.pointing-bottom):not(.pointing-left) {
|
|
margin-top: .4419417382em
|
|
}
|
|
|
|
html.clip-path-polygon .multiple>.pointing-top,
|
|
html.clip-path-polygon .multiple>.pointing:not(.pointing-right):not(.pointing-bottom):not(.pointing-left),
|
|
html.clip-path-polygon .tagbox-tags>.pointing-top,
|
|
html.clip-path-polygon .tagbox-tags>.pointing:not(.pointing-right):not(.pointing-bottom):not(.pointing-left),
|
|
html.clip-path-url .multiple>.pointing-top,
|
|
html.clip-path-url .multiple>.pointing:not(.pointing-right):not(.pointing-bottom):not(.pointing-left),
|
|
html.clip-path-url .tagbox-tags>.pointing-top,
|
|
html.clip-path-url .tagbox-tags>.pointing:not(.pointing-right):not(.pointing-bottom):not(.pointing-left) {
|
|
margin-top: 0
|
|
}
|
|
|
|
.xxxxsmall {
|
|
font-size: .4204607855em
|
|
}
|
|
|
|
.xxxsmall {
|
|
font-size: .5000119661em
|
|
}
|
|
|
|
.xxsmall {
|
|
font-size: .5946142301em
|
|
}
|
|
|
|
.xsmall,
|
|
h6 {
|
|
font-size: .75em
|
|
}
|
|
|
|
.small,
|
|
h5 {
|
|
font-size: .8409014464em
|
|
}
|
|
|
|
.medium,
|
|
h4 {
|
|
font-size: 1em
|
|
}
|
|
|
|
.infobar-title:not(.xxxxsmall):not(.xxxsmall):not(.xxsmall):not(.xsmall):not(.small):not(.medium):not(.large):not(.xlarge):not(.xxlarge):not(.xxxlarge):not(.xxxxlarge),
|
|
.large,
|
|
h3 {
|
|
font-size: 1.1892em
|
|
}
|
|
|
|
.xlarge,
|
|
h2 {
|
|
font-size: 1.5em
|
|
}
|
|
|
|
.xxlarge,
|
|
h1 {
|
|
font-size: 1.6817626443em
|
|
}
|
|
|
|
.xxxlarge {
|
|
font-size: 2em
|
|
}
|
|
|
|
.xxxxlarge {
|
|
font-size: 2.3783430808em
|
|
}
|
|
|
|
.button:target,
|
|
.card:target,
|
|
.container:target,
|
|
.infobar:target,
|
|
.label:target,
|
|
.target,
|
|
input:target,
|
|
pre:target,
|
|
textarea:target {
|
|
-webkit-animation: target .9s ease-in-out;
|
|
animation: target .9s ease-in-out;
|
|
-webkit-animation-iteration-count: 1;
|
|
animation-iteration-count: 1
|
|
}
|
|
|
|
.z-depth-0 {
|
|
box-shadow: none
|
|
}
|
|
|
|
.select-popover,
|
|
.z-depth-1 {
|
|
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12), 0 3px 1px -2px rgba(0, 0, 0, .2)
|
|
}
|
|
|
|
.z-depth-2 {
|
|
box-shadow: 0 2px 2px 0 rgba(0, 0, 0, .14), 0 1px 5px 0 rgba(0, 0, 0, .12), 0 3px 1px -2px rgba(0, 0, 0, .2)
|
|
}
|
|
|
|
.z-depth-3 {
|
|
box-shadow: 0 3px 4px 0 rgba(0, 0, 0, .14), 0 1px 8px 0 rgba(0, 0, 0, .12), 0 3px 3px -2px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.popover,
|
|
.z-depth-4 {
|
|
box-shadow: 0 4px 5px 0 rgba(0, 0, 0, .14), 0 1px 10px 0 rgba(0, 0, 0, .12), 0 2px 4px -1px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.z-depth-5 {
|
|
box-shadow: 0 5px 8px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12), 0 2px 5px -1px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.modal,
|
|
.z-depth-6 {
|
|
box-shadow: 0 6px 10px 0 rgba(0, 0, 0, .14), 0 1px 18px 0 rgba(0, 0, 0, .12), 0 3px 5px -1px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.toast,
|
|
.z-depth-7 {
|
|
box-shadow: 0 7px 10px 1px rgba(0, 0, 0, .14), 0 2px 16px 2px rgba(0, 0, 0, .12), 0 4px 5px -3px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.z-depth-8 {
|
|
box-shadow: 0 8px 10px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 5px -3px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.z-depth-9 {
|
|
box-shadow: 0 9px 12px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 5px 6px -3px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.z-depth-10 {
|
|
box-shadow: 0 10px 13px 1px rgba(0, 0, 0, .14), 0 3px 14px 2px rgba(0, 0, 0, .12), 0 6px 6px -3px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.z-depth-11 {
|
|
box-shadow: 0 11px 14px 1px rgba(0, 0, 0, .14), 0 4px 14px 3px rgba(0, 0, 0, .12), 0 6px 7px -4px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.z-depth-12 {
|
|
box-shadow: 0 12px 16px 1px rgba(0, 0, 0, .14), 0 4px 14px 3px rgba(0, 0, 0, .12), 0 6px 8px -4px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.z-depth-13 {
|
|
box-shadow: 0 13px 18px 1px rgba(0, 0, 0, .14), 0 4px 18px 3px rgba(0, 0, 0, .12), 0 7px 8px -4px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.z-depth-14 {
|
|
box-shadow: 0 14px 20px 1px rgba(0, 0, 0, .14), 0 5px 22px 4px rgba(0, 0, 0, .12), 0 7px 8px -4px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.z-depth-15 {
|
|
box-shadow: 0 15px 22px 1px rgba(0, 0, 0, .14), 0 5px 26px 4px rgba(0, 0, 0, .12), 0 7px 9px -5px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.z-depth-16 {
|
|
box-shadow: 0 16px 24px 2px rgba(0, 0, 0, .14), 0 5px 30px 5px rgba(0, 0, 0, .12), 0 8px 10px -5px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.z-depth-17 {
|
|
box-shadow: 0 17px 26px 3px rgba(0, 0, 0, .14), 0 5px 32px 5px rgba(0, 0, 0, .12), 0 8px 10px -5px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.z-depth-18 {
|
|
box-shadow: 0 18px 28px 3px rgba(0, 0, 0, .14), 0 6px 34px 6px rgba(0, 0, 0, .12), 0 8px 11px -5px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.z-depth-19 {
|
|
box-shadow: 0 19px 30px 3px rgba(0, 0, 0, .14), 0 6px 36px 6px rgba(0, 0, 0, .12), 0 9px 11px -6px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.z-depth-20 {
|
|
box-shadow: 0 20px 32px 3px rgba(0, 0, 0, .14), 0 6px 38px 7px rgba(0, 0, 0, .12), 0 9px 12px -6px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.z-depth-21 {
|
|
box-shadow: 0 21px 34px 4px rgba(0, 0, 0, .14), 0 7px 40px 7px rgba(0, 0, 0, .12), 0 9px 12px -6px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.z-depth-22 {
|
|
box-shadow: 0 22px 36px 4px rgba(0, 0, 0, .14), 0 7px 42px 8px rgba(0, 0, 0, .12), 0 10px 13px -6px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.z-depth-23 {
|
|
box-shadow: 0 23px 38px 4px rgba(0, 0, 0, .14), 0 7px 44px 8px rgba(0, 0, 0, .12), 0 10px 13px -7px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.z-depth-24 {
|
|
box-shadow: 0 24px 40px 4px rgba(0, 0, 0, .14), 0 8px 46px 9px rgba(0, 0, 0, .12), 0 10px 10px -8px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.centerer {
|
|
display: -webkit-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-justify-content: center;
|
|
-ms-flex-pack: center;
|
|
justify-content: center;
|
|
-webkit-align-items: center;
|
|
-ms-flex-align: center;
|
|
align-items: center
|
|
}
|
|
|
|
.card-block:not(.multiple),
|
|
.card-footer:not(.multiple),
|
|
.card-header:not(.multiple),
|
|
.container,
|
|
.infobar,
|
|
.tagbox,
|
|
fieldset {
|
|
border-radius: .375em;
|
|
padding: .625rem;
|
|
z-index: 0
|
|
}
|
|
|
|
.card {
|
|
display: -webkit-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
border-radius: .375em
|
|
}
|
|
|
|
.card>* {
|
|
margin-bottom: 0!important
|
|
}
|
|
|
|
.card>script:last-child {
|
|
display: none!important
|
|
}
|
|
|
|
.card-block:not(.multiple),
|
|
.card-footer:not(.multiple),
|
|
.card-header:not(.multiple) {
|
|
border-radius: 0
|
|
}
|
|
|
|
.card-block.multiple>*,
|
|
.card-footer.multiple>*,
|
|
.card-header.multiple>* {
|
|
border-radius: 0;
|
|
margin-bottom: 0!important
|
|
}
|
|
|
|
.card-footer,
|
|
.card-header {
|
|
-webkit-flex-shrink: 0;
|
|
-ms-flex-negative: 0;
|
|
flex-shrink: 0
|
|
}
|
|
|
|
.card-block {
|
|
-webkit-flex: 1 1 auto;
|
|
-ms-flex: 1 1 auto;
|
|
flex: 1 1 auto;
|
|
overflow: auto
|
|
}
|
|
|
|
.card>*,
|
|
.card>.table {
|
|
border-radius: 0
|
|
}
|
|
|
|
.card.bordered>.bordered {
|
|
margin-left: -1px;
|
|
margin-right: -1px
|
|
}
|
|
|
|
.card.bordered>.bordered:first-child:not(.overlay):not(.ripple-circle) {
|
|
margin-top: -1px
|
|
}
|
|
|
|
.card.bordered>.bordered:last-child {
|
|
margin-bottom: -1px!important
|
|
}
|
|
|
|
.card.bordered>:first-child.overlay+.bordered,
|
|
.card.bordered>:first-child.ripple-circle+.bordered {
|
|
margin-top: -1px
|
|
}
|
|
|
|
.card-block.compact:not(.multiple),
|
|
.card-footer.compact:not(.multiple),
|
|
.card-header.compact:not(.multiple),
|
|
.card.compact>.card-block:not(.multiple),
|
|
.card.compact>.card-footer:not(.multiple),
|
|
.card.compact>.card-header:not(.multiple) {
|
|
padding: .3125rem .625rem
|
|
}
|
|
|
|
.card.horizontal {
|
|
-webkit-flex-direction: row;
|
|
-ms-flex-direction: row;
|
|
flex-direction: row
|
|
}
|
|
|
|
.card.horizontal>.multiple:first-child>:first-child,
|
|
.card.horizontal>:first-child.overlay+*,
|
|
.card.horizontal>:first-child.ripple-circle+*,
|
|
.card.horizontal>:first-child:not(.overlay):not(.ripple-circle) {
|
|
border-bottom-left-radius: inherit;
|
|
border-top-left-radius: inherit
|
|
}
|
|
|
|
.card.horizontal>.multiple:last-child>:last-child,
|
|
.card.horizontal>:last-child {
|
|
border-bottom-right-radius: inherit;
|
|
border-top-right-radius: inherit
|
|
}
|
|
|
|
.card.horizontal>.bordered+.bordered:not(.card-footer) {
|
|
border-left-width: 0
|
|
}
|
|
|
|
.card.horizontal>.bordered+.bordered.card-footer {
|
|
margin-left: -1px
|
|
}
|
|
|
|
.card.vertical,
|
|
.card:not(.vertical):not(.horizontal) {
|
|
-webkit-flex-direction: column;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column
|
|
}
|
|
|
|
.card.vertical>:first-child.overlay+*,
|
|
.card.vertical>:first-child.ripple-circle+*,
|
|
.card.vertical>:first-child:not(.overlay):not(.ripple-circle),
|
|
.card:not(.vertical):not(.horizontal)>:first-child.overlay+*,
|
|
.card:not(.vertical):not(.horizontal)>:first-child.ripple-circle+*,
|
|
.card:not(.vertical):not(.horizontal)>:first-child:not(.overlay):not(.ripple-circle) {
|
|
border-top-right-radius: inherit;
|
|
border-top-left-radius: inherit
|
|
}
|
|
|
|
.card.vertical>.multiple:first-child>:first-child,
|
|
.card:not(.vertical):not(.horizontal)>.multiple:first-child>:first-child {
|
|
border-top-left-radius: inherit
|
|
}
|
|
|
|
.card.vertical>.multiple:first-child>:last-child,
|
|
.card:not(.vertical):not(.horizontal)>.multiple:first-child>:last-child {
|
|
border-top-right-radius: inherit
|
|
}
|
|
|
|
.card.vertical>:last-child,
|
|
.card:not(.vertical):not(.horizontal)>:last-child {
|
|
border-bottom-right-radius: inherit;
|
|
border-bottom-left-radius: inherit
|
|
}
|
|
|
|
.card.vertical>.multiple:last-child>:first-child,
|
|
.card:not(.vertical):not(.horizontal)>.multiple:last-child>:first-child {
|
|
border-bottom-left-radius: inherit
|
|
}
|
|
|
|
.card.vertical>.multiple:last-child>:last-child,
|
|
.card:not(.vertical):not(.horizontal)>.multiple:last-child>:last-child {
|
|
border-bottom-right-radius: inherit
|
|
}
|
|
|
|
.card.vertical>.bordered+.bordered:not(.card-footer),
|
|
.card:not(.vertical):not(.horizontal)>.bordered+.bordered:not(.card-footer) {
|
|
border-top-width: 0
|
|
}
|
|
|
|
.card.vertical>.bordered+.bordered.card-footer,
|
|
.card:not(.vertical):not(.horizontal)>.bordered+.bordered.card-footer {
|
|
margin-top: -1px
|
|
}
|
|
|
|
.card:not(.modal):not(.popover):not(.panel).fullscreen,
|
|
.card:not(.modal):not(.popover):not(.panel).fullscreen-request {
|
|
position: fixed;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
border-width: 0;
|
|
border-radius: 0;
|
|
margin: 0;
|
|
max-width: none;
|
|
max-height: none;
|
|
width: 100%!important;
|
|
height: 100%!important;
|
|
z-index: 2000!important
|
|
}
|
|
|
|
.container.compact {
|
|
padding: .3125rem .625rem
|
|
}
|
|
|
|
.draggable-reverting {
|
|
z-index: 1000000!important;
|
|
transition: -webkit-transform .15s!important;
|
|
transition: transform .15s!important;
|
|
transition: transform .15s, -webkit-transform .15s!important
|
|
}
|
|
|
|
.editor {
|
|
-webkit-user-select: text!important;
|
|
-moz-user-select: text!important;
|
|
-ms-user-select: text!important;
|
|
user-select: text!important;
|
|
font-size: 14px!important;
|
|
line-height: 1.5!important
|
|
}
|
|
|
|
button {
|
|
border: 0;
|
|
padding: 0
|
|
}
|
|
|
|
fieldset {
|
|
background-color: transparent;
|
|
border-color: inherit
|
|
}
|
|
|
|
label {
|
|
display: block
|
|
}
|
|
|
|
legend {
|
|
padding: 0 .3125rem
|
|
}
|
|
|
|
footer,
|
|
header {
|
|
padding: .625rem
|
|
}
|
|
|
|
@font-face {
|
|
font-family: Material Icons;
|
|
font-style: normal;
|
|
font-weight: 400;
|
|
font-display: block;
|
|
src: url(data:font/woff2;base64,d09GMgABAAAAAA9kAAsAAAAAH0QAAA8SAAEAAAAAAAAAAAAAAAAAAAAAAAAAAAAAHIZQBlYAhUQKpDygMgE2AiQDgVwLcAAEIAWEFgeDfxsGHDOj9pOz6pzsv06gY4gUvkTxidYpSvKu26x2GuRh4GDTpF78iUsrAQFJe0p/5Ew+ApNHus2LO4WvDKX0P/b7du4z/2v+XBZ1aYTEEE2qNRqRIWQ8JKav3zvNSitIgGhTYFAphSV3WvnbO1m1Nxrbz/wAgHdFm26koko65ak8RKDC8/AxLHIXfUKhKlAnoQqEQpUq1OSoqkNNISBO/Yxl06ILLBYL5byApWk1rW7DagmLHLJL0bqCoLn9wSOCQzCabNli6AvCwnAGQ676fXMZPMwGnW6NChQQduYXbfJO+GoU6rAOCK7W9N7eT4zPRJEFJJVU+ACQ0i1bpgVd/mnu1TKrAd5ATxhUlerlckn/5Up0P/0FTjnlXyQ1RIeK+KcIYzaW0G92Sm1aT5upE9mS/MABoYssaKkuw2mTyn6vrBPPIDVIO+Cm9wMCKCrLMOu6h4+RpcNJCSN7OPnOBNuqdLhYmZGZWSxO4Uekewj/U03I/LOKDLSa5sINjJHZzfzgPEnCszlcHpFlkT2cf+YjGhswo5OIzONF11KIORKteWyeQtnSMk67b5UMHqXqfa5IXpQ4UpN3rfSbOkbuBR9Vnic3RZrh/jAGTmOvhaPwLHPAGE3AERrgsSTrL5KJcTS2UeYIoMWM+bJUnsZTPU6NFeUjpQrrEMKvSzgmVclgiSCWyBwvw5JkltH1RH2cWCMSmXXCrgyS2qLhjnBcN7DGFIPDxET5RC3iTog6s95EBSYtOU+9o0RA4pRFi6yzzT0z2Kqb6RCwcq+8JxEqplMwiBdwixwjuHaMelNlMackV2jcN5hngXVerFEd04oJZoWTlfKZT6ilnlAWh6LINoALqn0/buFPOKqjaktbseQOy1B9gUpVic+AurFCrULPJ+YFUI2lAq+3VGtRwdMTlAFlWtoAsyzfvfjB6ZwJMPgI+Zg79pfFyIk/unIEoEstvcIGBgAewAKy12I83Uj1uZg1zZZMoe4k1jUj0EgYnONI0ur+EfaQMcRyzolWjDchUAESMxq+G8ardQKFWbZW/Hxl7rPgv3qeUKYCSpEbJGbup07dBSLS28aRBZnz5oWm//64sgYA9cCGnUwqlABOohnAKdQATiMfcAalgLPIAZxDNeA86gAXUAC4iArAZTQLuIJswFW1hecGBhQDrqMIcAOVgFvIBdxGOeAO8gB30TzAPRQC7gMswEMgQXKcP/g1I9hmhO8D8hw5z3EWFYEMFi8ZnsNcwAMmcY0Lss84Dom3HSO/Q66aBc0v3ESxiiQqkmQdg6E7yg4np4UZKdF8RHniWihjTVbZzFdiq12BNd+3DSY6p9sFHFBaxhoRFh4PrKKQKb3TgD94hW/Yh1do+bJAAYogRJIRv/sOSUaghFEpY6ZY/DrOQ3rxz7ZC2cVvkxLnruq/sbIWrq5E66vJ2joY0DnVMwvqNzOryHTMCnabRFTpKA2qFdVzZ0pGx6OR0XBsJB5H7Ia2Bh1ibUUYDoN2QHJKCjTWncSLYM96kx2kI8vgQbTYGYKvhmtm0mWaJaN8lGNkhaFFvpiJFsU0R1sICTV2qFSafqyI+xhOzwl2Yz1F1Qj/7bZyW5lCVtu7dvxz+hdSNjTPNsbYyDBveSw/hnagp+ySNibI5CQFhftpOEnHEgbJPjufFNXShVllqru5C/NZT45Hoac1LU0UsQCsgZek09aayLJZ5hYgwhqI1hxfc0MUPb/bQPcDZy5aaCekbD0VyXK5x3SAJR1vYJFTRW8LKVu3ELtiv+5Q/unfJRpM1rFjAvPIqjQcrAFlnbUyjWheQRQ9nRM4FBF9wy9YRV8PiqIQQCLl4CktEBLiSyElHsgWO1EdiL8lncwc7QkbHTdRu1TRLXkBrq4v1aZHk4OBLrtfV9RuNVSemv5cGVN8v9Pt/Gsq5c82G62ooyJ+3kkt8xAtLLmq1kL/0vz05OxCL5ilJAniUtrhsYxeMEaSLgOnasYp3IupZCS+IxmCX1ToY2IUMo0+O08GrovY9Sry5Gj17afhixbXdWIsUZDlJ6jVSzpq4YptTuYDavpGN2BeIfpJ32AdyPjU/dESoI/YqBn2+vpdc73qv10G761cN+4r4pOmupcF7iyzyfk9jQHm2kHlyHr0D9RBo06yQ0CpacsxOmD8dyZZ/XFtbGUblmnrjvnW0QvGvkM9eH/JDAx7lkYtcLcKPXQwY9PBwLi/PMlkFSxdws6HwowWD1voc1tkPPiYcm16AHjc9A+rt2ng+p1IT6r0oGuY3PGLEy8Kh+WxkAZn9+0ll63YC20vZwj2qgd1y+C/WTcDNxYtuhG4mfUXlxEC8uEFbi66cWPRzcDfrDJYqMxL2IZ7mjcPhcwIV7OtAVyOBqseoAICiisDXivSCIUakZY/NigU6YRqDaWleFIr1FFqqozWFQLlT5yPRi3UiQrW2eGWoko4TgZ5TFvM4IXICCuJ1EKhWmSzPNgBGrJMKDygX8Ex9YUAYf22+n7i3mQdwaVN5DMCAt/Utfo1m3YZ/drNyJHba53y4Lx0yYlgYVRaCrk+gFz9pjXxIXD2AMIt97x0d9D8M4MNP8HvlTml168lubp4/UOa9mvSKym/apVQqGalvISeTfo0GRzwyFyqJJk3UZCo69fmCB6ZP9tilhYlJBqTTK8JhAZVeG2SGhMSrkEgUJkcLpiNkEM5paFMAn5W6fyZR3RnMu49vYBPZnXunHUy58LT5dSC9nOyJ6EZwEvLjAOeEl1VK+Khb1XQnsUpfOHJOW4/u6Nk9geHJAtHIvMBHQ/mFO9Q7uPOPb2Q02USvnDMUVmnGqbxBfwk2+/t4kq6dl3qFF9K5pG6rl1HkleWaJHwc8k8gV6pc5wu4MvDQek2YoyC/pufoqllCe/AGN/Q5weGKEoHpd2zAFA+ndJRZU6Ct+7IZwoiIwCCS9MUjaHCKXVbRdE3RVu1HaBxNVJ84/4AqYzg+7yASfU0KiYBg4aNvJo2jGFCuvqcR4rChiIFyt9IFTBDvk/94IlHGzZqOABX7nNMk90c6qb1OUo3rFuDs1uQHSBX11EjEmk66nIJwghEyYrGfUTtpE6DiiQ30SKNk9M7TpmE8xgoU+ttWf96LQVdZbZlriUMfAZAvfq+9IbDc10vFKyTH5yeH1TALHgJpGd8NC6cPPFUD99TbGZBBGQ/QLmgW2Kjx+7fP4YuFtc1BHoG9FiJzQ3lsUVqSigyJpqSXhMIhGnDAuVARGm1VKFAmgjKIqh2YZGaOQ7mdvZp81DqBm5tjLYmeWNKsSHQMOGfHpJRGu6/00LdnK2B1xPOWdmGxISSknVort0+slyPexQguwHKIIL7LwVMollkZ+NRUBNGYVNzOH8OyjwklYAixx8TZI/ssCPSIzi7CwOUDNUjw+EyKUU5rTJbKLuqo09UVZkw4/TOBzkGt8xvbe5rEBS09UxrWyAouiwwpLTHU9DGEHcZgGiPhxjW0LdTVS698wFOjlvpio8y5LU1CPqaXzPBrTh5+ufjpxMd7AhmyFBmhKKqIVHMkPk4Heb0XW73znQ4L+gvP17RaJSvrCwcbc6TdTxPyB7t3rt3zg9CHoD9K/g6D7xsVq9yn9hej9Y+XLP2wbqHvWMH1dv3bs+bb+TH+mb5cQZZy9r6Str3c17P2nPOZqu5nl0sn//+/Xx5QJG3gNCgHdjFuUT+hppRbZDN9oK0fEHRRUMEtBNEXCLs4lzjRgB7mdqESevuxr99273V5g0HvvBjrfAtVh/u1+TrdCmsrKW0oIZlM/PZBgKkgT1247YfL5xsgzNLeK55+ODBrnGuB+c703NYkjQ72G/1whf4z0je8ao7M5ZumbaStKTHMqoljVTmuq1rjqMZ8jFwy4Shx7VwOPvOdZla9GG3zWonmyprN2vb1PWw8LxvirEsfLTRSvL+9fp5ohTb/qvYYeyklvaWrssHdTs1jRppduoOXnZyMcoRLBsuljjHi0Np24P/xeOdtG39sW6cRam0upUWi9JthZ3FZI2+/W5ARsBVBZDuBZVV6WC1Y+3ZWU3qsTvi3+Te6A9JstD/M2/db+98nEzt/4GNHOJFWuHH1DgUj1S/znysfYiQ1Gyf7g8a+JhknktIly8fsGd3SutjkuijVL9n37DPtbOy2XvklnIy9mD2cBvLgnQfVllZyt5KxlnHamE31qr6PzDwSGnbSejML/ebM5E/3yIR/2r22cV5wsnhZdP9ap6/I3jBJIeH8H/8mwFLj4+wrIUtw02FKBOmJsemS2xip42+OLQNHGLb+m1dUxNALrHlXpyFMDBoVnaVuarMAz7eectZUFAY5Db67S8488b968yYzuLf6N4USKGS3z811ChwnqkFyvql6UmRMj0hxsk7E6PECb+jtK+aV13lpX8zDUaAlnZ9jz2eVJz67GuOkRqipIrXgqVsWto/2Nx0kGJ5Gh+hl68UkdBsGbLxgfy7PBB2dd/uz3KXX1L/DzvoV355irEWeeHSb/9kAk5o3RthxHzFX1n9uSWjyalHTMUaA1CKDYB/+yyW7+6IpH/xMYuKeySj7DrcBHvOeRjxVNNIIEmQItVMrup31DiKZRDLjQgxDI8Qy/LYnnN+jXhDPiOB5RtS7PPfhipIctoYrtxI3lDVzvCjvFz4Bc6Uow6L6vAurhHARlCofqdyUx2JlKrk6JXixuBcVInjL6z0BiLpeL88R43Ts9GP3LKi4Kr+2uINVGqOwdjq/qpfgGV0/EqtUDHsr1lgrWwIKPgpXW19W6Ny5A7ykqo0Fvm13I6DKwoi5Qbd3y+wRM+FFlpyrMTeznFZz3yk/99sfaJ/yPwwxBJHPAkkkkQyKaSSRjoZZJKlp0+/AYOGDBsxasy4CZOmTJthc7g8vkAoEkukMrlCqVJrtDqz5plvQQw3awfLgm1oOAZdxDZM2h4zFmqdtsTW7eDwgG9K25i6peJ2EOgyMhrwbjojy3XYFDylxXK4AqwzDNvBLD0NZeo7TPtaBSq7iTAEq/Mp+jEOta+dUHKYwdLz8UXQZKuAdjbVBBs4pakTmiU3n05axVocBYxvbU+kXufJ3AxjLq8hSXRDaBfyZ1hHmbjte15qpS3HnFHMYjlPoc4La2lwZSOW+KEnVp9XZrbYFB3Hpz5qOMCENdCIgj8KrYwknVKfVxmqAwAAAA==) format("woff2")
|
|
}
|
|
|
|
.select select+label:after,
|
|
i.icon {
|
|
display: inline-block;
|
|
vertical-align: middle;
|
|
font-family: Material Icons;
|
|
font-weight: 400;
|
|
font-style: normal;
|
|
font-size: 1.5em;
|
|
width: 1em;
|
|
height: 1em;
|
|
line-height: 1;
|
|
letter-spacing: normal;
|
|
text-transform: none;
|
|
word-wrap: normal;
|
|
white-space: nowrap;
|
|
direction: ltr;
|
|
overflow: hidden;
|
|
-webkit-flex: 0 0 auto!important;
|
|
-ms-flex: 0 0 auto!important;
|
|
flex: 0 0 auto!important;
|
|
-webkit-font-smoothing: antialiased;
|
|
text-rendering: optimizeLegibility;
|
|
-moz-osx-font-smoothing: grayscale;
|
|
-webkit-font-feature-settings: "liga";
|
|
-moz-font-feature-settings: "liga";
|
|
font-feature-settings: "liga"
|
|
}
|
|
|
|
i.xxxxsmall.icon {
|
|
font-size: .6306911783em
|
|
}
|
|
|
|
i.xxxsmall.icon {
|
|
font-size: .7500179492em
|
|
}
|
|
|
|
i.xxsmall.icon {
|
|
font-size: .8919213452em
|
|
}
|
|
|
|
i.xsmall.icon {
|
|
font-size: 1.125em
|
|
}
|
|
|
|
i.small.icon {
|
|
font-size: 1.2613521695em
|
|
}
|
|
|
|
i.medium.icon {
|
|
font-size: 1.5em
|
|
}
|
|
|
|
i.large.icon {
|
|
font-size: 1.7838em
|
|
}
|
|
|
|
i.xlarge.icon {
|
|
font-size: 2.25em
|
|
}
|
|
|
|
i.xxlarge.icon {
|
|
font-size: 2.5226439664em
|
|
}
|
|
|
|
i.xxxlarge.icon {
|
|
font-size: 3em
|
|
}
|
|
|
|
i.xxxxlarge.icon {
|
|
font-size: 3.5675146212em
|
|
}
|
|
|
|
i.icon.actionable:not(.disabled).active,
|
|
i.icon.actionable:not(.disabled).hover,
|
|
i.icon.actionable:not(.disabled):active,
|
|
i.icon.actionable:not(.disabled):hover {
|
|
overflow: visible
|
|
}
|
|
|
|
i.icon.actionable:not(.disabled).active:before,
|
|
i.icon.actionable:not(.disabled).hover:before,
|
|
i.icon.actionable:not(.disabled):active:before,
|
|
i.icon.actionable:not(.disabled):hover:before {
|
|
top: 50%;
|
|
left: 50%;
|
|
-webkit-transform: translate(-50%, -50%);
|
|
transform: translate(-50%, -50%);
|
|
width: 140%;
|
|
height: 140%;
|
|
position: absolute;
|
|
z-index: -1;
|
|
content: "";
|
|
background-color: #000;
|
|
border-radius: 1000000px
|
|
}
|
|
|
|
i.icon.actionable:not(.disabled):not(.active).hover:before,
|
|
i.icon.actionable:not(.disabled):not(.active):hover:before {
|
|
opacity: .04
|
|
}
|
|
|
|
i.icon.actionable:not(.disabled):not(.ripple).active:before,
|
|
i.icon.actionable:not(.disabled):not(.ripple):active:before {
|
|
opacity: .06
|
|
}
|
|
|
|
img {
|
|
display: block;
|
|
max-width: 100%;
|
|
height: auto;
|
|
min-height: 1px
|
|
}
|
|
|
|
address img,
|
|
p img,
|
|
span img {
|
|
display: inline-block
|
|
}
|
|
|
|
.infobar {
|
|
display: -webkit-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-flex-wrap: wrap;
|
|
-ms-flex-wrap: wrap;
|
|
flex-wrap: wrap;
|
|
-webkit-align-items: center;
|
|
-ms-flex-align: center;
|
|
align-items: center
|
|
}
|
|
|
|
.infobar>* {
|
|
margin-bottom: 0!important
|
|
}
|
|
|
|
.infobar>script:last-child {
|
|
display: none!important
|
|
}
|
|
|
|
.infobar>:not(:first-child):not(.infobar-title):not(.infobar-subtitle):not(.infobar-bottom) {
|
|
margin-left: .625rem
|
|
}
|
|
|
|
.infobar-left,
|
|
.infobar-right {
|
|
-webkit-flex-shrink: 0;
|
|
-ms-flex-negative: 0;
|
|
flex-shrink: 0
|
|
}
|
|
|
|
.infobar-center {
|
|
-webkit-flex: 1 1 0%;
|
|
-ms-flex: 1 1 0%;
|
|
flex: 1 1 0%
|
|
}
|
|
|
|
.infobar-bottom {
|
|
width: 100%;
|
|
margin-top: .625rem
|
|
}
|
|
|
|
.infobar-subtitle,
|
|
.infobar-title {
|
|
margin-bottom: 0!important
|
|
}
|
|
|
|
.infobar.inset {
|
|
padding: 0
|
|
}
|
|
|
|
input,
|
|
textarea {
|
|
display: -webkit-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-flex-shrink: 1;
|
|
-ms-flex-negative: 1;
|
|
flex-shrink: 1;
|
|
min-width: 0;
|
|
border-radius: .375em;
|
|
line-height: 1.375;
|
|
padding: .5em .75em
|
|
}
|
|
|
|
input.compact,
|
|
textarea.compact {
|
|
padding: .5em
|
|
}
|
|
|
|
input[type=file] {
|
|
display: none!important
|
|
}
|
|
|
|
input.invalid,
|
|
textarea.invalid {
|
|
border-color: #f44336!important
|
|
}
|
|
|
|
::-webkit-input-placeholder {
|
|
color: rgba(33, 33, 33, .65)
|
|
}
|
|
|
|
::-moz-placeholder {
|
|
color: rgba(33, 33, 33, .65)
|
|
}
|
|
|
|
::-ms-input-placeholder {
|
|
color: rgba(33, 33, 33, .65)
|
|
}
|
|
|
|
::placeholder {
|
|
color: rgba(33, 33, 33, .65)
|
|
}
|
|
|
|
input.valid,
|
|
textarea.valid {
|
|
border-color: #4caf50!important
|
|
}
|
|
|
|
.button,
|
|
.label {
|
|
overflow-wrap: normal;
|
|
word-wrap: normal;
|
|
word-break: normal;
|
|
-webkit-hyphens: manual;
|
|
-moz-hyphens: manual;
|
|
-ms-hyphens: manual;
|
|
hyphens: manual;
|
|
font-weight: 500;
|
|
display: -webkit-inline-flex;
|
|
display: -ms-inline-flexbox;
|
|
display: inline-flex;
|
|
-webkit-align-items: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
-webkit-justify-content: center;
|
|
-ms-flex-pack: center;
|
|
justify-content: center;
|
|
text-align: center;
|
|
line-height: 1.5;
|
|
border-radius: .375em;
|
|
padding: .5em .75em;
|
|
min-width: 2.875em
|
|
}
|
|
|
|
.button>*,
|
|
.label>* {
|
|
margin-bottom: 0!important
|
|
}
|
|
|
|
.button>script:last-child,
|
|
.label>script:last-child {
|
|
display: none!important
|
|
}
|
|
|
|
.button>:not(.overlay):not(.ripple-circle):not(input):not(select)+*,
|
|
.label>:not(.overlay):not(.ripple-circle):not(input):not(select)+* {
|
|
margin-left: .375em
|
|
}
|
|
|
|
.button>:not(.overlay):not(.ripple-circle):not(input):not(select)+i.icon,
|
|
.label>:not(.overlay):not(.ripple-circle):not(input):not(select)+i.icon {
|
|
margin-left: .25em
|
|
}
|
|
|
|
.button>.overlay+:not(:last-child),
|
|
.button>.ripple-circle+:not(:last-child),
|
|
.button>:not(.overlay):not(.ripple-circle):first-child:not(:last-child),
|
|
.button>:not(.overlay):not(.ripple-circle):first-child:not(:last-child)~*,
|
|
.button>i.icon,
|
|
.label>.overlay+:not(:last-child),
|
|
.label>.ripple-circle+:not(:last-child),
|
|
.label>:not(.overlay):not(.ripple-circle):first-child:not(:last-child),
|
|
.label>:not(.overlay):not(.ripple-circle):first-child:not(:last-child)~*,
|
|
.label>i.icon {
|
|
vertical-align: middle
|
|
}
|
|
|
|
.compact.button,
|
|
.label.compact {
|
|
padding: .5em;
|
|
min-width: 2.375em
|
|
}
|
|
|
|
.compact.button>:not(.overlay):not(.ripple-circle):not(input):not(select)+*,
|
|
.label.compact>:not(.overlay):not(.ripple-circle):not(input):not(select)+* {
|
|
margin-left: .25em
|
|
}
|
|
|
|
.compact.button>:not(.overlay):not(.ripple-circle):not(input):not(select)+i.icon,
|
|
.label.compact>:not(.overlay):not(.ripple-circle):not(input):not(select)+i.icon {
|
|
margin-left: .1666666667em
|
|
}
|
|
|
|
.invalid.button,
|
|
.label.invalid {
|
|
border-color: #f44336!important
|
|
}
|
|
|
|
.invalid.button>i.icon,
|
|
.label.invalid>i.icon {
|
|
color: #f44336!important
|
|
}
|
|
|
|
.label.valid,
|
|
.valid.button {
|
|
border-color: #4caf50!important
|
|
}
|
|
|
|
.label.valid>i.icon,
|
|
.valid.button>i.icon {
|
|
color: #4caf50!important
|
|
}
|
|
|
|
.layout.resizable>.sash {
|
|
z-index: 1
|
|
}
|
|
|
|
.layout.horizontal.resizable.sash-dragging,
|
|
.sash-dragging.layout.resizable:not(.vertical):not(.horizontal) {
|
|
cursor: col-resize!important
|
|
}
|
|
|
|
.layout.horizontal.resizable>.sash,
|
|
.layout.resizable:not(.vertical):not(.horizontal)>.sash {
|
|
position: absolute;
|
|
top: 0;
|
|
right: auto;
|
|
bottom: 0;
|
|
left: auto;
|
|
cursor: col-resize;
|
|
width: 4px;
|
|
margin-left: -2px;
|
|
-webkit-transform: translateX(-2px);
|
|
transform: translateX(-2px)
|
|
}
|
|
|
|
.layout.vertical.resizable.sash-dragging,
|
|
.resizable.sash-dragging.layout:not(.vertical):not(.horizontal) {
|
|
cursor: row-resize!important
|
|
}
|
|
|
|
.layout.vertical.resizable>.sash,
|
|
.resizable.layout:not(.vertical):not(.horizontal)>.sash {
|
|
position: absolute;
|
|
top: auto;
|
|
right: 0;
|
|
bottom: auto;
|
|
left: 0;
|
|
cursor: row-resize;
|
|
height: 4px;
|
|
margin-top: -2px;
|
|
-webkit-transform: translateY(-2px);
|
|
transform: translateY(-2px)
|
|
}
|
|
|
|
.modal {
|
|
top: 50%;
|
|
left: 50%;
|
|
-webkit-transform: translate(-50%, -50%);
|
|
transform: translate(-50%, -50%);
|
|
position: fixed;
|
|
z-index: 1300!important;
|
|
max-width: 90vw;
|
|
max-height: 90vh;
|
|
margin: 0;
|
|
transition: none;
|
|
transition-property: opacity, -webkit-transform;
|
|
transition-property: transform, opacity;
|
|
transition-property: transform, opacity, -webkit-transform;
|
|
transition-duration: .15s
|
|
}
|
|
|
|
.modal-backdrop:before {
|
|
position: fixed!important;
|
|
cursor: pointer!important;
|
|
z-index: 1299!important;
|
|
transition-duration: .15s!important
|
|
}
|
|
|
|
html.flexbox-tweener .modal.card {
|
|
max-height: none
|
|
}
|
|
|
|
html.flexbox-tweener .modal.card>.card-block {
|
|
max-height: 72vh
|
|
}
|
|
|
|
.modal:not(.show) {
|
|
display: none
|
|
}
|
|
|
|
.modal:not(.open) {
|
|
opacity: 0;
|
|
-webkit-transform: translate(-50%, -50%) translateY(-3rem);
|
|
transform: translate(-50%, -50%) translateY(-3rem)
|
|
}
|
|
|
|
.modal.fullscreen,
|
|
.modal.fullscreen-request {
|
|
border-width: 0;
|
|
border-radius: 0;
|
|
max-width: none;
|
|
width: 100%;
|
|
max-height: none;
|
|
height: 100%
|
|
}
|
|
|
|
html.flexbox-tweener .modal.fullscreen-request.card>.card-block,
|
|
html.flexbox-tweener .modal.fullscreen.card>.card-block {
|
|
max-height: none
|
|
}
|
|
|
|
.popover:not(.show) {
|
|
display: none
|
|
}
|
|
|
|
.popover:not(.open) {
|
|
opacity: 0;
|
|
margin-top: -1rem!important
|
|
}
|
|
|
|
.popover {
|
|
position: fixed;
|
|
top: 0;
|
|
left: 0;
|
|
z-index: 1600!important;
|
|
overflow: visible;
|
|
max-width: 80vw;
|
|
margin: 0;
|
|
transition: none;
|
|
transition-property: opacity, margin-top;
|
|
transition-duration: .15s
|
|
}
|
|
|
|
.popover.card {
|
|
max-height: 50vh
|
|
}
|
|
|
|
html.flexbox-tweener .popover.card {
|
|
max-height: none
|
|
}
|
|
|
|
html.flexbox-tweener .popover.card>.card-block {
|
|
max-height: 40vh
|
|
}
|
|
|
|
.popover.fullscreen,
|
|
.popover.fullscreen-request {
|
|
border-width: 0;
|
|
border-radius: 0;
|
|
max-width: none;
|
|
width: 100%;
|
|
max-height: none;
|
|
height: 100%
|
|
}
|
|
|
|
html.flexbox-tweener .popover.fullscreen-request.card>.card-block,
|
|
html.flexbox-tweener .popover.fullscreen.card>.card-block {
|
|
max-height: none
|
|
}
|
|
|
|
.popover.moving {
|
|
transition: -webkit-transform .15s;
|
|
transition: transform .15s;
|
|
transition: transform .15s, -webkit-transform .15s
|
|
}
|
|
|
|
.popover.moving:after {
|
|
transition: none;
|
|
transition-property: left, top;
|
|
transition-duration: .15s
|
|
}
|
|
|
|
select {
|
|
font-family: -apple-system, BlinkMacSystemFont, Segoe UI, Roboto, Oxygen, Ubuntu, Cantarell, Fira Sans, Droid Sans, Helvetica Neue, Arial, sans-serif
|
|
}
|
|
|
|
option {
|
|
padding: .25em .375em
|
|
}
|
|
|
|
optgroup {
|
|
font-style: normal
|
|
}
|
|
|
|
optgroup:before {
|
|
padding: .25em .375em
|
|
}
|
|
|
|
optgroup option {
|
|
padding: .25em .375em .25em 1.125em
|
|
}
|
|
|
|
.select {
|
|
cursor: pointer;
|
|
position: relative
|
|
}
|
|
|
|
.select.button,
|
|
.select.label {
|
|
text-align: left
|
|
}
|
|
|
|
.select select {
|
|
width: 100%;
|
|
height: 100%;
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
bottom: 0;
|
|
left: 0;
|
|
-webkit-appearance: none;
|
|
-moz-appearance: none;
|
|
appearance: none;
|
|
cursor: pointer;
|
|
margin: 0!important;
|
|
opacity: 0;
|
|
border: 0;
|
|
border-radius: inherit;
|
|
z-index: 200!important
|
|
}
|
|
|
|
.select select+label {
|
|
padding-right: 1.875em;
|
|
min-height: 1.5em;
|
|
min-width: 1.5em;
|
|
-webkit-flex-grow: 1;
|
|
-ms-flex-positive: 1;
|
|
flex-grow: 1;
|
|
cursor: pointer
|
|
}
|
|
|
|
.select select+label:empty {
|
|
padding-right: 0
|
|
}
|
|
|
|
.select select+label:after {
|
|
position: absolute;
|
|
right: 0;
|
|
top: 0;
|
|
content: "arrow_drop_down"
|
|
}
|
|
|
|
.select select+label[data-icon]:after {
|
|
content: attr(data-icon)
|
|
}
|
|
|
|
.select select+label[data-icon-closed]:after {
|
|
content: attr(data-icon-closed)
|
|
}
|
|
|
|
.select.open select+label:after {
|
|
content: "arrow_drop_up"
|
|
}
|
|
|
|
.select.open select+label[data-icon]:after {
|
|
content: attr(data-icon)
|
|
}
|
|
|
|
.select.open select+label[data-icon-open]:after {
|
|
content: attr(data-icon-open)
|
|
}
|
|
|
|
.select.popover-anchor-bottom {
|
|
border-bottom-right-radius: 0;
|
|
border-bottom-left-radius: 0
|
|
}
|
|
|
|
.select.popover-anchor-left {
|
|
border-bottom-left-radius: 0;
|
|
border-top-left-radius: 0
|
|
}
|
|
|
|
.select.popover-anchor-right {
|
|
border-bottom-right-radius: 0;
|
|
border-top-right-radius: 0
|
|
}
|
|
|
|
.select.popover-anchor-top {
|
|
border-top-right-radius: 0;
|
|
border-top-left-radius: 0
|
|
}
|
|
|
|
.select.invalid>label:after,
|
|
select+label.invalid:after,
|
|
select.invalid+label:after {
|
|
color: #f44336!important
|
|
}
|
|
|
|
.select-popover .card-block {
|
|
padding: .3125rem 0
|
|
}
|
|
|
|
.select-popover .button {
|
|
display: block;
|
|
border-radius: 0;
|
|
margin-bottom: 0;
|
|
text-align: left
|
|
}
|
|
|
|
.select-popover .divider {
|
|
margin-top: .3125rem
|
|
}
|
|
|
|
.select.valid>label:after,
|
|
select+label.valid:after,
|
|
select.valid+label:after {
|
|
color: #4caf50!important
|
|
}
|
|
|
|
.spacer {
|
|
-webkit-flex: 1 1 auto!important;
|
|
-ms-flex: 1 1 auto!important;
|
|
flex: 1 1 auto!important;
|
|
margin: 0!important
|
|
}
|
|
|
|
.tagbox-tags {
|
|
margin-right: -.3125rem;
|
|
margin-left: -.3125rem;
|
|
display: -webkit-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-flex-wrap: wrap;
|
|
-ms-flex-wrap: wrap;
|
|
flex-wrap: wrap
|
|
}
|
|
|
|
.tagbox-tags:last-child {
|
|
margin-bottom: -.625rem
|
|
}
|
|
|
|
.multiple>.tagbox-tags:last-child,
|
|
.tagbox-tags>.tagbox-tags:last-child {
|
|
margin-bottom: 0
|
|
}
|
|
|
|
.tagbox-tags>.tagbox-partial,
|
|
.tagbox-tags>.tagbox-tag {
|
|
margin-right: .3125rem;
|
|
margin-left: .3125rem;
|
|
white-space: nowrap;
|
|
z-index: 0
|
|
}
|
|
|
|
.tagbox input.tagbox-partial {
|
|
margin-bottom: .625rem;
|
|
min-width: 6.5em
|
|
}
|
|
|
|
.tagbox {
|
|
padding: 0!important
|
|
}
|
|
|
|
.tagbox-partial {
|
|
margin: 0!important
|
|
}
|
|
|
|
.popover .tagbox-partial {
|
|
min-width: 100%!important;
|
|
width: 6.5em
|
|
}
|
|
|
|
[class$=-closer]:not(.disabled),
|
|
[class$=-opener]:not(.disabled),
|
|
[class$=-toggler]:not(.disabled),
|
|
[class*="-closer "]:not(.disabled),
|
|
[class*="-opener "]:not(.disabled),
|
|
[class*="-toggler "]:not(.disabled) {
|
|
cursor: pointer
|
|
}
|
|
|
|
textarea {
|
|
resize: vertical
|
|
}
|
|
|
|
.disabled textarea,
|
|
textarea.disabled,
|
|
textarea.unresizable,
|
|
textarea[disabled] {
|
|
resize: none
|
|
}
|
|
|
|
.toast {
|
|
display: block;
|
|
border-radius: .375em;
|
|
pointer-events: auto;
|
|
transition: none;
|
|
transition-property: border-radius, border-width, opacity, box-shadow, font-size, padding, margin, -webkit-filter;
|
|
transition-property: border-radius, border-width, opacity, filter, box-shadow, font-size, padding, margin;
|
|
transition-property: border-radius, border-width, opacity, filter, box-shadow, font-size, padding, margin, -webkit-filter;
|
|
transition-duration: .15s;
|
|
-webkit-transform: translateZ(0);
|
|
transform: translateZ(0)
|
|
}
|
|
|
|
.toast>* {
|
|
margin-bottom: 0!important
|
|
}
|
|
|
|
.toast>script:last-child {
|
|
display: none!important
|
|
}
|
|
|
|
.toast-img {
|
|
width: 2.25em;
|
|
border-radius: .375em
|
|
}
|
|
|
|
.toast-buttons {
|
|
padding-right: .625rem;
|
|
padding-left: .625rem
|
|
}
|
|
|
|
.toast>.infobar {
|
|
transition: padding .15s
|
|
}
|
|
|
|
html.flexbox-tweener .toast>.infobar {
|
|
-webkit-flex-wrap: nowrap;
|
|
-ms-flex-wrap: nowrap;
|
|
flex-wrap: nowrap
|
|
}
|
|
|
|
html.flexbox-tweener .toast>.infobar .infobar-center {
|
|
-webkit-flex-basis: auto;
|
|
-ms-flex-preferred-size: auto;
|
|
flex-basis: auto
|
|
}
|
|
|
|
.toast .infobar {
|
|
padding: .625rem .9375rem
|
|
}
|
|
|
|
.toast:not(.open) {
|
|
border-width: 0!important;
|
|
opacity: 0;
|
|
font-size: 0;
|
|
padding: 0;
|
|
margin: 0
|
|
}
|
|
|
|
.toast:not(.open)>.infobar {
|
|
padding: 0
|
|
}
|
|
|
|
.toast-queue {
|
|
display: -webkit-flex;
|
|
display: -ms-flexbox;
|
|
display: flex
|
|
}
|
|
|
|
.toast-queue.left {
|
|
-webkit-align-items: flex-start;
|
|
-ms-flex-align: start;
|
|
align-items: flex-start
|
|
}
|
|
|
|
.toast-queue.left:not(:empty) {
|
|
margin-left: .625rem
|
|
}
|
|
|
|
.toast-queue.center {
|
|
margin-right: .625rem;
|
|
margin-left: .625rem;
|
|
-webkit-align-items: center;
|
|
-ms-flex-align: center;
|
|
align-items: center
|
|
}
|
|
|
|
.toast-queue.center:empty {
|
|
margin-right: .3125rem;
|
|
margin-left: .3125rem
|
|
}
|
|
|
|
.toast-queue.right {
|
|
-webkit-align-items: flex-end;
|
|
-ms-flex-align: end;
|
|
align-items: flex-end
|
|
}
|
|
|
|
.toast-queue.right:not(:empty) {
|
|
margin-right: .625rem
|
|
}
|
|
|
|
.toast-queue.expanded {
|
|
width: 100%;
|
|
margin: 0!important
|
|
}
|
|
|
|
.toast-queue.expanded:not(:empty) {
|
|
box-shadow: 0 7px 10px 1px rgba(0, 0, 0, .14), 0 2px 16px 2px rgba(0, 0, 0, .12), 0 4px 5px -3px rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.toast-queue.expanded .toast {
|
|
box-shadow: none;
|
|
width: 100%;
|
|
margin: 0!important;
|
|
border-right-width: 0;
|
|
border-left-width: 0;
|
|
border-radius: 0
|
|
}
|
|
|
|
html.flexbox-tweener .toast-queue:not(.expanded):not(:empty) {
|
|
-webkit-flex: 1 1 0%;
|
|
-ms-flex: 1 1 0%;
|
|
flex: 1 1 0%
|
|
}
|
|
|
|
html.flexbox-tweener .toast-queue:not(.expanded):not(:empty) .toast {
|
|
max-width: 100%
|
|
}
|
|
|
|
.toast-queues {
|
|
position: fixed;
|
|
right: 0;
|
|
left: 0;
|
|
z-index: 1500!important;
|
|
display: -webkit-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-flex-wrap: wrap;
|
|
-ms-flex-wrap: wrap;
|
|
flex-wrap: wrap;
|
|
width: 100%;
|
|
pointer-events: none
|
|
}
|
|
|
|
.toast-queues.top {
|
|
top: 0
|
|
}
|
|
|
|
.layout.vertical>.layout-header.sticky~.toast-queues.top,
|
|
.layout:not(.vertical):not(.horizontal)>.layout-header.sticky~.toast-queues.top {
|
|
top: 56px
|
|
}
|
|
|
|
.toast-queues.top .toast-queues-row {
|
|
-webkit-align-items: flex-start;
|
|
-ms-flex-align: start;
|
|
align-items: flex-start
|
|
}
|
|
|
|
.toast-queues.top .toast-queue {
|
|
-webkit-flex-direction: column;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column
|
|
}
|
|
|
|
.toast-queues.top .toast-queue .toast {
|
|
margin-top: .625rem
|
|
}
|
|
|
|
.toast-queues.top .toast-queue.expanded .toast {
|
|
border-top-width: 0;
|
|
border-bottom-width: 1px;
|
|
border-bottom-style: solid
|
|
}
|
|
|
|
.toast-queues.bottom {
|
|
bottom: 0
|
|
}
|
|
|
|
.toast-queues.bottom .toast-queues-row {
|
|
-webkit-align-items: flex-end;
|
|
-ms-flex-align: end;
|
|
align-items: flex-end
|
|
}
|
|
|
|
.toast-queues.bottom .toast-queue {
|
|
-webkit-flex-direction: column-reverse;
|
|
-ms-flex-direction: column-reverse;
|
|
flex-direction: column-reverse
|
|
}
|
|
|
|
.toast-queues.bottom .toast-queue .toast {
|
|
margin-bottom: .625rem
|
|
}
|
|
|
|
.toast-queues.bottom .toast-queue.expanded .toast {
|
|
border-bottom-width: 0;
|
|
border-top-width: 1px;
|
|
border-top-style: solid
|
|
}
|
|
|
|
.toast-queues-row {
|
|
display: -webkit-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-justify-content: space-between;
|
|
-ms-flex-pack: justify;
|
|
justify-content: space-between;
|
|
width: 100%
|
|
}
|
|
|
|
@media screen and (max-width:511.9px) {
|
|
.toast-queues.top .toast-queues-row {
|
|
-webkit-flex-direction: column;
|
|
-ms-flex-direction: column;
|
|
flex-direction: column
|
|
}
|
|
.toast-queues.top .toast {
|
|
border-top-width: 0;
|
|
border-bottom-width: 1px;
|
|
border-bottom-style: solid
|
|
}
|
|
.toast-queues.bottom .toast-queues-row {
|
|
-webkit-flex-direction: column-reverse;
|
|
-ms-flex-direction: column-reverse;
|
|
flex-direction: column-reverse
|
|
}
|
|
.toast-queues.bottom .toast {
|
|
border-bottom-width: 0;
|
|
border-top-width: 1px;
|
|
border-top-style: solid
|
|
}
|
|
.toast-queue {
|
|
width: 100%;
|
|
margin: 0!important
|
|
}
|
|
.toast-queue:not(:empty) {
|
|
box-shadow: 0 7px 10px 1px rgba(0, 0, 0, .14), 0 2px 16px 2px rgba(0, 0, 0, .12), 0 4px 5px -3px rgba(0, 0, 0, .4)
|
|
}
|
|
.toast-queue .toast {
|
|
box-shadow: none;
|
|
width: 100%;
|
|
margin: 0!important;
|
|
border-right-width: 0;
|
|
border-left-width: 0;
|
|
border-radius: 0
|
|
}
|
|
}
|
|
|
|
.titlebar,
|
|
.toolbar {
|
|
display: -webkit-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-align-items: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
-webkit-justify-content: center;
|
|
-ms-flex-pack: center;
|
|
justify-content: center;
|
|
overflow: hidden!important;
|
|
padding: .625rem
|
|
}
|
|
|
|
.layout-header.titlebar,
|
|
.titlebar:not(.layout-footer),
|
|
.toolbar.layout-header,
|
|
.toolbar:not(.layout-footer) {
|
|
height: 38px;
|
|
border-bottom-width: 1px;
|
|
border-bottom-style: solid
|
|
}
|
|
|
|
.layout-header.titlebar .button,
|
|
.layout-header.titlebar .label,
|
|
.layout-header.titlebar input,
|
|
.titlebar:not(.layout-footer) .button,
|
|
.titlebar:not(.layout-footer) .label,
|
|
.titlebar:not(.layout-footer) input,
|
|
.toolbar.layout-header .button,
|
|
.toolbar.layout-header .label,
|
|
.toolbar.layout-header input,
|
|
.toolbar:not(.layout-footer) .button,
|
|
.toolbar:not(.layout-footer) .label,
|
|
.toolbar:not(.layout-footer) input {
|
|
padding: 2px 5px!important
|
|
}
|
|
|
|
html.mac .layout-header.titlebar,
|
|
html.mac .toolbar.layout-header {
|
|
-webkit-app-region: drag
|
|
}
|
|
|
|
html.mac .layout-header.titlebar>.multiple>:not(.spacer),
|
|
html.mac .layout-header.titlebar>:not(.multiple):not(.title),
|
|
html.mac .toolbar.layout-header>.multiple>:not(.spacer),
|
|
html.mac .toolbar.layout-header>:not(.multiple):not(.title) {
|
|
-webkit-app-region: no-drag
|
|
}
|
|
|
|
.layout-footer.titlebar,
|
|
.toolbar.layout-footer {
|
|
border-top-width: 1px;
|
|
border-top-style: solid
|
|
}
|
|
|
|
.toolbar-semaphore-spacer {
|
|
width: 56px
|
|
}
|
|
|
|
abbr[title] {
|
|
cursor: help;
|
|
text-decoration: none;
|
|
border-width: 0 0 1px;
|
|
border-style: dotted;
|
|
border-color: inherit
|
|
}
|
|
|
|
address {
|
|
font-style: normal
|
|
}
|
|
|
|
address>* {
|
|
margin-bottom: 0!important
|
|
}
|
|
|
|
address>script:last-child {
|
|
display: none!important
|
|
}
|
|
|
|
code {
|
|
font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace;
|
|
background-color: rgba(0, 0, 0, .075);
|
|
padding: .09em .18em;
|
|
border-radius: .375em
|
|
}
|
|
|
|
pre>code {
|
|
padding: 0;
|
|
border: 0;
|
|
background: transparent
|
|
}
|
|
|
|
h1,
|
|
h2,
|
|
h3,
|
|
h4,
|
|
h5,
|
|
h6 {
|
|
font-family: inherit;
|
|
font-weight: 500
|
|
}
|
|
|
|
h1>small,
|
|
h2>small,
|
|
h3>small,
|
|
h4>small,
|
|
h5>small,
|
|
h6>small {
|
|
opacity: .875
|
|
}
|
|
|
|
a {
|
|
-ms-touch-action: manipulation;
|
|
touch-action: manipulation;
|
|
cursor: pointer;
|
|
overflow-wrap: break-word;
|
|
word-wrap: break-word;
|
|
word-break: break-word;
|
|
-webkit-hyphens: auto;
|
|
-moz-hyphens: auto;
|
|
-ms-hyphens: auto;
|
|
hyphens: auto;
|
|
color: inherit;
|
|
text-decoration: none
|
|
}
|
|
|
|
address a:hover,
|
|
li a:hover,
|
|
p a:hover,
|
|
td a:hover,
|
|
th a:hover {
|
|
text-decoration: underline
|
|
}
|
|
|
|
.link-inherit,
|
|
.link-inherit:active,
|
|
.link-inherit:hover {
|
|
color: inherit
|
|
}
|
|
|
|
dd,
|
|
dl,
|
|
ol,
|
|
ul {
|
|
padding-left: 1.25rem
|
|
}
|
|
|
|
dd {
|
|
margin: 0
|
|
}
|
|
|
|
ol ol {
|
|
list-style-type: upper-roman
|
|
}
|
|
|
|
ul.no-bullet {
|
|
padding-left: 0;
|
|
list-style-type: none
|
|
}
|
|
|
|
mark {
|
|
background-color: rgba(250, 191, 64, .25);
|
|
padding: .09em .18em;
|
|
border-radius: .375em
|
|
}
|
|
|
|
p {
|
|
overflow-wrap: break-word;
|
|
word-break: break-word;
|
|
-webkit-hyphens: auto;
|
|
-moz-hyphens: auto;
|
|
-ms-hyphens: auto;
|
|
hyphens: auto;
|
|
max-width: 100%;
|
|
word-wrap: break-word
|
|
}
|
|
|
|
p>* {
|
|
margin-bottom: 0!important
|
|
}
|
|
|
|
p>script:last-child {
|
|
display: none!important
|
|
}
|
|
|
|
pre {
|
|
display: -webkit-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
padding: .625rem
|
|
}
|
|
|
|
samp {
|
|
font-family: Menlo, Monaco, Consolas, Liberation Mono, Courier New, monospace
|
|
}
|
|
|
|
small {
|
|
font-size: .75em
|
|
}
|
|
|
|
span>* {
|
|
margin-bottom: 0!important
|
|
}
|
|
|
|
span>script:last-child {
|
|
display: none!important
|
|
}
|
|
|
|
.wobble {
|
|
-webkit-animation: a .35s both;
|
|
animation: a .35s both
|
|
}
|
|
|
|
.popover-note-attachments,
|
|
.popover-note-tags {
|
|
min-width: 6.5em
|
|
}
|
|
|
|
.modal-backdrop.obscured:before {
|
|
cursor: default!important
|
|
}
|
|
|
|
.theme-dark body {
|
|
background-color: #2e2e2e;
|
|
color: #f6f6f6
|
|
}
|
|
|
|
.theme-dark ::-moz-selection {
|
|
background-color: rgba(239, 108, 0, .2)
|
|
}
|
|
|
|
.theme-dark ::selection {
|
|
background-color: rgba(239, 108, 0, .2)
|
|
}
|
|
|
|
.theme-dark ::-webkit-input-placeholder {
|
|
color: hsla(0, 0%, 96%, .65)
|
|
}
|
|
|
|
.theme-dark ::-moz-placeholder {
|
|
color: hsla(0, 0%, 96%, .65)
|
|
}
|
|
|
|
.theme-dark ::-ms-input-placeholder {
|
|
color: hsla(0, 0%, 96%, .65)
|
|
}
|
|
|
|
.theme-dark ::placeholder {
|
|
color: hsla(0, 0%, 96%, .65)
|
|
}
|
|
|
|
.theme-dark .button,
|
|
.theme-dark .card,
|
|
.theme-dark .container,
|
|
.theme-dark .label,
|
|
.theme-dark .tagbox,
|
|
.theme-dark input,
|
|
.theme-dark textarea {
|
|
background-color: #363636;
|
|
color: #f6f6f6;
|
|
border-color: #1f1f1f
|
|
}
|
|
|
|
.theme-dark .button:not(.active):hover {
|
|
background-color: #3e3e3e
|
|
}
|
|
|
|
.theme-dark .button.active,
|
|
.theme-dark .button:active {
|
|
background-color: #2e2e2e
|
|
}
|
|
|
|
.theme-dark .accent.button,
|
|
.theme-dark .button.accent,
|
|
.theme-dark .card.accent,
|
|
.theme-dark .container.accent,
|
|
.theme-dark .label.accent,
|
|
.theme-dark .tagbox.accent,
|
|
.theme-dark input.accent,
|
|
.theme-dark textarea.accent {
|
|
background-color: #ef6c00;
|
|
color: #f6f6f6;
|
|
border-color: #c15700
|
|
}
|
|
|
|
.theme-dark .button.accent:not(.active):hover {
|
|
background-color: #fe7300
|
|
}
|
|
|
|
.theme-dark .button.accent.active,
|
|
.theme-dark .button.accent:active {
|
|
background-color: #e06500
|
|
}
|
|
|
|
.theme-dark .text-accent {
|
|
color: #ef6c00
|
|
}
|
|
|
|
.theme-dark .button.highlight,
|
|
.theme-dark .card.highlight,
|
|
.theme-dark .container.highlight,
|
|
.theme-dark .highlight.button,
|
|
.theme-dark .label.highlight,
|
|
.theme-dark .tagbox.highlight,
|
|
.theme-dark input.highlight,
|
|
.theme-dark textarea.highlight {
|
|
background-color: #3e3e3e;
|
|
color: #f6f6f6;
|
|
border-color: #272727
|
|
}
|
|
|
|
.theme-dark .button.highlight:not(.active):hover {
|
|
background-color: #454545
|
|
}
|
|
|
|
.theme-dark .button.highlight.active,
|
|
.theme-dark .button.highlight:active {
|
|
background-color: #363636
|
|
}
|
|
|
|
.theme-dark .text-highlight {
|
|
color: #3e3e3e
|
|
}
|
|
|
|
.theme-dark .button.warning,
|
|
.theme-dark .card.warning,
|
|
.theme-dark .container.warning,
|
|
.theme-dark .label.warning,
|
|
.theme-dark .tagbox.warning,
|
|
.theme-dark .warning.button,
|
|
.theme-dark input.warning,
|
|
.theme-dark textarea.warning {
|
|
background-color: #f44336;
|
|
color: #f6f6f6;
|
|
border-color: #ef1d0d
|
|
}
|
|
|
|
.theme-dark .button.warning:not(.active):hover {
|
|
background-color: #f55145
|
|
}
|
|
|
|
.theme-dark .button.warning.active,
|
|
.theme-dark .button.warning:active {
|
|
background-color: #f33527
|
|
}
|
|
|
|
.theme-dark .text-warning {
|
|
color: #f44336
|
|
}
|
|
|
|
.theme-dark .layout.column {
|
|
border-color: #000
|
|
}
|
|
|
|
.theme-dark .editor {
|
|
background-color: #1f1f1f;
|
|
border-color: #000
|
|
}
|
|
|
|
.theme-dark pre {
|
|
background-color: #161616;
|
|
color: inherit
|
|
}
|
|
|
|
.theme-dark .katex *,
|
|
.theme-dark .katex .frac-line {
|
|
border-color: #f6f6f6
|
|
}
|
|
|
|
.theme-dark .list-header {
|
|
background-color: #1f1f1f;
|
|
border-color: #000;
|
|
color: #909090
|
|
}
|
|
|
|
.theme-dark .list-item {
|
|
background-color: transparent;
|
|
color: inherit;
|
|
border-color: hsla(0, 0%, 100%, .12)
|
|
}
|
|
|
|
.theme-dark .list-item:not(.active):hover {
|
|
background-color: hsla(0, 0%, 100%, .04)
|
|
}
|
|
|
|
.theme-dark .list-item.active,
|
|
.theme-dark .list-item:active {
|
|
background-color: hsla(0, 0%, 100%, .08)
|
|
}
|
|
|
|
.theme-dark .mainbar {
|
|
background-color: #0f0f0f;
|
|
color: #f6f6f6
|
|
}
|
|
|
|
.theme-dark .middlebar {
|
|
background-color: #161616;
|
|
color: #f6f6f6
|
|
}
|
|
|
|
.theme-dark .middlebar .list-item {
|
|
background-color: transparent;
|
|
color: inherit;
|
|
border-color: hsla(0, 0%, 100%, .12)
|
|
}
|
|
|
|
.theme-dark .middlebar .list-item:not(.active):hover {
|
|
background-color: hsla(0, 0%, 100%, .04)
|
|
}
|
|
|
|
.theme-dark .middlebar .list-item.active,
|
|
.theme-dark .middlebar .list-item:active {
|
|
background-color: hsla(0, 0%, 100%, .08)
|
|
}
|
|
|
|
.theme-dark .monaco-editor .minimap-slider .minimap-slider-horizontal,
|
|
.theme-dark .monaco-editor .monaco-scrollable-element>.scrollbar>.slider {
|
|
background: hsla(0, 0%, 40%, .35)!important
|
|
}
|
|
|
|
.theme-dark .monaco-editor .minimap-slider .minimap-slider-horizontal:hover,
|
|
.theme-dark .monaco-editor .monaco-scrollable-element>.scrollbar>.slider:hover {
|
|
background: hsla(0, 0%, 46%, .35)!important
|
|
}
|
|
|
|
.theme-dark .monaco-editor .minimap-slider .minimap-slider-horizontal .active,
|
|
.theme-dark .monaco-editor .minimap-slider .minimap-slider-horizontal:active,
|
|
.theme-dark .monaco-editor .monaco-scrollable-element>.scrollbar>.slider .active,
|
|
.theme-dark .monaco-editor .monaco-scrollable-element>.scrollbar>.slider:active {
|
|
background: rgba(94, 94, 94, .35)!important
|
|
}
|
|
|
|
.theme-dark .monaco-editor .selected-text,
|
|
.theme-dark .monaco-editor .selected-text.focused {
|
|
background-color: rgba(239, 108, 0, .2)
|
|
}
|
|
|
|
.theme-dark .monaco-editor .margin {
|
|
background-color: #1f1f1f
|
|
}
|
|
|
|
.theme-dark .monaco-editor .current-line~.line-numbers,
|
|
.theme-dark .monaco-editor .line-numbers {
|
|
color: #afafaf
|
|
}
|
|
|
|
.theme-dark .toast {
|
|
background-color: #363636;
|
|
border-color: #1f1f1f;
|
|
color: #f6f6f6
|
|
}
|
|
|
|
.theme-dark .toast:not(.active):hover {
|
|
background-color: #3e3e3e
|
|
}
|
|
|
|
.theme-dark .toast.active,
|
|
.theme-dark .toast:active {
|
|
background-color: #2e2e2e
|
|
}
|
|
|
|
.theme-dark .popover .list-item {
|
|
background-color: #363636;
|
|
color: #f6f6f6;
|
|
border-color: #1f1f1f
|
|
}
|
|
|
|
.theme-dark .popover .list-item:not(.active):hover {
|
|
background-color: #3e3e3e
|
|
}
|
|
|
|
.theme-dark .popover .list-item.active,
|
|
.theme-dark .popover .list-item:active {
|
|
background-color: #2e2e2e
|
|
}
|
|
|
|
.theme-dark .preview {
|
|
background-color: #1f1f1f;
|
|
border-color: #000;
|
|
color: #f6f6f6
|
|
}
|
|
|
|
.theme-dark .preview h1,
|
|
.theme-dark .preview h2,
|
|
.theme-dark .preview h3,
|
|
.theme-dark .preview h4,
|
|
.theme-dark .preview h5,
|
|
.theme-dark .preview h6 {
|
|
border-color: #2f2f2f
|
|
}
|
|
|
|
.theme-dark .preview h1,
|
|
.theme-dark .preview h2,
|
|
.theme-dark .preview h3,
|
|
.theme-dark .preview h4,
|
|
.theme-dark .preview h5 {
|
|
color: inherit
|
|
}
|
|
|
|
.theme-dark .preview h6 {
|
|
color: #afafaf
|
|
}
|
|
|
|
.theme-dark .preview table td,
|
|
.theme-dark .preview table th {
|
|
border-color: #2f2f2f
|
|
}
|
|
|
|
.theme-dark .preview table tr {
|
|
background-color: #1f1f1f
|
|
}
|
|
|
|
.theme-dark .preview table tr:nth-child(2n) {
|
|
background-color: #232323
|
|
}
|
|
|
|
.theme-dark .preview code,
|
|
.theme-dark .preview li code,
|
|
.theme-dark .preview p code,
|
|
.theme-dark .preview table code {
|
|
background-color: #161616!important;
|
|
color: inherit!important
|
|
}
|
|
|
|
.theme-dark .preview pre code {
|
|
background-color: transparent!important
|
|
}
|
|
|
|
.theme-dark .preview blockquote {
|
|
color: #afafaf;
|
|
border-color: #3f3f3f
|
|
}
|
|
|
|
.theme-dark .preview kbd {
|
|
background-color: #4f4f4f;
|
|
color: #f2f2f2;
|
|
box-shadow: inset 0 -1px 0 #5f5f5f;
|
|
border-color: #565656 #565656 #5f5f5f
|
|
}
|
|
|
|
.theme-dark .preview mark {
|
|
background-color: rgba(239, 108, 0, .2);
|
|
color: #f6f6f6
|
|
}
|
|
|
|
.theme-dark .preview hr {
|
|
background-color: #3f3f3f
|
|
}
|
|
|
|
.theme-dark .preview address a,
|
|
.theme-dark .preview dd a,
|
|
.theme-dark .preview dt a,
|
|
.theme-dark .preview h1 a,
|
|
.theme-dark .preview h2 a,
|
|
.theme-dark .preview h3 a,
|
|
.theme-dark .preview h4 a,
|
|
.theme-dark .preview h5 a,
|
|
.theme-dark .preview h6 a,
|
|
.theme-dark .preview li a,
|
|
.theme-dark .preview p a,
|
|
.theme-dark .preview td a,
|
|
.theme-dark .preview th a {
|
|
color: #6796e6
|
|
}
|
|
|
|
.theme-dark .preview address a:hover,
|
|
.theme-dark .preview dd a:hover,
|
|
.theme-dark .preview dt a:hover,
|
|
.theme-dark .preview h1 a:hover,
|
|
.theme-dark .preview h2 a:hover,
|
|
.theme-dark .preview h3 a:hover,
|
|
.theme-dark .preview h4 a:hover,
|
|
.theme-dark .preview h5 a:hover,
|
|
.theme-dark .preview h6 a:hover,
|
|
.theme-dark .preview li a:hover,
|
|
.theme-dark .preview p a:hover,
|
|
.theme-dark .preview td a:hover,
|
|
.theme-dark .preview th a:hover {
|
|
color: #749fe8
|
|
}
|
|
|
|
.theme-dark .preview address a:active,
|
|
.theme-dark .preview dd a:active,
|
|
.theme-dark .preview dt a:active,
|
|
.theme-dark .preview h1 a:active,
|
|
.theme-dark .preview h2 a:active,
|
|
.theme-dark .preview h3 a:active,
|
|
.theme-dark .preview h4 a:active,
|
|
.theme-dark .preview h5 a:active,
|
|
.theme-dark .preview h6 a:active,
|
|
.theme-dark .preview li a:active,
|
|
.theme-dark .preview p a:active,
|
|
.theme-dark .preview td a:active,
|
|
.theme-dark .preview th a:active {
|
|
color: #5a8de4
|
|
}
|
|
|
|
.theme-dark .quick-panel .list-item {
|
|
background-color: #363636;
|
|
color: #f6f6f6;
|
|
border-color: #1f1f1f
|
|
}
|
|
|
|
.theme-dark .quick-panel .list-item:not(.active):hover {
|
|
background-color: #3e3e3e
|
|
}
|
|
|
|
.theme-dark .quick-panel .list-item.active,
|
|
.theme-dark .quick-panel .list-item:active {
|
|
background-color: #2e2e2e
|
|
}
|
|
|
|
html.no-overlay-scrollbars .theme-dark ::-webkit-scrollbar {
|
|
background-color: transparent;
|
|
width: 12px;
|
|
height: 12px
|
|
}
|
|
|
|
html.no-overlay-scrollbars .theme-dark ::-webkit-scrollbar-track,
|
|
html.no-overlay-scrollbars .theme-dark ::-webkit-scrollbar-track-piece {
|
|
background-color: transparent
|
|
}
|
|
|
|
html.no-overlay-scrollbars .theme-dark ::-webkit-scrollbar-corner {
|
|
background-color: transparent
|
|
}
|
|
|
|
html.no-overlay-scrollbars .theme-dark ::-webkit-scrollbar-thumb {
|
|
background: hsla(0, 0%, 40%, .35)
|
|
}
|
|
|
|
html.no-overlay-scrollbars .theme-dark ::-webkit-scrollbar-thumb:hover {
|
|
background: hsla(0, 0%, 46%, .35)
|
|
}
|
|
|
|
html.no-overlay-scrollbars .theme-dark ::-webkit-scrollbar-thumb:active {
|
|
background: rgba(94, 94, 94, .35)
|
|
}
|
|
|
|
.theme-dark .sidebar {
|
|
background-color: #0f0f0f;
|
|
color: #f6f6f6
|
|
}
|
|
|
|
.theme-dark .sidebar .list-item {
|
|
background-color: transparent;
|
|
color: inherit;
|
|
border-color: hsla(0, 0%, 100%, .12)
|
|
}
|
|
|
|
.theme-dark .sidebar .list-item:not(.active):hover {
|
|
background-color: hsla(0, 0%, 100%, .04)
|
|
}
|
|
|
|
.theme-dark .sidebar .list-item.active,
|
|
.theme-dark .sidebar .list-item:active {
|
|
background-color: hsla(0, 0%, 100%, .08)
|
|
}
|
|
|
|
.theme-dark .titlebar,
|
|
.theme-dark .toolbar {
|
|
background-color: #262626;
|
|
border-color: #000;
|
|
color: #909090
|
|
}
|
|
|
|
.theme-light body {
|
|
background-color: #f7f7f7;
|
|
color: #1f1f1f
|
|
}
|
|
|
|
.theme-light ::-moz-selection {
|
|
background-color: rgba(239, 108, 0, .15)
|
|
}
|
|
|
|
.theme-light ::selection {
|
|
background-color: rgba(239, 108, 0, .15)
|
|
}
|
|
|
|
.theme-light ::-webkit-input-placeholder {
|
|
color: rgba(31, 31, 31, .65)
|
|
}
|
|
|
|
.theme-light ::-moz-placeholder {
|
|
color: rgba(31, 31, 31, .65)
|
|
}
|
|
|
|
.theme-light ::-ms-input-placeholder {
|
|
color: rgba(31, 31, 31, .65)
|
|
}
|
|
|
|
.theme-light ::placeholder {
|
|
color: rgba(31, 31, 31, .65)
|
|
}
|
|
|
|
.theme-light .button,
|
|
.theme-light .card,
|
|
.theme-light .container,
|
|
.theme-light .label,
|
|
.theme-light .tagbox,
|
|
.theme-light input,
|
|
.theme-light textarea {
|
|
background-color: #fff;
|
|
color: #1f1f1f;
|
|
border-color: #dadada
|
|
}
|
|
|
|
.theme-light .button:not(.active):hover {
|
|
background-color: #f7f7f7
|
|
}
|
|
|
|
.theme-light .button.active,
|
|
.theme-light .button:active {
|
|
background-color: #f0f0f0
|
|
}
|
|
|
|
.theme-light .accent.button,
|
|
.theme-light .button.accent,
|
|
.theme-light .card.accent,
|
|
.theme-light .container.accent,
|
|
.theme-light .label.accent,
|
|
.theme-light .tagbox.accent,
|
|
.theme-light input.accent,
|
|
.theme-light textarea.accent {
|
|
background-color: #ef6c00;
|
|
color: #fff;
|
|
border-color: #a54b00
|
|
}
|
|
|
|
.theme-light .button.accent:not(.active):hover {
|
|
background-color: #e06500
|
|
}
|
|
|
|
.theme-light .button.accent.active,
|
|
.theme-light .button.accent:active {
|
|
background-color: #d05e00
|
|
}
|
|
|
|
.theme-light .text-accent {
|
|
color: #ef6c00
|
|
}
|
|
|
|
.theme-light .button.highlight,
|
|
.theme-light .card.highlight,
|
|
.theme-light .container.highlight,
|
|
.theme-light .highlight.button,
|
|
.theme-light .label.highlight,
|
|
.theme-light .tagbox.highlight,
|
|
.theme-light input.highlight,
|
|
.theme-light textarea.highlight {
|
|
background-color: #f0f0f0;
|
|
color: #1f1f1f;
|
|
border-color: #bbb
|
|
}
|
|
|
|
.theme-light .button.highlight:not(.active):hover {
|
|
background-color: #d9d9d9
|
|
}
|
|
|
|
.theme-light .button.highlight.active,
|
|
.theme-light .button.highlight:active {
|
|
background-color: #d1d1d1
|
|
}
|
|
|
|
.theme-light .text-highlight {
|
|
color: #f0f0f0
|
|
}
|
|
|
|
.theme-light .button.warning,
|
|
.theme-light .card.warning,
|
|
.theme-light .container.warning,
|
|
.theme-light .label.warning,
|
|
.theme-light .tagbox.warning,
|
|
.theme-light .warning.button,
|
|
.theme-light input.warning,
|
|
.theme-light textarea.warning {
|
|
background-color: #f44336;
|
|
color: #fff;
|
|
border-color: #d4190c
|
|
}
|
|
|
|
.theme-light .button.warning:not(.active):hover {
|
|
background-color: #f33527
|
|
}
|
|
|
|
.theme-light .button.warning.active,
|
|
.theme-light .button.warning:active {
|
|
background-color: #f22819
|
|
}
|
|
|
|
.theme-light .text-warning {
|
|
color: #f44336
|
|
}
|
|
|
|
.theme-light .layout.column {
|
|
border-color: #dedede
|
|
}
|
|
|
|
.theme-light .editor {
|
|
background-color: #fff;
|
|
border-color: #e6e5e5;
|
|
color: #1f1f1f
|
|
}
|
|
|
|
.theme-light pre {
|
|
background-color: #f6f8fa;
|
|
color: #1f1f1f
|
|
}
|
|
|
|
.theme-light .katex *,
|
|
.theme-light .katex .frac-line {
|
|
border-color: #1f1f1f
|
|
}
|
|
|
|
.theme-light .list-header {
|
|
background-color: #f9f9f9;
|
|
border-color: #dedede;
|
|
color: #6c6b6b
|
|
}
|
|
|
|
.theme-light .list-item {
|
|
background-color: transparent;
|
|
color: inherit;
|
|
border-color: rgba(0, 0, 0, .12)
|
|
}
|
|
|
|
.theme-light .list-item:not(.active):hover {
|
|
background-color: rgba(0, 0, 0, .04)
|
|
}
|
|
|
|
.theme-light .list-item.active,
|
|
.theme-light .list-item:active {
|
|
background-color: rgba(0, 0, 0, .08)
|
|
}
|
|
|
|
.theme-light .mainbar {
|
|
background-color: #f7f7f7;
|
|
color: inherit
|
|
}
|
|
|
|
.theme-light .middlebar {
|
|
background-color: #fff;
|
|
color: #1f1f1f
|
|
}
|
|
|
|
.theme-light .middlebar .list-item {
|
|
background-color: transparent;
|
|
color: inherit;
|
|
border-color: rgba(0, 0, 0, .12)
|
|
}
|
|
|
|
.theme-light .middlebar .list-item:not(.active):hover {
|
|
background-color: rgba(0, 0, 0, .04)
|
|
}
|
|
|
|
.theme-light .middlebar .list-item.active,
|
|
.theme-light .middlebar .list-item:active {
|
|
background-color: rgba(0, 0, 0, .08)
|
|
}
|
|
|
|
.theme-light .monaco-editor .minimap-slider .minimap-slider-horizontal,
|
|
.theme-light .monaco-editor .monaco-scrollable-element>.scrollbar>.slider {
|
|
background: hsla(0, 0%, 62%, .35)!important
|
|
}
|
|
|
|
.theme-light .monaco-editor .minimap-slider .minimap-slider-horizontal:hover,
|
|
.theme-light .monaco-editor .monaco-scrollable-element>.scrollbar>.slider:hover {
|
|
background: hsla(0, 0%, 56%, .35)!important
|
|
}
|
|
|
|
.theme-light .monaco-editor .minimap-slider .minimap-slider-horizontal .active,
|
|
.theme-light .monaco-editor .minimap-slider .minimap-slider-horizontal:active,
|
|
.theme-light .monaco-editor .monaco-scrollable-element>.scrollbar>.slider .active,
|
|
.theme-light .monaco-editor .monaco-scrollable-element>.scrollbar>.slider:active {
|
|
background: hsla(0, 0%, 50%, .35)!important
|
|
}
|
|
|
|
.theme-light .monaco-editor .selected-text,
|
|
.theme-light .monaco-editor .selected-text.focused {
|
|
background-color: rgba(239, 108, 0, .15)
|
|
}
|
|
|
|
.theme-light .monaco-editor .margin {
|
|
background-color: #fff
|
|
}
|
|
|
|
.theme-light .monaco-editor .current-line~.line-numbers,
|
|
.theme-light .monaco-editor .line-numbers {
|
|
color: #6a737d
|
|
}
|
|
|
|
.theme-light .toast {
|
|
background-color: #20272c;
|
|
border-color: #060809;
|
|
color: #fff
|
|
}
|
|
|
|
.theme-light .toast:not(.active):hover {
|
|
background-color: #1a1f23
|
|
}
|
|
|
|
.theme-light .toast.active,
|
|
.theme-light .toast:active {
|
|
background-color: #13171a
|
|
}
|
|
|
|
.theme-light .popover .list-item {
|
|
background-color: transparent;
|
|
color: inherit;
|
|
border-color: rgba(0, 0, 0, .12)
|
|
}
|
|
|
|
.theme-light .popover .list-item:not(.active):hover {
|
|
background-color: rgba(0, 0, 0, .04)
|
|
}
|
|
|
|
.theme-light .popover .list-item.active,
|
|
.theme-light .popover .list-item:active {
|
|
background-color: rgba(0, 0, 0, .08)
|
|
}
|
|
|
|
.theme-light .preview {
|
|
background-color: #fff;
|
|
border-color: #e6e5e5;
|
|
color: #1f1f1f
|
|
}
|
|
|
|
.theme-light .preview h1,
|
|
.theme-light .preview h2,
|
|
.theme-light .preview h3,
|
|
.theme-light .preview h4,
|
|
.theme-light .preview h5,
|
|
.theme-light .preview h6 {
|
|
border-color: #eaecef
|
|
}
|
|
|
|
.theme-light .preview h1,
|
|
.theme-light .preview h2,
|
|
.theme-light .preview h3,
|
|
.theme-light .preview h4,
|
|
.theme-light .preview h5 {
|
|
color: inherit
|
|
}
|
|
|
|
.theme-light .preview h6 {
|
|
color: #6a737d
|
|
}
|
|
|
|
.theme-light .preview table td,
|
|
.theme-light .preview table th {
|
|
border-color: #dfe2e5
|
|
}
|
|
|
|
.theme-light .preview table tr {
|
|
background-color: #fff
|
|
}
|
|
|
|
.theme-light .preview table tr:nth-child(2n) {
|
|
background-color: #f6f8fa
|
|
}
|
|
|
|
.theme-light .preview code,
|
|
.theme-light .preview li code,
|
|
.theme-light .preview p code,
|
|
.theme-light .preview table code {
|
|
background-color: rgba(27, 31, 35, .05)!important;
|
|
color: inherit!important
|
|
}
|
|
|
|
.theme-light .preview pre code {
|
|
background-color: transparent!important
|
|
}
|
|
|
|
.theme-light .preview blockquote {
|
|
color: #6a737d;
|
|
border-color: #dfe2e5
|
|
}
|
|
|
|
.theme-light .preview kbd {
|
|
background-color: #fafbfc;
|
|
color: #444d56;
|
|
box-shadow: inset 0 -1px 0 #959da5;
|
|
border-color: #dfe2e5 #dfe2e5 #959da5
|
|
}
|
|
|
|
.theme-light .preview mark {
|
|
background-color: rgba(239, 108, 0, .15);
|
|
color: #1f1f1f
|
|
}
|
|
|
|
.theme-light .preview hr {
|
|
background-color: #e1e4e8
|
|
}
|
|
|
|
.theme-light .preview address a,
|
|
.theme-light .preview dd a,
|
|
.theme-light .preview dt a,
|
|
.theme-light .preview h1 a,
|
|
.theme-light .preview h2 a,
|
|
.theme-light .preview h3 a,
|
|
.theme-light .preview h4 a,
|
|
.theme-light .preview h5 a,
|
|
.theme-light .preview h6 a,
|
|
.theme-light .preview li a,
|
|
.theme-light .preview p a,
|
|
.theme-light .preview td a,
|
|
.theme-light .preview th a {
|
|
color: #0366d6
|
|
}
|
|
|
|
.theme-light .preview address a:hover,
|
|
.theme-light .preview dd a:hover,
|
|
.theme-light .preview dt a:hover,
|
|
.theme-light .preview h1 a:hover,
|
|
.theme-light .preview h2 a:hover,
|
|
.theme-light .preview h3 a:hover,
|
|
.theme-light .preview h4 a:hover,
|
|
.theme-light .preview h5 a:hover,
|
|
.theme-light .preview h6 a:hover,
|
|
.theme-light .preview li a:hover,
|
|
.theme-light .preview p a:hover,
|
|
.theme-light .preview td a:hover,
|
|
.theme-light .preview th a:hover {
|
|
color: #035fc7
|
|
}
|
|
|
|
.theme-light .preview address a:active,
|
|
.theme-light .preview dd a:active,
|
|
.theme-light .preview dt a:active,
|
|
.theme-light .preview h1 a:active,
|
|
.theme-light .preview h2 a:active,
|
|
.theme-light .preview h3 a:active,
|
|
.theme-light .preview h4 a:active,
|
|
.theme-light .preview h5 a:active,
|
|
.theme-light .preview h6 a:active,
|
|
.theme-light .preview li a:active,
|
|
.theme-light .preview p a:active,
|
|
.theme-light .preview td a:active,
|
|
.theme-light .preview th a:active {
|
|
color: #0358b8
|
|
}
|
|
|
|
.theme-light .quick-panel .list-item {
|
|
background-color: transparent;
|
|
color: inherit;
|
|
border-color: rgba(0, 0, 0, .12)
|
|
}
|
|
|
|
.theme-light .quick-panel .list-item:not(.active):hover {
|
|
background-color: rgba(0, 0, 0, .04)
|
|
}
|
|
|
|
.theme-light .quick-panel .list-item.active,
|
|
.theme-light .quick-panel .list-item:active {
|
|
background-color: rgba(0, 0, 0, .08)
|
|
}
|
|
|
|
html.no-overlay-scrollbars .theme-light ::-webkit-scrollbar {
|
|
background-color: transparent;
|
|
width: 12px;
|
|
height: 12px
|
|
}
|
|
|
|
html.no-overlay-scrollbars .theme-light ::-webkit-scrollbar-track,
|
|
html.no-overlay-scrollbars .theme-light ::-webkit-scrollbar-track-piece {
|
|
background-color: transparent
|
|
}
|
|
|
|
html.no-overlay-scrollbars .theme-light ::-webkit-scrollbar-corner {
|
|
background-color: transparent
|
|
}
|
|
|
|
html.no-overlay-scrollbars .theme-light ::-webkit-scrollbar-thumb {
|
|
background: hsla(0, 0%, 62%, .35)
|
|
}
|
|
|
|
html.no-overlay-scrollbars .theme-light ::-webkit-scrollbar-thumb:hover {
|
|
background: hsla(0, 0%, 56%, .35)
|
|
}
|
|
|
|
html.no-overlay-scrollbars .theme-light ::-webkit-scrollbar-thumb:active {
|
|
background: hsla(0, 0%, 50%, .35)
|
|
}
|
|
|
|
.theme-light .sidebar {
|
|
background-color: #20272c;
|
|
color: #fff
|
|
}
|
|
|
|
.theme-light .sidebar .list-item {
|
|
background-color: transparent;
|
|
color: inherit;
|
|
border-color: rgba(0, 0, 0, .6)
|
|
}
|
|
|
|
.theme-light .sidebar .list-item:not(.active):hover {
|
|
background-color: rgba(0, 0, 0, .2)
|
|
}
|
|
|
|
.theme-light .sidebar .list-item.active,
|
|
.theme-light .sidebar .list-item:active {
|
|
background-color: rgba(0, 0, 0, .4)
|
|
}
|
|
|
|
.theme-light .sidebar+.layout.column {
|
|
border-left-width: 0
|
|
}
|
|
|
|
.theme-light .titlebar,
|
|
.theme-light .toolbar {
|
|
background-color: #f5f5f5;
|
|
border-color: #d6d6d6;
|
|
color: #505050
|
|
}
|
|
|
|
.layout.column {
|
|
overflow: hidden!important
|
|
}
|
|
|
|
.layout.column+.layout.column {
|
|
border-left-width: 1px;
|
|
border-left-style: solid
|
|
}
|
|
|
|
.monaco-editor-wrapper {
|
|
padding: 0!important;
|
|
overflow: hidden!important
|
|
}
|
|
|
|
.monaco-editor .current-line {
|
|
border-width: 0!important
|
|
}
|
|
|
|
.monaco-editor .overlayWidgets {
|
|
display: none
|
|
}
|
|
|
|
.monaco-editor .decorationsOverviewRuler,
|
|
.monaco-editor .minimap-slider,
|
|
.monaco-editor .slider {
|
|
will-change: auto!important
|
|
}
|
|
|
|
.monaco-editor .view-lines .mtk13 {
|
|
text-decoration: line-through;
|
|
color: inherit
|
|
}
|
|
|
|
.list-header {
|
|
display: -webkit-flex;
|
|
display: -ms-flexbox;
|
|
display: flex;
|
|
-webkit-align-items: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
-webkit-justify-content: center;
|
|
-ms-flex-pack: center;
|
|
justify-content: center;
|
|
border-bottom-width: 1px;
|
|
border-bottom-style: solid;
|
|
height: 27px;
|
|
max-height: 27px;
|
|
-webkit-flex-grow: 0;
|
|
-ms-flex-positive: 0;
|
|
flex-grow: 0;
|
|
padding: .3125rem .625rem;
|
|
overflow: hidden!important
|
|
}
|
|
|
|
.list-item {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
max-width: 100%;
|
|
height: 32px;
|
|
padding: 7px 12px;
|
|
margin: 0!important;
|
|
border-radius: 0!important;
|
|
width: 100%;
|
|
cursor: pointer;
|
|
overflow: hidden!important;
|
|
-webkit-justify-content: left;
|
|
-ms-flex-pack: left;
|
|
justify-content: left;
|
|
z-index: 0
|
|
}
|
|
|
|
.list-item>* {
|
|
margin: 0 .3125rem 0 0
|
|
}
|
|
|
|
.list-item>.title {
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
max-width: 100%;
|
|
margin: 0;
|
|
font-weight: 400;
|
|
text-align: left;
|
|
-webkit-flex-grow: 1;
|
|
-ms-flex-positive: 1;
|
|
flex-grow: 1
|
|
}
|
|
|
|
.list-item>.title~* {
|
|
margin: 0 0 0 .3125rem
|
|
}
|
|
|
|
.list-item>.description {
|
|
font-weight: 400;
|
|
margin-left: .3125rem;
|
|
opacity: .5
|
|
}
|
|
|
|
.list-item.empty {
|
|
pointer-events: none!important;
|
|
text-align: center;
|
|
font-weight: 400
|
|
}
|
|
|
|
.list-item.empty>:only-child {
|
|
margin: 0 auto;
|
|
text-align: center!important
|
|
}
|
|
|
|
.list-item .on-hover {
|
|
opacity: 0;
|
|
transition: none
|
|
}
|
|
|
|
.list-item:hover .on-hover {
|
|
opacity: 1
|
|
}
|
|
|
|
.list-item.level-0,
|
|
.list-item.level-1 {
|
|
padding-left: 12px
|
|
}
|
|
|
|
.list-item.level-2 {
|
|
padding-left: 35px
|
|
}
|
|
|
|
.list-item.level-3 {
|
|
padding-left: 58px
|
|
}
|
|
|
|
.list-item.level-4 {
|
|
padding-left: 81px
|
|
}
|
|
|
|
.list-item.level-5 {
|
|
padding-left: 104px
|
|
}
|
|
|
|
.list-item.level-6 {
|
|
padding-left: 127px
|
|
}
|
|
|
|
.list-item.level-7 {
|
|
padding-left: 150px
|
|
}
|
|
|
|
.list-item.level-8 {
|
|
padding-left: 173px
|
|
}
|
|
|
|
.list-item.level-9 {
|
|
padding-left: 196px
|
|
}
|
|
|
|
.list-item.level-10 {
|
|
padding-left: 219px
|
|
}
|
|
|
|
.list-item.level-11 {
|
|
padding-left: 242px
|
|
}
|
|
|
|
.list-item.level-12 {
|
|
padding-left: 265px
|
|
}
|
|
|
|
.list-item.level-13 {
|
|
padding-left: 288px
|
|
}
|
|
|
|
.list-item.level-14 {
|
|
padding-left: 311px
|
|
}
|
|
|
|
.list-item.level-15 {
|
|
padding-left: 334px
|
|
}
|
|
|
|
.list-item.level-16 {
|
|
padding-left: 357px
|
|
}
|
|
|
|
.list-item.level-17 {
|
|
padding-left: 380px
|
|
}
|
|
|
|
.list-item.level-18 {
|
|
padding-left: 403px
|
|
}
|
|
|
|
.list-item.level-19 {
|
|
padding-left: 426px
|
|
}
|
|
|
|
.list-item.level-20 {
|
|
padding-left: 449px
|
|
}
|
|
|
|
.list-item.level-21 {
|
|
padding-left: 472px
|
|
}
|
|
|
|
.list-item.level-22 {
|
|
padding-left: 495px
|
|
}
|
|
|
|
.list-item.level-23 {
|
|
padding-left: 518px
|
|
}
|
|
|
|
.list-item.level-24 {
|
|
padding-left: 541px
|
|
}
|
|
|
|
.list {
|
|
padding: 0!important;
|
|
max-width: 100%;
|
|
overflow-x: hidden;
|
|
will-change: auto!important
|
|
}
|
|
|
|
.popover .list>.multiple {
|
|
margin-bottom: 0!important
|
|
}
|
|
|
|
.multi-editor {
|
|
position: absolute;
|
|
top: 50%;
|
|
left: 50%;
|
|
-webkit-transform: translate(-50%, -50%);
|
|
transform: translate(-50%, -50%);
|
|
padding: 1.25rem;
|
|
width: 100%;
|
|
max-width: 500px
|
|
}
|
|
|
|
.multi-editor h1 {
|
|
margin-bottom: 1.25rem;
|
|
text-align: center
|
|
}
|
|
|
|
.multi-editor .button {
|
|
-webkit-flex-grow: 1;
|
|
-ms-flex-positive: 1;
|
|
flex-grow: 1;
|
|
-webkit-flex-shrink: 0;
|
|
-ms-flex-negative: 0;
|
|
flex-shrink: 0
|
|
}
|
|
|
|
.multi-editor .actions-favorite,
|
|
.multi-editor .actions-pin {
|
|
-webkit-flex-grow: 2;
|
|
-ms-flex-positive: 2;
|
|
flex-grow: 2
|
|
}
|
|
|
|
.multi-editor .actions-delete {
|
|
-webkit-flex-grow: 3;
|
|
-ms-flex-positive: 3;
|
|
flex-grow: 3
|
|
}
|
|
|
|
.multi-editor .tagbox {
|
|
padding: .625rem!important
|
|
}
|
|
|
|
.multi-editor .tagbox-partial {
|
|
padding: 0!important;
|
|
margin: 0 .3125rem .625rem!important;
|
|
min-width: 7.5em!important
|
|
}
|
|
|
|
.preview .copy-wrapper {
|
|
position: relative;
|
|
margin-bottom: 16px
|
|
}
|
|
|
|
.preview .copy-wrapper:last-child {
|
|
margin-bottom: 0
|
|
}
|
|
|
|
.preview .copy-wrapper .copy {
|
|
position: absolute;
|
|
top: .625rem;
|
|
right: .625rem;
|
|
cursor: pointer;
|
|
opacity: 0;
|
|
transition: opacity .15s;
|
|
z-index: 1
|
|
}
|
|
|
|
.preview .copy-wrapper:hover .copy {
|
|
opacity: .5
|
|
}
|
|
|
|
.preview .copy-wrapper:hover .copy:hover {
|
|
opacity: .75
|
|
}
|
|
|
|
.preview .copy-wrapper:hover .copy:active {
|
|
opacity: 1
|
|
}
|
|
|
|
.preview .copy-wrapper>pre {
|
|
margin-bottom: 0!important
|
|
}
|
|
|
|
.preview code,
|
|
.preview pre {
|
|
direction: ltr;
|
|
font-family: Consolas, Liberation Mono, Menlo, Courier, monospace;
|
|
-webkit-hyphens: none;
|
|
-moz-hyphens: none;
|
|
-ms-hyphens: none;
|
|
hyphens: none;
|
|
line-height: 1.4;
|
|
margin: 1em 0;
|
|
overflow: auto;
|
|
padding: 1.2em;
|
|
-moz-tab-size: 2;
|
|
tab-size: 2;
|
|
text-align: left;
|
|
white-space: pre;
|
|
word-spacing: normal
|
|
}
|
|
|
|
.preview li code,
|
|
.preview p code,
|
|
.preview table code {
|
|
font-size: 85%
|
|
}
|
|
|
|
.preview :not(pre)>code[class*=language-] {
|
|
padding: .1em;
|
|
border-radius: .3em
|
|
}
|
|
|
|
.preview .token.entity {
|
|
cursor: help
|
|
}
|
|
|
|
.preview .token.italic {
|
|
font-style: italic
|
|
}
|
|
|
|
.preview .token.bold {
|
|
font-weight: 600
|
|
}
|
|
|
|
.preview .namespace {
|
|
opacity: .7
|
|
}
|
|
|
|
@font-face {
|
|
font-family: KaTeX_AMS;
|
|
src: url(fonts/KaTeX_AMS-Regular--fonts.woff2) format("woff2");
|
|
font-weight: 400;
|
|
font-style: normal
|
|
}
|
|
|
|
@font-face {
|
|
font-family: KaTeX_Caligraphic;
|
|
src: url(fonts/KaTeX_Caligraphic-Bold--fonts.woff2) format("woff2");
|
|
font-weight: 700;
|
|
font-style: normal
|
|
}
|
|
|
|
@font-face {
|
|
font-family: KaTeX_Caligraphic;
|
|
src: url(data:font/woff2;base64,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) format("woff2");
|
|
font-weight: 400;
|
|
font-style: normal
|
|
}
|
|
|
|
@font-face {
|
|
font-family: KaTeX_Fraktur;
|
|
src: url(fonts/KaTeX_Fraktur-Bold--fonts.woff2) format("woff2");
|
|
font-weight: 700;
|
|
font-style: normal
|
|
}
|
|
|
|
@font-face {
|
|
font-family: KaTeX_Fraktur;
|
|
src: url(fonts/KaTeX_Fraktur-Regular--fonts.woff2) format("woff2");
|
|
font-weight: 400;
|
|
font-style: normal
|
|
}
|
|
|
|
@font-face {
|
|
font-family: KaTeX_Main;
|
|
src: url(fonts/KaTeX_Main-Bold--fonts.woff2) format("woff2");
|
|
font-weight: 700;
|
|
font-style: normal
|
|
}
|
|
|
|
@font-face {
|
|
font-family: KaTeX_Main;
|
|
src: url(fonts/KaTeX_Main-BoldItalic--fonts.woff2) format("woff2");
|
|
font-weight: 700;
|
|
font-style: italic
|
|
}
|
|
|
|
@font-face {
|
|
font-family: KaTeX_Main;
|
|
src: url(fonts/KaTeX_Main-Italic--fonts.woff2) format("woff2");
|
|
font-weight: 400;
|
|
font-style: italic
|
|
}
|
|
|
|
@font-face {
|
|
font-family: KaTeX_Main;
|
|
src: url(fonts/KaTeX_Main-Regular--fonts.woff2) format("woff2");
|
|
font-weight: 400;
|
|
font-style: normal
|
|
}
|
|
|
|
@font-face {
|
|
font-family: KaTeX_Math;
|
|
src: url(fonts/KaTeX_Math-BoldItalic--fonts.woff2) format("woff2");
|
|
font-weight: 700;
|
|
font-style: italic
|
|
}
|
|
|
|
@font-face {
|
|
font-family: KaTeX_Math;
|
|
src: url(fonts/KaTeX_Math-Italic--fonts.woff2) format("woff2");
|
|
font-weight: 400;
|
|
font-style: italic
|
|
}
|
|
|
|
@font-face {
|
|
font-family: KaTeX_SansSerif;
|
|
src: url(fonts/KaTeX_SansSerif-Bold--fonts.woff2) format("woff2");
|
|
font-weight: 700;
|
|
font-style: normal
|
|
}
|
|
|
|
@font-face {
|
|
font-family: KaTeX_SansSerif;
|
|
src: url(fonts/KaTeX_SansSerif-Italic--fonts.woff2) format("woff2");
|
|
font-weight: 400;
|
|
font-style: italic
|
|
}
|
|
|
|
@font-face {
|
|
font-family: KaTeX_SansSerif;
|
|
src: url(fonts/KaTeX_SansSerif-Regular--fonts.woff2) format("woff2");
|
|
font-weight: 400;
|
|
font-style: normal
|
|
}
|
|
|
|
@font-face {
|
|
font-family: KaTeX_Script;
|
|
src: url(fonts/KaTeX_Script-Regular--fonts.woff2) format("woff2");
|
|
font-weight: 400;
|
|
font-style: normal
|
|
}
|
|
|
|
@font-face {
|
|
font-family: KaTeX_Size1;
|
|
src: url(data:font/woff2;base64,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) format("woff2");
|
|
font-weight: 400;
|
|
font-style: normal
|
|
}
|
|
|
|
@font-face {
|
|
font-family: KaTeX_Size2;
|
|
src: url(data:font/woff2;base64,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) format("woff2");
|
|
font-weight: 400;
|
|
font-style: normal
|
|
}
|
|
|
|
@font-face {
|
|
font-family: KaTeX_Size3;
|
|
src: url(data:font/woff2;base64,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) format("woff2");
|
|
font-weight: 400;
|
|
font-style: normal
|
|
}
|
|
|
|
@font-face {
|
|
font-family: KaTeX_Size4;
|
|
src: url(data:font/woff2;base64,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) format("woff2");
|
|
font-weight: 400;
|
|
font-style: normal
|
|
}
|
|
|
|
@font-face {
|
|
font-family: KaTeX_Typewriter;
|
|
src: url(fonts/KaTeX_Typewriter-Regular--fonts.woff2) format("woff2");
|
|
font-weight: 400;
|
|
font-style: normal
|
|
}
|
|
|
|
.katex {
|
|
font: normal 1.21em KaTeX_Main, Times New Roman, serif;
|
|
line-height: 1.2;
|
|
text-indent: 0;
|
|
text-rendering: auto
|
|
}
|
|
|
|
.katex * {
|
|
-ms-high-contrast-adjust: none!important
|
|
}
|
|
|
|
.katex .katex-version:after {
|
|
content: "0.10.2"
|
|
}
|
|
|
|
.katex .katex-mathml {
|
|
position: absolute;
|
|
clip: rect(1px, 1px, 1px, 1px);
|
|
padding: 0;
|
|
border: 0;
|
|
height: 1px;
|
|
width: 1px;
|
|
overflow: hidden
|
|
}
|
|
|
|
.katex .katex-html>.newline {
|
|
display: block
|
|
}
|
|
|
|
.katex .base {
|
|
position: relative;
|
|
white-space: nowrap;
|
|
width: -webkit-min-content;
|
|
width: -moz-min-content;
|
|
width: min-content
|
|
}
|
|
|
|
.katex .base,
|
|
.katex .strut {
|
|
display: inline-block
|
|
}
|
|
|
|
.katex .textbf {
|
|
font-weight: 700
|
|
}
|
|
|
|
.katex .textit {
|
|
font-style: italic
|
|
}
|
|
|
|
.katex .textrm {
|
|
font-family: KaTeX_Main
|
|
}
|
|
|
|
.katex .textsf {
|
|
font-family: KaTeX_SansSerif
|
|
}
|
|
|
|
.katex .texttt {
|
|
font-family: KaTeX_Typewriter
|
|
}
|
|
|
|
.katex .mathdefault {
|
|
font-family: KaTeX_Math;
|
|
font-style: italic
|
|
}
|
|
|
|
.katex .mathit {
|
|
font-family: KaTeX_Main;
|
|
font-style: italic
|
|
}
|
|
|
|
.katex .mathrm {
|
|
font-style: normal
|
|
}
|
|
|
|
.katex .mathbf {
|
|
font-family: KaTeX_Main;
|
|
font-weight: 700
|
|
}
|
|
|
|
.katex .boldsymbol {
|
|
font-family: KaTeX_Math;
|
|
font-weight: 700;
|
|
font-style: italic
|
|
}
|
|
|
|
.katex .amsrm,
|
|
.katex .mathbb,
|
|
.katex .textbb {
|
|
font-family: KaTeX_AMS
|
|
}
|
|
|
|
.katex .mathcal {
|
|
font-family: KaTeX_Caligraphic
|
|
}
|
|
|
|
.katex .mathfrak,
|
|
.katex .textfrak {
|
|
font-family: KaTeX_Fraktur
|
|
}
|
|
|
|
.katex .mathtt {
|
|
font-family: KaTeX_Typewriter
|
|
}
|
|
|
|
.katex .mathscr,
|
|
.katex .textscr {
|
|
font-family: KaTeX_Script
|
|
}
|
|
|
|
.katex .mathsf,
|
|
.katex .textsf {
|
|
font-family: KaTeX_SansSerif
|
|
}
|
|
|
|
.katex .mathboldsf,
|
|
.katex .textboldsf {
|
|
font-family: KaTeX_SansSerif;
|
|
font-weight: 700
|
|
}
|
|
|
|
.katex .mathitsf,
|
|
.katex .textitsf {
|
|
font-family: KaTeX_SansSerif;
|
|
font-style: italic
|
|
}
|
|
|
|
.katex .mainrm {
|
|
font-family: KaTeX_Main;
|
|
font-style: normal
|
|
}
|
|
|
|
.katex .vlist-t {
|
|
display: inline-table;
|
|
table-layout: fixed
|
|
}
|
|
|
|
.katex .vlist-r {
|
|
display: table-row
|
|
}
|
|
|
|
.katex .vlist {
|
|
display: table-cell;
|
|
vertical-align: bottom;
|
|
position: relative
|
|
}
|
|
|
|
.katex .vlist>span {
|
|
display: block;
|
|
height: 0;
|
|
position: relative
|
|
}
|
|
|
|
.katex .vlist>span>span {
|
|
display: inline-block
|
|
}
|
|
|
|
.katex .vlist>span>.pstrut {
|
|
overflow: hidden;
|
|
width: 0
|
|
}
|
|
|
|
.katex .vlist-t2 {
|
|
margin-right: -2px
|
|
}
|
|
|
|
.katex .vlist-s {
|
|
display: table-cell;
|
|
vertical-align: bottom;
|
|
font-size: 1px;
|
|
width: 2px;
|
|
min-width: 2px
|
|
}
|
|
|
|
.katex .msupsub {
|
|
text-align: left
|
|
}
|
|
|
|
.katex .mfrac>span>span {
|
|
text-align: center
|
|
}
|
|
|
|
.katex .mfrac .frac-line {
|
|
display: inline-block;
|
|
width: 100%;
|
|
border-bottom-style: solid
|
|
}
|
|
|
|
.katex .hdashline,
|
|
.katex .hline,
|
|
.katex .mfrac .frac-line,
|
|
.katex .overline .overline-line,
|
|
.katex .rule,
|
|
.katex .underline .underline-line {
|
|
min-height: 1px
|
|
}
|
|
|
|
.katex .mspace {
|
|
display: inline-block
|
|
}
|
|
|
|
.katex .clap,
|
|
.katex .llap,
|
|
.katex .rlap {
|
|
width: 0;
|
|
position: relative
|
|
}
|
|
|
|
.katex .clap>.inner,
|
|
.katex .llap>.inner,
|
|
.katex .rlap>.inner {
|
|
position: absolute
|
|
}
|
|
|
|
.katex .clap>.fix,
|
|
.katex .llap>.fix,
|
|
.katex .rlap>.fix {
|
|
display: inline-block
|
|
}
|
|
|
|
.katex .llap>.inner {
|
|
right: 0
|
|
}
|
|
|
|
.katex .clap>.inner,
|
|
.katex .rlap>.inner {
|
|
left: 0
|
|
}
|
|
|
|
.katex .clap>.inner>span {
|
|
margin-left: -50%;
|
|
margin-right: 50%
|
|
}
|
|
|
|
.katex .rule {
|
|
display: inline-block;
|
|
border: 0 solid;
|
|
position: relative
|
|
}
|
|
|
|
.katex .hline,
|
|
.katex .overline .overline-line,
|
|
.katex .underline .underline-line {
|
|
display: inline-block;
|
|
width: 100%;
|
|
border-bottom-style: solid
|
|
}
|
|
|
|
.katex .hdashline {
|
|
display: inline-block;
|
|
width: 100%;
|
|
border-bottom-style: dashed
|
|
}
|
|
|
|
.katex .sqrt>.root {
|
|
margin-left: .27777778em;
|
|
margin-right: -.55555556em
|
|
}
|
|
|
|
.katex .fontsize-ensurer,
|
|
.katex .sizing {
|
|
display: inline-block
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size1.size1,
|
|
.katex .sizing.reset-size1.size1 {
|
|
font-size: 1em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size1.size2,
|
|
.katex .sizing.reset-size1.size2 {
|
|
font-size: 1.2em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size1.size3,
|
|
.katex .sizing.reset-size1.size3 {
|
|
font-size: 1.4em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size1.size4,
|
|
.katex .sizing.reset-size1.size4 {
|
|
font-size: 1.6em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size1.size5,
|
|
.katex .sizing.reset-size1.size5 {
|
|
font-size: 1.8em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size1.size6,
|
|
.katex .sizing.reset-size1.size6 {
|
|
font-size: 2em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size1.size7,
|
|
.katex .sizing.reset-size1.size7 {
|
|
font-size: 2.4em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size1.size8,
|
|
.katex .sizing.reset-size1.size8 {
|
|
font-size: 2.88em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size1.size9,
|
|
.katex .sizing.reset-size1.size9 {
|
|
font-size: 3.456em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size1.size10,
|
|
.katex .sizing.reset-size1.size10 {
|
|
font-size: 4.148em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size1.size11,
|
|
.katex .sizing.reset-size1.size11 {
|
|
font-size: 4.976em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size2.size1,
|
|
.katex .sizing.reset-size2.size1 {
|
|
font-size: .83333333em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size2.size2,
|
|
.katex .sizing.reset-size2.size2 {
|
|
font-size: 1em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size2.size3,
|
|
.katex .sizing.reset-size2.size3 {
|
|
font-size: 1.16666667em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size2.size4,
|
|
.katex .sizing.reset-size2.size4 {
|
|
font-size: 1.33333333em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size2.size5,
|
|
.katex .sizing.reset-size2.size5 {
|
|
font-size: 1.5em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size2.size6,
|
|
.katex .sizing.reset-size2.size6 {
|
|
font-size: 1.66666667em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size2.size7,
|
|
.katex .sizing.reset-size2.size7 {
|
|
font-size: 2em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size2.size8,
|
|
.katex .sizing.reset-size2.size8 {
|
|
font-size: 2.4em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size2.size9,
|
|
.katex .sizing.reset-size2.size9 {
|
|
font-size: 2.88em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size2.size10,
|
|
.katex .sizing.reset-size2.size10 {
|
|
font-size: 3.45666667em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size2.size11,
|
|
.katex .sizing.reset-size2.size11 {
|
|
font-size: 4.14666667em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size3.size1,
|
|
.katex .sizing.reset-size3.size1 {
|
|
font-size: .71428571em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size3.size2,
|
|
.katex .sizing.reset-size3.size2 {
|
|
font-size: .85714286em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size3.size3,
|
|
.katex .sizing.reset-size3.size3 {
|
|
font-size: 1em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size3.size4,
|
|
.katex .sizing.reset-size3.size4 {
|
|
font-size: 1.14285714em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size3.size5,
|
|
.katex .sizing.reset-size3.size5 {
|
|
font-size: 1.28571429em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size3.size6,
|
|
.katex .sizing.reset-size3.size6 {
|
|
font-size: 1.42857143em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size3.size7,
|
|
.katex .sizing.reset-size3.size7 {
|
|
font-size: 1.71428571em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size3.size8,
|
|
.katex .sizing.reset-size3.size8 {
|
|
font-size: 2.05714286em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size3.size9,
|
|
.katex .sizing.reset-size3.size9 {
|
|
font-size: 2.46857143em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size3.size10,
|
|
.katex .sizing.reset-size3.size10 {
|
|
font-size: 2.96285714em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size3.size11,
|
|
.katex .sizing.reset-size3.size11 {
|
|
font-size: 3.55428571em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size4.size1,
|
|
.katex .sizing.reset-size4.size1 {
|
|
font-size: .625em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size4.size2,
|
|
.katex .sizing.reset-size4.size2 {
|
|
font-size: .75em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size4.size3,
|
|
.katex .sizing.reset-size4.size3 {
|
|
font-size: .875em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size4.size4,
|
|
.katex .sizing.reset-size4.size4 {
|
|
font-size: 1em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size4.size5,
|
|
.katex .sizing.reset-size4.size5 {
|
|
font-size: 1.125em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size4.size6,
|
|
.katex .sizing.reset-size4.size6 {
|
|
font-size: 1.25em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size4.size7,
|
|
.katex .sizing.reset-size4.size7 {
|
|
font-size: 1.5em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size4.size8,
|
|
.katex .sizing.reset-size4.size8 {
|
|
font-size: 1.8em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size4.size9,
|
|
.katex .sizing.reset-size4.size9 {
|
|
font-size: 2.16em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size4.size10,
|
|
.katex .sizing.reset-size4.size10 {
|
|
font-size: 2.5925em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size4.size11,
|
|
.katex .sizing.reset-size4.size11 {
|
|
font-size: 3.11em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size5.size1,
|
|
.katex .sizing.reset-size5.size1 {
|
|
font-size: .55555556em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size5.size2,
|
|
.katex .sizing.reset-size5.size2 {
|
|
font-size: .66666667em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size5.size3,
|
|
.katex .sizing.reset-size5.size3 {
|
|
font-size: .77777778em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size5.size4,
|
|
.katex .sizing.reset-size5.size4 {
|
|
font-size: .88888889em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size5.size5,
|
|
.katex .sizing.reset-size5.size5 {
|
|
font-size: 1em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size5.size6,
|
|
.katex .sizing.reset-size5.size6 {
|
|
font-size: 1.11111111em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size5.size7,
|
|
.katex .sizing.reset-size5.size7 {
|
|
font-size: 1.33333333em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size5.size8,
|
|
.katex .sizing.reset-size5.size8 {
|
|
font-size: 1.6em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size5.size9,
|
|
.katex .sizing.reset-size5.size9 {
|
|
font-size: 1.92em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size5.size10,
|
|
.katex .sizing.reset-size5.size10 {
|
|
font-size: 2.30444444em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size5.size11,
|
|
.katex .sizing.reset-size5.size11 {
|
|
font-size: 2.76444444em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size6.size1,
|
|
.katex .sizing.reset-size6.size1 {
|
|
font-size: .5em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size6.size2,
|
|
.katex .sizing.reset-size6.size2 {
|
|
font-size: .6em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size6.size3,
|
|
.katex .sizing.reset-size6.size3 {
|
|
font-size: .7em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size6.size4,
|
|
.katex .sizing.reset-size6.size4 {
|
|
font-size: .8em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size6.size5,
|
|
.katex .sizing.reset-size6.size5 {
|
|
font-size: .9em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size6.size6,
|
|
.katex .sizing.reset-size6.size6 {
|
|
font-size: 1em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size6.size7,
|
|
.katex .sizing.reset-size6.size7 {
|
|
font-size: 1.2em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size6.size8,
|
|
.katex .sizing.reset-size6.size8 {
|
|
font-size: 1.44em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size6.size9,
|
|
.katex .sizing.reset-size6.size9 {
|
|
font-size: 1.728em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size6.size10,
|
|
.katex .sizing.reset-size6.size10 {
|
|
font-size: 2.074em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size6.size11,
|
|
.katex .sizing.reset-size6.size11 {
|
|
font-size: 2.488em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size7.size1,
|
|
.katex .sizing.reset-size7.size1 {
|
|
font-size: .41666667em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size7.size2,
|
|
.katex .sizing.reset-size7.size2 {
|
|
font-size: .5em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size7.size3,
|
|
.katex .sizing.reset-size7.size3 {
|
|
font-size: .58333333em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size7.size4,
|
|
.katex .sizing.reset-size7.size4 {
|
|
font-size: .66666667em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size7.size5,
|
|
.katex .sizing.reset-size7.size5 {
|
|
font-size: .75em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size7.size6,
|
|
.katex .sizing.reset-size7.size6 {
|
|
font-size: .83333333em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size7.size7,
|
|
.katex .sizing.reset-size7.size7 {
|
|
font-size: 1em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size7.size8,
|
|
.katex .sizing.reset-size7.size8 {
|
|
font-size: 1.2em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size7.size9,
|
|
.katex .sizing.reset-size7.size9 {
|
|
font-size: 1.44em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size7.size10,
|
|
.katex .sizing.reset-size7.size10 {
|
|
font-size: 1.72833333em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size7.size11,
|
|
.katex .sizing.reset-size7.size11 {
|
|
font-size: 2.07333333em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size8.size1,
|
|
.katex .sizing.reset-size8.size1 {
|
|
font-size: .34722222em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size8.size2,
|
|
.katex .sizing.reset-size8.size2 {
|
|
font-size: .41666667em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size8.size3,
|
|
.katex .sizing.reset-size8.size3 {
|
|
font-size: .48611111em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size8.size4,
|
|
.katex .sizing.reset-size8.size4 {
|
|
font-size: .55555556em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size8.size5,
|
|
.katex .sizing.reset-size8.size5 {
|
|
font-size: .625em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size8.size6,
|
|
.katex .sizing.reset-size8.size6 {
|
|
font-size: .69444444em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size8.size7,
|
|
.katex .sizing.reset-size8.size7 {
|
|
font-size: .83333333em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size8.size8,
|
|
.katex .sizing.reset-size8.size8 {
|
|
font-size: 1em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size8.size9,
|
|
.katex .sizing.reset-size8.size9 {
|
|
font-size: 1.2em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size8.size10,
|
|
.katex .sizing.reset-size8.size10 {
|
|
font-size: 1.44027778em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size8.size11,
|
|
.katex .sizing.reset-size8.size11 {
|
|
font-size: 1.72777778em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size9.size1,
|
|
.katex .sizing.reset-size9.size1 {
|
|
font-size: .28935185em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size9.size2,
|
|
.katex .sizing.reset-size9.size2 {
|
|
font-size: .34722222em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size9.size3,
|
|
.katex .sizing.reset-size9.size3 {
|
|
font-size: .40509259em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size9.size4,
|
|
.katex .sizing.reset-size9.size4 {
|
|
font-size: .46296296em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size9.size5,
|
|
.katex .sizing.reset-size9.size5 {
|
|
font-size: .52083333em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size9.size6,
|
|
.katex .sizing.reset-size9.size6 {
|
|
font-size: .5787037em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size9.size7,
|
|
.katex .sizing.reset-size9.size7 {
|
|
font-size: .69444444em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size9.size8,
|
|
.katex .sizing.reset-size9.size8 {
|
|
font-size: .83333333em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size9.size9,
|
|
.katex .sizing.reset-size9.size9 {
|
|
font-size: 1em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size9.size10,
|
|
.katex .sizing.reset-size9.size10 {
|
|
font-size: 1.20023148em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size9.size11,
|
|
.katex .sizing.reset-size9.size11 {
|
|
font-size: 1.43981481em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size10.size1,
|
|
.katex .sizing.reset-size10.size1 {
|
|
font-size: .24108004em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size10.size2,
|
|
.katex .sizing.reset-size10.size2 {
|
|
font-size: .28929605em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size10.size3,
|
|
.katex .sizing.reset-size10.size3 {
|
|
font-size: .33751205em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size10.size4,
|
|
.katex .sizing.reset-size10.size4 {
|
|
font-size: .38572806em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size10.size5,
|
|
.katex .sizing.reset-size10.size5 {
|
|
font-size: .43394407em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size10.size6,
|
|
.katex .sizing.reset-size10.size6 {
|
|
font-size: .48216008em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size10.size7,
|
|
.katex .sizing.reset-size10.size7 {
|
|
font-size: .57859209em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size10.size8,
|
|
.katex .sizing.reset-size10.size8 {
|
|
font-size: .69431051em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size10.size9,
|
|
.katex .sizing.reset-size10.size9 {
|
|
font-size: .83317261em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size10.size10,
|
|
.katex .sizing.reset-size10.size10 {
|
|
font-size: 1em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size10.size11,
|
|
.katex .sizing.reset-size10.size11 {
|
|
font-size: 1.19961427em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size11.size1,
|
|
.katex .sizing.reset-size11.size1 {
|
|
font-size: .20096463em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size11.size2,
|
|
.katex .sizing.reset-size11.size2 {
|
|
font-size: .24115756em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size11.size3,
|
|
.katex .sizing.reset-size11.size3 {
|
|
font-size: .28135048em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size11.size4,
|
|
.katex .sizing.reset-size11.size4 {
|
|
font-size: .32154341em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size11.size5,
|
|
.katex .sizing.reset-size11.size5 {
|
|
font-size: .36173633em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size11.size6,
|
|
.katex .sizing.reset-size11.size6 {
|
|
font-size: .40192926em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size11.size7,
|
|
.katex .sizing.reset-size11.size7 {
|
|
font-size: .48231511em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size11.size8,
|
|
.katex .sizing.reset-size11.size8 {
|
|
font-size: .57877814em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size11.size9,
|
|
.katex .sizing.reset-size11.size9 {
|
|
font-size: .69453376em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size11.size10,
|
|
.katex .sizing.reset-size11.size10 {
|
|
font-size: .83360129em
|
|
}
|
|
|
|
.katex .fontsize-ensurer.reset-size11.size11,
|
|
.katex .sizing.reset-size11.size11 {
|
|
font-size: 1em
|
|
}
|
|
|
|
.katex .delimsizing.size1 {
|
|
font-family: KaTeX_Size1
|
|
}
|
|
|
|
.katex .delimsizing.size2 {
|
|
font-family: KaTeX_Size2
|
|
}
|
|
|
|
.katex .delimsizing.size3 {
|
|
font-family: KaTeX_Size3
|
|
}
|
|
|
|
.katex .delimsizing.size4 {
|
|
font-family: KaTeX_Size4
|
|
}
|
|
|
|
.katex .delimsizing.mult .delim-size1>span {
|
|
font-family: KaTeX_Size1
|
|
}
|
|
|
|
.katex .delimsizing.mult .delim-size4>span {
|
|
font-family: KaTeX_Size4
|
|
}
|
|
|
|
.katex .nulldelimiter {
|
|
display: inline-block;
|
|
width: .12em
|
|
}
|
|
|
|
.katex .delimcenter,
|
|
.katex .op-symbol {
|
|
position: relative
|
|
}
|
|
|
|
.katex .op-symbol.small-op {
|
|
font-family: KaTeX_Size1
|
|
}
|
|
|
|
.katex .op-symbol.large-op {
|
|
font-family: KaTeX_Size2
|
|
}
|
|
|
|
.katex .accent>.vlist-t,
|
|
.katex .op-limits>.vlist-t {
|
|
text-align: center
|
|
}
|
|
|
|
.katex .accent .accent-body {
|
|
position: relative
|
|
}
|
|
|
|
.katex .accent .accent-body:not(.accent-full) {
|
|
width: 0
|
|
}
|
|
|
|
.katex .overlay {
|
|
display: block
|
|
}
|
|
|
|
.katex .mtable .vertical-separator {
|
|
display: inline-block;
|
|
margin: 0 -.025em;
|
|
border-right: .05em solid;
|
|
min-width: 1px
|
|
}
|
|
|
|
.katex .mtable .vs-dashed {
|
|
border-right: .05em dashed
|
|
}
|
|
|
|
.katex .mtable .arraycolsep {
|
|
display: inline-block
|
|
}
|
|
|
|
.katex .mtable .col-align-c>.vlist-t {
|
|
text-align: center
|
|
}
|
|
|
|
.katex .mtable .col-align-l>.vlist-t {
|
|
text-align: left
|
|
}
|
|
|
|
.katex .mtable .col-align-r>.vlist-t {
|
|
text-align: right
|
|
}
|
|
|
|
.katex .svg-align {
|
|
text-align: left
|
|
}
|
|
|
|
.katex svg {
|
|
display: block;
|
|
position: absolute;
|
|
width: 100%;
|
|
height: inherit;
|
|
fill: currentColor;
|
|
stroke: currentColor;
|
|
fill-rule: nonzero;
|
|
fill-opacity: 1;
|
|
stroke-width: 1;
|
|
stroke-linecap: butt;
|
|
stroke-linejoin: miter;
|
|
stroke-miterlimit: 4;
|
|
stroke-dasharray: none;
|
|
stroke-dashoffset: 0;
|
|
stroke-opacity: 1
|
|
}
|
|
|
|
.katex svg path {
|
|
stroke: none
|
|
}
|
|
|
|
.katex img {
|
|
border-style: none;
|
|
min-width: 0;
|
|
min-height: 0;
|
|
max-width: none;
|
|
max-height: none
|
|
}
|
|
|
|
.katex .stretchy {
|
|
width: 100%;
|
|
display: block;
|
|
position: relative;
|
|
overflow: hidden
|
|
}
|
|
|
|
.katex .stretchy:after,
|
|
.katex .stretchy:before {
|
|
content: ""
|
|
}
|
|
|
|
.katex .hide-tail {
|
|
width: 100%;
|
|
position: relative;
|
|
overflow: hidden
|
|
}
|
|
|
|
.katex .halfarrow-left {
|
|
position: absolute;
|
|
left: 0;
|
|
width: 50.2%;
|
|
overflow: hidden
|
|
}
|
|
|
|
.katex .halfarrow-right {
|
|
position: absolute;
|
|
right: 0;
|
|
width: 50.2%;
|
|
overflow: hidden
|
|
}
|
|
|
|
.katex .brace-left {
|
|
position: absolute;
|
|
left: 0;
|
|
width: 25.1%;
|
|
overflow: hidden
|
|
}
|
|
|
|
.katex .brace-center {
|
|
position: absolute;
|
|
left: 25%;
|
|
width: 50%;
|
|
overflow: hidden
|
|
}
|
|
|
|
.katex .brace-right {
|
|
position: absolute;
|
|
right: 0;
|
|
width: 25.1%;
|
|
overflow: hidden
|
|
}
|
|
|
|
.katex .x-arrow-pad {
|
|
padding: 0 .5em
|
|
}
|
|
|
|
.katex .mover,
|
|
.katex .munder,
|
|
.katex .x-arrow {
|
|
text-align: center
|
|
}
|
|
|
|
.katex .boxpad {
|
|
padding: 0 .3em
|
|
}
|
|
|
|
.katex .fbox,
|
|
.katex .fcolorbox {
|
|
box-sizing: border-box;
|
|
border: .04em solid
|
|
}
|
|
|
|
.katex .cancel-pad {
|
|
padding: 0 .2em
|
|
}
|
|
|
|
.katex .cancel-lap {
|
|
margin-left: -.2em;
|
|
margin-right: -.2em
|
|
}
|
|
|
|
.katex .sout {
|
|
border-bottom-style: solid;
|
|
border-bottom-width: .08em
|
|
}
|
|
|
|
.katex-display {
|
|
display: block;
|
|
margin: 1em 0;
|
|
text-align: center
|
|
}
|
|
|
|
.katex-display>.katex {
|
|
display: block;
|
|
text-align: center;
|
|
white-space: nowrap
|
|
}
|
|
|
|
.katex-display>.katex>.katex-html {
|
|
display: block;
|
|
position: relative
|
|
}
|
|
|
|
.katex-display>.katex>.katex-html>.tag {
|
|
position: absolute;
|
|
right: 0
|
|
}
|
|
|
|
.katex-display.leqno>.katex>.katex-html>.tag {
|
|
left: 0;
|
|
right: auto
|
|
}
|
|
|
|
.katex-display.fleqn>.katex {
|
|
text-align: left
|
|
}
|
|
|
|
.preview .mermaid {
|
|
text-align: center
|
|
}
|
|
|
|
.preview .mermaid text[font-size="14"] {
|
|
font-size: 14px!important
|
|
}
|
|
|
|
.preview .mermaid {
|
|
position: relative
|
|
}
|
|
|
|
.preview .mermaid .mermaid-open-external {
|
|
position: absolute;
|
|
top: .3125rem;
|
|
right: .625rem;
|
|
cursor: pointer;
|
|
opacity: 0;
|
|
transition: opacity .15s;
|
|
z-index: 1
|
|
}
|
|
|
|
.preview .mermaid:hover .mermaid-open-external {
|
|
opacity: .5
|
|
}
|
|
|
|
.preview .mermaid:hover .mermaid-open-external:hover {
|
|
opacity: .75
|
|
}
|
|
|
|
.preview .mermaid:hover .mermaid-open-external:active {
|
|
opacity: 1
|
|
}
|
|
|
|
.preview {
|
|
-webkit-user-select: text!important;
|
|
-moz-user-select: text!important;
|
|
-ms-user-select: text!important;
|
|
user-select: text!important;
|
|
padding: 1.25rem!important;
|
|
font-size: 16px;
|
|
line-height: inherit
|
|
}
|
|
|
|
.preview>:first-child {
|
|
margin-top: 0!important
|
|
}
|
|
|
|
.preview>:last-child {
|
|
margin-bottom: 0!important
|
|
}
|
|
|
|
.preview blockquote,
|
|
.preview dl,
|
|
.preview ol,
|
|
.preview p,
|
|
.preview pre,
|
|
.preview table,
|
|
.preview ul {
|
|
margin-top: 0;
|
|
margin-bottom: 16px
|
|
}
|
|
|
|
.preview blockquote:last-child,
|
|
.preview dl:last-child,
|
|
.preview ol:last-child,
|
|
.preview p:last-child,
|
|
.preview pre:last-child,
|
|
.preview table:last-child,
|
|
.preview ul:last-child {
|
|
margin-bottom: 0
|
|
}
|
|
|
|
.preview h1,
|
|
.preview h2,
|
|
.preview h3,
|
|
.preview h4,
|
|
.preview h5,
|
|
.preview h6 {
|
|
margin-top: 24px;
|
|
margin-bottom: 16px;
|
|
font-weight: 600;
|
|
line-height: 1.25
|
|
}
|
|
|
|
.preview h1:last-child,
|
|
.preview h2:last-child,
|
|
.preview h3:last-child,
|
|
.preview h4:last-child,
|
|
.preview h5:last-child,
|
|
.preview h6:last-child {
|
|
margin-bottom: 0
|
|
}
|
|
|
|
.preview h1 code,
|
|
.preview h2 code,
|
|
.preview h3 code,
|
|
.preview h4 code,
|
|
.preview h5 code,
|
|
.preview h6 code {
|
|
font-size: inherit
|
|
}
|
|
|
|
.preview h1 {
|
|
font-size: 2em
|
|
}
|
|
|
|
.preview h1,
|
|
.preview h2 {
|
|
padding-bottom: .3em;
|
|
border-bottom-width: 1px;
|
|
border-bottom-style: solid
|
|
}
|
|
|
|
.preview h2 {
|
|
font-size: 1.5em
|
|
}
|
|
|
|
.preview h3 {
|
|
font-size: 1.25em
|
|
}
|
|
|
|
.preview h4 {
|
|
font-size: 1em
|
|
}
|
|
|
|
.preview h5 {
|
|
font-size: .875em
|
|
}
|
|
|
|
.preview h6 {
|
|
font-size: .85em
|
|
}
|
|
|
|
.preview ol,
|
|
.preview ul {
|
|
padding-left: 2em
|
|
}
|
|
|
|
.preview ol ol,
|
|
.preview ol ul,
|
|
.preview ul ol,
|
|
.preview ul ul {
|
|
margin-top: 0;
|
|
margin-bottom: 0
|
|
}
|
|
|
|
.preview li {
|
|
word-wrap: break-all
|
|
}
|
|
|
|
.preview li>p {
|
|
margin-top: 16px
|
|
}
|
|
|
|
.preview li+li {
|
|
margin-top: .25em
|
|
}
|
|
|
|
.preview a:not([href]) {
|
|
color: inherit;
|
|
text-decoration: none
|
|
}
|
|
|
|
.preview img {
|
|
max-width: 100%;
|
|
box-sizing: content-box;
|
|
background-color: transparent
|
|
}
|
|
|
|
.preview img[align=right] {
|
|
padding-left: 20px
|
|
}
|
|
|
|
.preview img[align=left] {
|
|
padding-right: 20px
|
|
}
|
|
|
|
.preview input[type=checkbox] {
|
|
-moz-appearance: checkbox!important;
|
|
appearance: checkbox!important;
|
|
-webkit-appearance: checkbox!important;
|
|
display: inline-block;
|
|
margin: 0 .35em .25em 0!important;
|
|
opacity: 1
|
|
}
|
|
|
|
.preview .task-list-item {
|
|
list-style-type: none
|
|
}
|
|
|
|
.preview .task-list-item .task-list-item {
|
|
margin-left: 0
|
|
}
|
|
|
|
.preview .task-list-item>input {
|
|
margin-left: -1.3em!important
|
|
}
|
|
|
|
.preview .task-list-item>p {
|
|
margin: 0
|
|
}
|
|
|
|
.preview pre {
|
|
display: block;
|
|
word-wrap: normal;
|
|
padding: 16px;
|
|
overflow: auto;
|
|
line-height: 1.45
|
|
}
|
|
|
|
.preview code,
|
|
.preview pre {
|
|
font-size: 85%;
|
|
border-radius: 3px
|
|
}
|
|
|
|
.preview code {
|
|
padding: .2em .4em;
|
|
margin: 0
|
|
}
|
|
|
|
.preview pre>code {
|
|
padding: 0;
|
|
margin: 0;
|
|
font-size: 100%;
|
|
word-break: normal;
|
|
white-space: pre;
|
|
background: transparent!important;
|
|
border: 0
|
|
}
|
|
|
|
.preview pre code {
|
|
display: inline;
|
|
max-width: auto;
|
|
padding: 0;
|
|
margin: 0;
|
|
overflow: visible;
|
|
line-height: inherit;
|
|
word-wrap: normal;
|
|
background-color: transparent;
|
|
border: 0
|
|
}
|
|
|
|
.preview li code,
|
|
.preview p code,
|
|
.preview table code {
|
|
margin: 0;
|
|
border-radius: 3px;
|
|
padding: .2em .4em!important
|
|
}
|
|
|
|
.preview del code {
|
|
text-decoration: inherit
|
|
}
|
|
|
|
.preview table {
|
|
border-collapse: collapse;
|
|
display: block;
|
|
width: 100%;
|
|
overflow: auto
|
|
}
|
|
|
|
.preview table th {
|
|
font-weight: 600
|
|
}
|
|
|
|
.preview table td,
|
|
.preview table th {
|
|
padding: 6px 13px;
|
|
border-width: 1px;
|
|
border-style: solid
|
|
}
|
|
|
|
.preview table td>:last-child,
|
|
.preview table th>:last-child {
|
|
margin-bottom: 0
|
|
}
|
|
|
|
.preview blockquote {
|
|
padding: 0 1em;
|
|
border-left-width: .25em;
|
|
border-left-style: solid;
|
|
margin-left: 0;
|
|
margin-right: 0
|
|
}
|
|
|
|
.preview blockquote>:first-child {
|
|
margin-top: 0
|
|
}
|
|
|
|
.preview blockquote>:last-child {
|
|
margin-bottom: 0
|
|
}
|
|
|
|
.preview dl {
|
|
padding: 0
|
|
}
|
|
|
|
.preview dl dt {
|
|
padding: 0;
|
|
margin-top: 16px;
|
|
font-size: 1em;
|
|
font-style: italic;
|
|
font-weight: 600
|
|
}
|
|
|
|
.preview dl dd {
|
|
padding: 0 16px;
|
|
margin-bottom: 16px
|
|
}
|
|
|
|
.preview kbd {
|
|
font-family: inherit;
|
|
display: inline-block;
|
|
padding: 3px 5px;
|
|
font-size: 11px;
|
|
line-height: 10px;
|
|
vertical-align: middle;
|
|
border-width: 1px;
|
|
border-style: solid;
|
|
border-radius: 3px
|
|
}
|
|
|
|
.preview hr {
|
|
height: .25em;
|
|
padding: 0;
|
|
margin: 24px 0;
|
|
border: 0
|
|
}
|
|
|
|
.preview b,
|
|
.preview strong {
|
|
font-weight: 600
|
|
}
|
|
|
|
.preview a.button {
|
|
text-decoration: none!important;
|
|
color: inherit!important
|
|
}
|
|
|
|
.preview a:not(.button)>i.icon {
|
|
margin-right: .3125rem;
|
|
margin-top: -3px
|
|
}
|
|
|
|
.preview .mtk13 {
|
|
text-decoration: line-through;
|
|
color: inherit
|
|
}
|
|
|
|
.quick-modal {
|
|
top: 21px;
|
|
width: 900px;
|
|
max-width: 80%
|
|
}
|
|
|
|
.quick-modal:not(.open) {
|
|
-webkit-transform: translate(-50%, -1rem);
|
|
transform: translate(-50%, -1rem)
|
|
}
|
|
|
|
.quick-modal.open {
|
|
-webkit-transform: translateX(-50%);
|
|
transform: translateX(-50%)
|
|
}
|
|
|
|
.quick-modal .preview {
|
|
height: auto
|
|
}
|
|
|
|
.quick-panel {
|
|
top: 21px;
|
|
width: 500px;
|
|
max-width: 80%
|
|
}
|
|
|
|
.quick-panel:not(.open) {
|
|
-webkit-transform: translate(-50%, -1rem);
|
|
transform: translate(-50%, -1rem)
|
|
}
|
|
|
|
.quick-panel.open {
|
|
-webkit-transform: translateX(-50%);
|
|
transform: translateX(-50%)
|
|
}
|
|
|
|
.quick-panel .list {
|
|
max-height: 400px
|
|
}
|
|
|
|
.split-editor {
|
|
height: 100%!important
|
|
}
|
|
|
|
.split-editor>.editor,
|
|
.split-editor>.preview {
|
|
height: auto;
|
|
width: 50%
|
|
}
|
|
|
|
.split-editor>.editor~.preview {
|
|
border-left-width: 1px;
|
|
border-left-style: solid
|
|
}
|
|
|
|
.titlebar {
|
|
text-align: center;
|
|
font-size: 13px
|
|
}
|
|
|
|
.cwd {
|
|
width: 900px;
|
|
max-width: 80%
|
|
}
|
|
|
|
.cwd .button.default {
|
|
background-color: transparent
|
|
}
|
|
|
|
.cwd .button.default:not(.active):hover {
|
|
background-color: rgba(0, 0, 0, .1)
|
|
}
|
|
|
|
.cwd .button.default.active,
|
|
.cwd .button.default:active {
|
|
background-color: rgba(0, 0, 0, .2)
|
|
}
|
|
|
|
.cwd .button.giant {
|
|
font-size: 75px
|
|
}
|
|
|
|
.error-boundary {
|
|
background-color: #0f0f0f;
|
|
color: #f6f6f6;
|
|
-webkit-align-items: center;
|
|
-ms-flex-align: center;
|
|
align-items: center;
|
|
-webkit-justify-content: center;
|
|
-ms-flex-pack: center;
|
|
justify-content: center
|
|
}
|
|
|
|
.error-boundary i.icon {
|
|
font-size: 220px
|
|
}
|
|
|
|
.error-boundary p {
|
|
margin-bottom: 1.875rem!important
|
|
}
|
|
|
|
.mainbar {
|
|
-webkit-flex: 4 4 362px;
|
|
-ms-flex: 4 4 362px;
|
|
flex: 4 4 362px;
|
|
min-width: 362px
|
|
}
|
|
|
|
.middlebar {
|
|
-webkit-flex: 2 2 193px;
|
|
-ms-flex: 2 2 193px;
|
|
flex: 2 2 193px;
|
|
min-width: 193px;
|
|
max-width: 450px
|
|
}
|
|
|
|
.middlebar .search input {
|
|
width: 0
|
|
}
|
|
|
|
.middlebar .list-header .sort-by,
|
|
.middlebar .list-header .sort-type {
|
|
cursor: pointer
|
|
}
|
|
|
|
.middlebar .list-header .sort-by {
|
|
text-align: left
|
|
}
|
|
|
|
.middlebar .list-header .sort-type i.icon {
|
|
transition: -webkit-transform .15s;
|
|
transition: transform .15s;
|
|
transition: transform .15s, -webkit-transform .15s
|
|
}
|
|
|
|
html.mac .zen:not(.fullscreen) .preview {
|
|
padding-top: 38px!important
|
|
}
|
|
|
|
.zen .mainbar .titlebar,
|
|
.zen .mainbar .toolbar {
|
|
position: absolute;
|
|
top: 0;
|
|
left: 0;
|
|
right: 0;
|
|
opacity: 0;
|
|
transition: .15s;
|
|
z-index: 1000000
|
|
}
|
|
|
|
.zen .mainbar .titlebar:hover,
|
|
.zen .mainbar .toolbar:hover {
|
|
opacity: 1
|
|
}
|
|
|
|
.zen .popover:after {
|
|
display: none!important
|
|
}
|
|
|
|
.zen .popover.open {
|
|
margin-top: 0!important
|
|
}
|
|
|
|
html.mac .zen:not(.fullscreen) .popover.show {
|
|
-webkit-transform: translate(.625rem, 38px)!important;
|
|
transform: translate(.625rem, 38px)!important
|
|
}
|
|
|
|
html.mac .zen.fullscreen .popover.show,
|
|
html.no-mac .zen .popover.show {
|
|
-webkit-transform: translate(.625rem, .625rem)!important;
|
|
transform: translate(.625rem, .625rem)!important
|
|
}
|
|
|
|
.sidebar {
|
|
-webkit-flex: 1 1 165px;
|
|
-ms-flex: 1 1 165px;
|
|
flex: 1 1 165px;
|
|
min-width: 165px;
|
|
max-width: 350px
|
|
}
|
|
|
|
.sidebar .titlebar,
|
|
.sidebar .toolbar {
|
|
opacity: 0
|
|
}
|
|
|
|
.app,
|
|
.app-wrapper {
|
|
width: 100%;
|
|
height: 100%
|
|
} |