Files
standardnotes-app-web/dist/stylesheets/app.css

2605 lines
90 KiB
CSS
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
:root {
--sn-stylekit-base-font-size: 13px;
--sn-stylekit-font-size-p: 1.0rem;
--sn-stylekit-font-size-editor: 1.21rem;
--sn-stylekit-font-size-h6: 0.8rem;
--sn-stylekit-font-size-h5: 0.9rem;
--sn-stylekit-font-size-h4: 1.0rem;
--sn-stylekit-font-size-h3: 1.1rem;
--sn-stylekit-font-size-h2: 1.2rem;
--sn-stylekit-font-size-h1: 1.3rem;
--sn-stylekit-neutral-color: #989898;
--sn-stylekit-neutral-contrast-color: white;
--sn-stylekit-info-color: #086DD6;
--sn-stylekit-info-contrast-color: white;
--sn-stylekit-success-color: #2B9612;
--sn-stylekit-success-contrast-color: white;
--sn-stylekit-warning-color: #f6a200;
--sn-stylekit-warning-contrast-color: white;
--sn-stylekit-danger-color: #F80324;
--sn-stylekit-danger-contrast-color: white;
--sn-stylekit-shadow-color: #C8C8C8;
--sn-stylekit-background-color: white;
--sn-stylekit-border-color: #e3e3e3;
--sn-stylekit-foreground-color: black;
--sn-stylekit-contrast-background-color: #F6F6F6;
--sn-stylekit-contrast-foreground-color: #2e2e2e;
--sn-stylekit-contrast-border-color: #e3e3e3;
--sn-stylekit-secondary-background-color: #F6F6F6;
--sn-stylekit-secondary-foreground-color: #2e2e2e;
--sn-stylekit-secondary-border-color: #e3e3e3;
--sn-stylekit-secondary-contrast-background-color: #e3e3e3;
--sn-stylekit-secondary-contrast-foreground-color: #2e2e2e;
--sn-styleki--secondary-contrast-border-color: #a2a2a2;
--sn-stylekit-editor-background-color: var(--sn-stylekit-background-color);
--sn-stylekit-editor-foreground-color: var(--sn-stylekit-foreground-color);
--sn-stylekit-paragraph-text-color: #454545;
--sn-stylekit-input-placeholder-color: rgb(168, 168, 168);
--sn-stylekit-input-border-color: #e3e3e3;
--sn-stylekit-scrollbar-thumb-color: #dfdfdf;
--sn-stylekit-scrollbar-track-border-color: #E7E7E7;
--sn-stylekit-general-border-radius: 2px;
--sn-stylekit-monospace-font: "Ubuntu Mono", courier, monospace;
--sn-stylekit-sans-serif-font: -apple-system, BlinkMacSystemFont,
"Segoe UI", "Roboto", "Oxygen",
"Ubuntu", "Cantarell", "Fira Sans",
"Droid Sans", "Helvetica Neue", sans-serif; }
.sn-component {
font-family: var(--sn-stylekit-sans-serif-font);
-webkit-font-smoothing: antialiased;
color: var(--sn-stylekit-foreground-color); }
.sn-component .sk-panel {
box-shadow: 0px 2px 5px var(--sn-stylekit-shadow-color);
background-color: var(--sn-stylekit-background-color);
border: 1px solid var(--sn-stylekit-border-color);
border-radius: var(--sn-stylekit-general-border-radius);
display: flex;
flex-direction: column;
overflow: auto;
flex-grow: 1; }
.sn-component .sk-panel a:hover {
text-decoration: underline; }
.sn-component .sk-panel.static {
box-shadow: none;
border: none;
border-radius: 0; }
.sn-component .sk-panel .sk-panel-header {
flex-shrink: 0;
display: flex;
justify-content: space-between;
padding: 1.1rem 2rem;
border-bottom: 1px solid var(--sn-stylekit-contrast-border-color);
background-color: var(--sn-stylekit-contrast-background-color);
color: var(--sn-stylekit-contrast-foreground-color);
align-items: center; }
.sn-component .sk-panel .sk-panel-header .sk-panel-header-title {
font-size: var(--sn-stylekit-font-size-h1);
font-weight: 500; }
.sn-component .sk-panel .sk-panel-header .close-button {
font-weight: bold; }
.sn-component .sk-panel .sk-footer, .sn-component .sk-panel .sk-panel-footer {
padding: 1rem 2rem;
border-top: 1px solid var(--sn-stylekit-border-color);
box-sizing: border-box; }
.sn-component .sk-panel .sk-footer.extra-padding, .sn-component .sk-panel .sk-panel-footer.extra-padding {
padding: 2rem 2rem; }
.sn-component .sk-panel .sk-footer .left, .sn-component .sk-panel .sk-panel-footer .left {
text-align: left;
display: block; }
.sn-component .sk-panel .sk-footer .right, .sn-component .sk-panel .sk-panel-footer .right {
text-align: right;
display: block; }
.sn-component .sk-panel .sk-panel-content {
padding: 1.6rem 2rem;
padding-bottom: 0;
flex-grow: 1;
overflow: scroll;
height: 100%;
overflow-y: auto !important;
overflow-x: auto !important; }
.sn-component .sk-panel .sk-panel-content .sk-p, .sn-component .sk-panel .sk-panel-content .sk-li {
color: var(--sn-stylekit-paragraph-text-color);
line-height: 1.3; }
.sn-component .sk-panel-section {
padding-bottom: 1.6rem;
display: flex;
flex-direction: column; }
.sn-component .sk-panel-section.sk-panel-hero {
text-align: center; }
.sn-component .sk-panel-section .sk-p:last-child {
margin-bottom: 0; }
.sn-component .sk-panel-section:not(:last-child) {
margin-bottom: 1.5rem;
border-bottom: 1px solid var(--sn-stylekit-border-color); }
.sn-component .sk-panel-section:not(:last-child).no-border {
border-bottom: none; }
.sn-component .sk-panel-section:last-child {
margin-bottom: 0.5rem; }
.sn-component .sk-panel-section.no-bottom-pad {
padding-bottom: 0;
margin-bottom: 0; }
.sn-component .sk-panel-section .sk-panel-section-title {
margin-bottom: 0.5rem;
font-weight: bold;
font-size: var(--sn-stylekit-font-size-h3); }
.sn-component .sk-panel-section .sk-panel-section-outer-title {
border-bottom: 1px solid var(--sn-stylekit-border-color);
padding-bottom: 0.9rem;
margin-top: 2.1rem;
margin-bottom: 15px;
font-size: var(--sn-stylekit-font-size-h3); }
.sn-component .sk-panel-section .sk-panel-section-subtitle {
font-size: var(--sn-stylekit-font-size-h5);
margin-bottom: 2px; }
.sn-component .sk-panel-section .sk-panel-section-subtitle.subtle {
font-weight: normal;
opacity: 0.6; }
.sn-component .sk-panel-section .text-content .sk-p {
margin-bottom: 1rem; }
.sn-component .sk-panel-section .text-content p:first-child {
margin-top: 0.3rem; }
.sn-component .sk-panel-row {
display: flex;
justify-content: space-between;
align-items: center;
padding-top: 0.4rem; }
.sn-component .sk-panel-row.centered {
justify-content: center; }
.sn-component .sk-panel-row.justify-right {
justify-content: flex-end; }
.sn-component .sk-panel-row.justify-left {
justify-content: flex-start; }
.sn-component .sk-panel-row.align-top {
align-items: flex-start; }
.sn-component .sk-panel-row .sk-panel-column.stretch {
width: 100%; }
.sn-component .sk-panel-row.default-padding, .sn-component .sk-panel-row:not(:last-child) {
padding-bottom: 0.4rem; }
.sn-component .sk-panel-row.condensed {
padding-top: 0.2rem;
padding-bottom: 0.2rem; }
.sn-component .sk-panel-row .sk-p {
margin: 0;
padding: 0; }
.sn-component .vertical-rule {
background-color: var(--sn-stylekit-border-color);
height: 1.5rem;
width: 1px; }
.sn-component .sk-panel-form {
width: 100%; }
.sn-component .sk-panel-form.half {
width: 50%; }
.sn-component .sk-panel-form .form-submit {
margin-top: 0.15rem; }
.sn-component .right-aligned {
justify-content: flex-end;
text-align: right; }
.sn-component .sk-menu-panel {
background-color: var(--sn-stylekit-background-color);
border: 1px solid var(--sn-stylekit-contrast-border-color);
border-radius: var(--sn-stylekit-general-border-radius);
overflow: scroll;
user-select: none;
overflow-y: auto !important;
overflow-x: auto !important; }
.sn-component .sk-menu-panel .sk-menu-panel-header {
padding: 0.8rem 1rem;
border-bottom: 1px solid var(--sn-stylekit-contrast-border-color);
background-color: var(--sn-stylekit-contrast-background-color);
color: var(--sn-stylekit-contrast-foreground-color);
display: flex;
justify-content: space-between;
align-items: center; }
.sn-component .sk-menu-panel .sk-menu-panel-header-title {
font-weight: bold;
font-size: var(--sn-stylekit-font-size-h4); }
.sn-component .sk-menu-panel .sk-menu-panel-header-subtitle {
margin-top: 0.2rem;
opacity: 0.6; }
.sn-component .sk-menu-panel .sk-menu-panel-row {
padding: 1rem 1rem;
cursor: pointer;
display: flex;
flex-direction: row;
justify-content: space-between;
border-bottom: 1px solid var(--sn-stylekit-border-color); }
.sn-component .sk-menu-panel .sk-menu-panel-row:hover {
background-color: var(--sn-stylekit-contrast-background-color);
color: var(--sn-stylekit-contrast-foreground-color);
border-color: var(--sn-stylekit-contrast-border-color); }
.sn-component .sk-menu-panel .sk-menu-panel-row .sk-menu-panel-column {
display: flex;
justify-content: center;
flex-direction: column; }
.sn-component .sk-menu-panel .sk-menu-panel-row .sk-menu-panel-column:not(:first-child) {
padding-left: 1.0rem;
padding-right: 0.15rem; }
.sn-component .sk-menu-panel .sk-menu-panel-row .sk-menu-panel-column.stretch {
width: 100%; }
.sn-component .sk-menu-panel .sk-menu-panel-row .sk-menu-panel-column .sk-menu-panel-subrows {
margin-top: 1rem; }
.sn-component .sk-menu-panel .sk-menu-panel-row .sk-menu-panel-column .sk-menu-panel-row, .sn-component .sk-menu-panel .sk-menu-panel-row .sk-menu-panel-column .sk-menu-panel-subrow {
border: 1px solid var(--sn-stylekit-contrast-border-color);
margin-top: -1px; }
.sn-component .sk-menu-panel .sk-menu-panel-row .sk-menu-panel-column .sk-menu-panel-row:hover, .sn-component .sk-menu-panel .sk-menu-panel-row .sk-menu-panel-column .sk-menu-panel-subrow:hover {
background-color: var(--sn-stylekit-background-color); }
.sn-component .sk-menu-panel .sk-menu-panel-row .sk-menu-panel-column .left {
display: flex; }
.sn-component .sk-menu-panel .sk-menu-panel-row .sk-button .sk-label, .sn-component .sk-menu-panel .sk-menu-panel-row .sk-box .sk-label, .sn-component .sk-menu-panel .sk-menu-panel-row .sk-button .sk-panel-section .sk-panel-section-subtitle, .sn-component .sk-panel-section .sk-menu-panel .sk-menu-panel-row .sk-button .sk-panel-section-subtitle, .sn-component .sk-menu-panel .sk-menu-panel-row .sk-box .sk-panel-section .sk-panel-section-subtitle, .sn-component .sk-panel-section .sk-menu-panel .sk-menu-panel-row .sk-box .sk-panel-section-subtitle {
font-size: var(--sn-stylekit-font-size-h6);
font-weight: normal; }
.sn-component .sk-menu-panel .sk-menu-panel-row .sk-label, .sn-component .sk-menu-panel .sk-menu-panel-row .sk-panel-section .sk-panel-section-subtitle, .sn-component .sk-panel-section .sk-menu-panel .sk-menu-panel-row .sk-panel-section-subtitle {
font-size: var(--sn-stylekit-font-size-p);
font-weight: bold; }
.sn-component .sk-menu-panel .sk-menu-panel-row .sk-sublabel {
font-size: var(--sn-stylekit-font-size-h5);
margin-top: 0.2rem;
opacity: 0.6; }
.sn-component .red {
color: var(--sn-stylekit-danger-color); }
.sn-component .tinted {
color: var(--sn-stylekit-info-color); }
.sn-component .selectable {
user-select: text !important;
-ms-user-select: text !important;
-moz-user-select: text !important;
-webkit-user-select: text !important; }
.sn-component .sk-h1, .sn-component .sk-h2, .sn-component .sk-h3, .sn-component .sk-h4, .sn-component .sk-h5 {
margin: 0;
padding: 0;
font-weight: normal; }
.sn-component .sk-h1 {
font-weight: 500;
font-size: var(--sn-stylekit-font-size-h1);
line-height: 1.9rem; }
.sn-component .sk-h2 {
font-size: var(--sn-stylekit-font-size-h2);
line-height: 1.8rem; }
.sn-component .sk-h3 {
font-size: var(--sn-stylekit-font-size-h3);
line-height: 1.7rem; }
.sn-component .sk-h4 {
font-size: var(--sn-stylekit-font-size-p);
line-height: 1.4rem; }
.sn-component .sk-h5 {
font-size: var(--sn-stylekit-font-size-h5); }
.sn-component .sk-bold {
font-weight: bold; }
.sn-component .sk-font-small {
font-size: var(--sn-stylekit-font-size-h5); }
.sn-component .sk-font-normal {
font-size: var(--sn-stylekit-font-size-p); }
.sn-component .sk-font-large {
font-size: var(--sn-stylekit-font-size-h3); }
.sn-component a.sk-a {
cursor: pointer;
user-select: none; }
.sn-component a.sk-a.disabled {
color: var(--sn-stylekit-neutral-color);
opacity: 0.6; }
.sn-component a.sk-a.boxed {
border-radius: var(--sn-stylekit-general-border-radius);
padding: 0.3rem 0.4rem; }
.sn-component a.sk-a.boxed:hover {
text-decoration: none; }
.sn-component a.sk-a.boxed.neutral {
background-color: var(--sn-stylekit-neutral-color);
color: var(--sn-stylekit-neutral-contrast-color); }
.sn-component a.sk-a.boxed.info {
background-color: var(--sn-stylekit-info-color);
color: var(--sn-stylekit-info-contrast-color); }
.sn-component a.sk-a.boxed.warning {
background-color: var(--sn-stylekit-warning-color);
color: var(--sn-stylekit-warning-contrast-color); }
.sn-component a.sk-a.boxed.danger {
background-color: var(--sn-stylekit-danger-color);
color: var(--sn-stylekit-danger-contrast-color); }
.sn-component a.sk-a.boxed.success {
background-color: var(--sn-stylekit-success-color);
color: var(--sn-stylekit-success-contrast-color); }
.sn-component .wrap {
word-wrap: break-word; }
.sn-component *.sk-base {
color: var(--sn-stylekit-foreground-color); }
.sn-component *.contrast {
color: var(--sn-stylekit-contrast-foreground-color); }
.sn-component *.neutral {
color: var(--sn-stylekit-neutral-color); }
.sn-component *.info {
color: var(--sn-stylekit-info-color); }
.sn-component *.info-contrast {
color: var(--sn-stylekit-info-contrast-color); }
.sn-component *.warning {
color: var(--sn-stylekit-warning-color); }
.sn-component *.danger {
color: var(--sn-stylekit-danger-color); }
.sn-component *.success {
color: var(--sn-stylekit-success-color); }
.sn-component *.info-i {
color: var(--sn-stylekit-info-color) !important; }
.sn-component *.warning-i {
color: var(--sn-stylekit-warning-color) !important; }
.sn-component *.danger-i {
color: var(--sn-stylekit-danger-color) !important; }
.sn-component *.success-i {
color: var(--sn-stylekit-success-color) !important; }
.sn-component *.clear {
background-color: transparent;
border: none; }
.sn-component .center-text {
text-align: center !important;
justify-content: center !important; }
.sn-component p.sk-p {
margin: 0.5rem 0; }
.sn-component input.sk-input {
box-sizing: border-box;
padding: 0.7rem 0.8rem;
margin: 0.30rem 0;
border: none;
font-size: var(--sn-stylekit-font-size-h3);
width: 100%;
outline: 0;
resize: none; }
.sn-component input.sk-input.clear {
color: var(--sn-stylekit-foreground-color);
background-color: transparent;
border: none; }
.sn-component input.sk-input.no-border {
border: none; }
.sn-component .sk-label, .sn-component .sk-panel-section .sk-panel-section-subtitle {
font-weight: bold; }
.sn-component .sk-label.no-bold, .sn-component .sk-panel-section .no-bold.sk-panel-section-subtitle {
font-weight: normal; }
.sn-component label.sk-label, .sn-component .sk-panel-section label.sk-panel-section-subtitle {
margin: 0.7rem 0;
display: block; }
.sn-component label.sk-label input[type='checkbox'], .sn-component .sk-panel-section label.sk-panel-section-subtitle input[type='checkbox'], .sn-component input[type='radio'] {
width: auto;
margin-right: 0.45rem;
vertical-align: middle; }
.sn-component .sk-horizontal-group > *, .sn-component .sk-input-group > * {
display: inline-block;
vertical-align: middle; }
.sn-component .sk-horizontal-group > *:not(:first-child), .sn-component .sk-input-group > *:not(:first-child) {
margin-left: 0.9rem; }
.sn-component .sk-border-bottom {
border-bottom: 1px solid var(--sn-stylekit-border-color); }
.sn-component .sk-checkbox-group {
padding-top: 0.5rem;
padding-bottom: 0.3rem; }
.sn-component ::placeholder {
color: var(--sn-stylekit-input-placeholder-color); }
.sn-component :-ms-input-placeholder {
color: var(--sn-stylekit-input-placeholder-color); }
.sn-component ::-ms-input-placeholder {
color: var(--sn-stylekit-input-placeholder-color); }
.sn-component .sk-button-group.stretch {
display: flex;
width: 100%; }
.sn-component .sk-button-group.stretch .sk-button, .sn-component .sk-button-group.stretch .sk-box {
display: block;
flex-grow: 1;
text-align: center; }
.sn-component .sk-button-group .sk-button, .sn-component .sk-button-group .sk-box {
display: inline-block;
vertical-align: middle; }
.sn-component .sk-button-group .sk-button:not(:last-child), .sn-component .sk-button-group .sk-box:not(:last-child) {
margin-right: 5px; }
.sn-component .sk-button-group .sk-button:not(:last-child).featured, .sn-component .sk-button-group .sk-box:not(:last-child).featured {
margin-right: 8px; }
.sn-component .sk-segmented-buttons {
display: flex;
flex-direction: row; }
.sn-component .sk-segmented-buttons .sk-button, .sn-component .sk-segmented-buttons .sk-box {
border-radius: 0;
white-space: nowrap;
margin: 0;
margin-left: 0 !important;
margin-right: 0 !important; }
.sn-component .sk-segmented-buttons .sk-button:not(:last-child), .sn-component .sk-segmented-buttons .sk-box:not(:last-child) {
border-right: none;
border-radius: 0; }
.sn-component .sk-segmented-buttons .sk-button:first-child, .sn-component .sk-segmented-buttons .sk-box:first-child {
border-top-left-radius: var(--sn-stylekit-general-border-radius);
border-bottom-left-radius: var(--sn-stylekit-general-border-radius);
border-right: none;
border-top-right-radius: 0;
border-bottom-right-radius: 0; }
.sn-component .sk-segmented-buttons .sk-button:last-child, .sn-component .sk-segmented-buttons .sk-box:last-child {
border-top-right-radius: var(--sn-stylekit-general-border-radius);
border-bottom-right-radius: var(--sn-stylekit-general-border-radius);
border-left: none;
border-top-left-radius: 0;
border-bottom-left-radius: 0; }
.sn-component .sk-box-group .sk-box {
display: inline-block; }
.sn-component .sk-box-group .sk-box:not(:last-child) {
margin-right: 5px; }
.sn-component .sk-a.button {
text-decoration: none; }
.sn-component .sk-button, .sn-component .sk-box {
display: table;
padding: 0.5rem 0.7rem;
font-size: var(--sn-stylekit-font-size-h5);
cursor: pointer;
text-align: center;
user-select: none; }
.sn-component .sk-button.no-hover-border:after, .sn-component .no-hover-border.sk-box:after {
color: transparent !important; }
.sn-component .sk-button.wide, .sn-component .wide.sk-box {
padding: 0.3rem 1.7rem; }
.sn-component .sk-button > .sk-label, .sn-component .sk-box > .sk-label, .sn-component .sk-panel-section .sk-button > .sk-panel-section-subtitle, .sn-component .sk-panel-section .sk-box > .sk-panel-section-subtitle {
font-weight: bold;
display: block;
text-align: center; }
.sn-component .sk-button.big, .sn-component .big.sk-box {
font-size: var(--sn-stylekit-font-size-h3);
padding: 0.7rem 2.5rem; }
.sn-component .sk-box {
padding: 2.5rem 1.5rem; }
.sn-component .sk-button.sk-base, .sn-component .sk-base.sk-box, .sn-component .sk-box.sk-base, .sn-component .sk-circle.sk-base {
color: var(--sn-stylekit-foreground-color);
position: relative;
background-color: var(--sn-stylekit-background-color);
overflow: hidden;
border-radius: var(--sn-stylekit-general-border-radius);
border-color: var(--sn-stylekit-background-color); }
.sn-component .sk-button.sk-base *, .sn-component .sk-base.sk-box *, .sn-component .sk-box.sk-base *, .sn-component .sk-circle.sk-base * {
position: relative; }
.sn-component .sk-button.sk-base:before, .sn-component .sk-base.sk-box:before, .sn-component .sk-box.sk-base:before, .sn-component .sk-circle.sk-base:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--sn-stylekit-background-color);
opacity: 1.0;
border-radius: var(--sn-stylekit-general-border-radius); }
.sn-component .sk-button.sk-base:after, .sn-component .sk-base.sk-box:after, .sn-component .sk-box.sk-base:after, .sn-component .sk-circle.sk-base:after {
content: '';
display: block;
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
border-radius: var(--sn-stylekit-general-border-radius);
pointer-events: none;
box-shadow: inset 0 0 0 1px;
color: var(--sn-stylekit-background-color); }
.sn-component .sk-button.sk-base:hover:before, .sn-component .sk-base.sk-box:hover:before, .sn-component .sk-box.sk-base:hover:before, .sn-component .sk-circle.sk-base:hover:before {
filter: brightness(130%); }
.sn-component .sk-button.sk-base.no-bg, .sn-component .sk-base.no-bg.sk-box, .sn-component .sk-box.sk-base.no-bg, .sn-component .sk-circle.sk-base.no-bg {
background-color: transparent; }
.sn-component .sk-button.sk-base.no-bg:before, .sn-component .sk-base.no-bg.sk-box:before, .sn-component .sk-box.sk-base.no-bg:before, .sn-component .sk-circle.sk-base.no-bg:before {
content: none; }
.sn-component .sk-button.sk-base.featured, .sn-component .sk-base.featured.sk-box, .sn-component .sk-box.sk-base.featured, .sn-component .sk-circle.sk-base.featured {
border: none;
padding: 0.75rem 1.25rem;
font-size: var(--sn-stylekit-font-size-h3); }
.sn-component .sk-button.sk-base.featured:before, .sn-component .sk-base.featured.sk-box:before, .sn-component .sk-box.sk-base.featured:before, .sn-component .sk-circle.sk-base.featured:before {
opacity: 1.0; }
.sn-component .sk-button.contrast, .sn-component .contrast.sk-box, .sn-component .sk-box.contrast, .sn-component .sk-circle.contrast {
color: var(--sn-stylekit-contrast-foreground-color);
position: relative;
background-color: var(--sn-stylekit-contrast-background-color);
overflow: hidden;
border-radius: var(--sn-stylekit-general-border-radius);
border-color: var(--sn-stylekit-contrast-background-color); }
.sn-component .sk-button.contrast *, .sn-component .contrast.sk-box *, .sn-component .sk-box.contrast *, .sn-component .sk-circle.contrast * {
position: relative; }
.sn-component .sk-button.contrast:before, .sn-component .contrast.sk-box:before, .sn-component .sk-box.contrast:before, .sn-component .sk-circle.contrast:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--sn-stylekit-contrast-background-color);
opacity: 1.0;
border-radius: var(--sn-stylekit-general-border-radius); }
.sn-component .sk-button.contrast:after, .sn-component .contrast.sk-box:after, .sn-component .sk-box.contrast:after, .sn-component .sk-circle.contrast:after {
content: '';
display: block;
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
border-radius: var(--sn-stylekit-general-border-radius);
pointer-events: none;
box-shadow: inset 0 0 0 1px;
color: var(--sn-stylekit-contrast-background-color); }
.sn-component .sk-button.contrast:hover:before, .sn-component .contrast.sk-box:hover:before, .sn-component .sk-box.contrast:hover:before, .sn-component .sk-circle.contrast:hover:before {
filter: brightness(130%); }
.sn-component .sk-button.contrast.no-bg, .sn-component .contrast.no-bg.sk-box, .sn-component .sk-box.contrast.no-bg, .sn-component .sk-circle.contrast.no-bg {
background-color: transparent; }
.sn-component .sk-button.contrast.no-bg:before, .sn-component .contrast.no-bg.sk-box:before, .sn-component .sk-box.contrast.no-bg:before, .sn-component .sk-circle.contrast.no-bg:before {
content: none; }
.sn-component .sk-button.contrast.featured, .sn-component .contrast.featured.sk-box, .sn-component .sk-box.contrast.featured, .sn-component .sk-circle.contrast.featured {
border: none;
padding: 0.75rem 1.25rem;
font-size: var(--sn-stylekit-font-size-h3); }
.sn-component .sk-button.contrast.featured:before, .sn-component .contrast.featured.sk-box:before, .sn-component .sk-box.contrast.featured:before, .sn-component .sk-circle.contrast.featured:before {
opacity: 1.0; }
.sn-component .sk-button.sk-secondary, .sn-component .sk-secondary.sk-box, .sn-component .sk-box.sk-secondary, .sn-component .sk-circle.sk-secondary {
color: var(--sn-stylekit-secondary-foreground-color);
position: relative;
background-color: var(--sn-stylekit-secondary-background-color);
overflow: hidden;
border-radius: var(--sn-stylekit-general-border-radius);
border-color: var(--sn-stylekit-secondary-background-color); }
.sn-component .sk-button.sk-secondary *, .sn-component .sk-secondary.sk-box *, .sn-component .sk-box.sk-secondary *, .sn-component .sk-circle.sk-secondary * {
position: relative; }
.sn-component .sk-button.sk-secondary:before, .sn-component .sk-secondary.sk-box:before, .sn-component .sk-box.sk-secondary:before, .sn-component .sk-circle.sk-secondary:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--sn-stylekit-secondary-background-color);
opacity: 1.0;
border-radius: var(--sn-stylekit-general-border-radius); }
.sn-component .sk-button.sk-secondary:after, .sn-component .sk-secondary.sk-box:after, .sn-component .sk-box.sk-secondary:after, .sn-component .sk-circle.sk-secondary:after {
content: '';
display: block;
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
border-radius: var(--sn-stylekit-general-border-radius);
pointer-events: none;
box-shadow: inset 0 0 0 1px;
color: var(--sn-stylekit-secondary-background-color); }
.sn-component .sk-button.sk-secondary:hover:before, .sn-component .sk-secondary.sk-box:hover:before, .sn-component .sk-box.sk-secondary:hover:before, .sn-component .sk-circle.sk-secondary:hover:before {
filter: brightness(130%); }
.sn-component .sk-button.sk-secondary.no-bg, .sn-component .sk-secondary.no-bg.sk-box, .sn-component .sk-box.sk-secondary.no-bg, .sn-component .sk-circle.sk-secondary.no-bg {
background-color: transparent; }
.sn-component .sk-button.sk-secondary.no-bg:before, .sn-component .sk-secondary.no-bg.sk-box:before, .sn-component .sk-box.sk-secondary.no-bg:before, .sn-component .sk-circle.sk-secondary.no-bg:before {
content: none; }
.sn-component .sk-button.sk-secondary.featured, .sn-component .sk-secondary.featured.sk-box, .sn-component .sk-box.sk-secondary.featured, .sn-component .sk-circle.sk-secondary.featured {
border: none;
padding: 0.75rem 1.25rem;
font-size: var(--sn-stylekit-font-size-h3); }
.sn-component .sk-button.sk-secondary.featured:before, .sn-component .sk-secondary.featured.sk-box:before, .sn-component .sk-box.sk-secondary.featured:before, .sn-component .sk-circle.sk-secondary.featured:before {
opacity: 1.0; }
.sn-component .sk-button.sk-secondary-contrast, .sn-component .sk-secondary-contrast.sk-box, .sn-component .sk-box.sk-secondary-contrast, .sn-component .sk-circle.sk-secondary-contrast {
color: var(--sn-stylekit-secondary-contrast-foreground-color);
position: relative;
background-color: var(--sn-stylekit-secondary-contrast-background-color);
overflow: hidden;
border-radius: var(--sn-stylekit-general-border-radius);
border-color: var(--sn-stylekit-secondary-contrast-background-color); }
.sn-component .sk-button.sk-secondary-contrast *, .sn-component .sk-secondary-contrast.sk-box *, .sn-component .sk-box.sk-secondary-contrast *, .sn-component .sk-circle.sk-secondary-contrast * {
position: relative; }
.sn-component .sk-button.sk-secondary-contrast:before, .sn-component .sk-secondary-contrast.sk-box:before, .sn-component .sk-box.sk-secondary-contrast:before, .sn-component .sk-circle.sk-secondary-contrast:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--sn-stylekit-secondary-contrast-background-color);
opacity: 1.0;
border-radius: var(--sn-stylekit-general-border-radius); }
.sn-component .sk-button.sk-secondary-contrast:after, .sn-component .sk-secondary-contrast.sk-box:after, .sn-component .sk-box.sk-secondary-contrast:after, .sn-component .sk-circle.sk-secondary-contrast:after {
content: '';
display: block;
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
border-radius: var(--sn-stylekit-general-border-radius);
pointer-events: none;
box-shadow: inset 0 0 0 1px;
color: var(--sn-stylekit-secondary-contrast-background-color); }
.sn-component .sk-button.sk-secondary-contrast:hover:before, .sn-component .sk-secondary-contrast.sk-box:hover:before, .sn-component .sk-box.sk-secondary-contrast:hover:before, .sn-component .sk-circle.sk-secondary-contrast:hover:before {
filter: brightness(130%); }
.sn-component .sk-button.sk-secondary-contrast.no-bg, .sn-component .sk-secondary-contrast.no-bg.sk-box, .sn-component .sk-box.sk-secondary-contrast.no-bg, .sn-component .sk-circle.sk-secondary-contrast.no-bg {
background-color: transparent; }
.sn-component .sk-button.sk-secondary-contrast.no-bg:before, .sn-component .sk-secondary-contrast.no-bg.sk-box:before, .sn-component .sk-box.sk-secondary-contrast.no-bg:before, .sn-component .sk-circle.sk-secondary-contrast.no-bg:before {
content: none; }
.sn-component .sk-button.sk-secondary-contrast.featured, .sn-component .sk-secondary-contrast.featured.sk-box, .sn-component .sk-box.sk-secondary-contrast.featured, .sn-component .sk-circle.sk-secondary-contrast.featured {
border: none;
padding: 0.75rem 1.25rem;
font-size: var(--sn-stylekit-font-size-h3); }
.sn-component .sk-button.sk-secondary-contrast.featured:before, .sn-component .sk-secondary-contrast.featured.sk-box:before, .sn-component .sk-box.sk-secondary-contrast.featured:before, .sn-component .sk-circle.sk-secondary-contrast.featured:before {
opacity: 1.0; }
.sn-component .sk-button.neutral, .sn-component .neutral.sk-box, .sn-component .sk-box.neutral, .sn-component .sk-circle.neutral {
color: var(--sn-stylekit-neutral-contrast-color);
position: relative;
background-color: var(--sn-stylekit-neutral-color);
overflow: hidden;
border-radius: var(--sn-stylekit-general-border-radius);
border-color: var(--sn-stylekit-neutral-color); }
.sn-component .sk-button.neutral *, .sn-component .neutral.sk-box *, .sn-component .sk-box.neutral *, .sn-component .sk-circle.neutral * {
position: relative; }
.sn-component .sk-button.neutral:before, .sn-component .neutral.sk-box:before, .sn-component .sk-box.neutral:before, .sn-component .sk-circle.neutral:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--sn-stylekit-neutral-color);
opacity: 1.0;
border-radius: var(--sn-stylekit-general-border-radius); }
.sn-component .sk-button.neutral:after, .sn-component .neutral.sk-box:after, .sn-component .sk-box.neutral:after, .sn-component .sk-circle.neutral:after {
content: '';
display: block;
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
border-radius: var(--sn-stylekit-general-border-radius);
pointer-events: none;
box-shadow: inset 0 0 0 1px;
color: var(--sn-stylekit-neutral-color); }
.sn-component .sk-button.neutral:hover:before, .sn-component .neutral.sk-box:hover:before, .sn-component .sk-box.neutral:hover:before, .sn-component .sk-circle.neutral:hover:before {
filter: brightness(130%); }
.sn-component .sk-button.neutral.no-bg, .sn-component .neutral.no-bg.sk-box, .sn-component .sk-box.neutral.no-bg, .sn-component .sk-circle.neutral.no-bg {
background-color: transparent; }
.sn-component .sk-button.neutral.no-bg:before, .sn-component .neutral.no-bg.sk-box:before, .sn-component .sk-box.neutral.no-bg:before, .sn-component .sk-circle.neutral.no-bg:before {
content: none; }
.sn-component .sk-button.neutral.featured, .sn-component .neutral.featured.sk-box, .sn-component .sk-box.neutral.featured, .sn-component .sk-circle.neutral.featured {
border: none;
padding: 0.75rem 1.25rem;
font-size: var(--sn-stylekit-font-size-h3); }
.sn-component .sk-button.neutral.featured:before, .sn-component .neutral.featured.sk-box:before, .sn-component .sk-box.neutral.featured:before, .sn-component .sk-circle.neutral.featured:before {
opacity: 1.0; }
.sn-component .sk-button.info, .sn-component .info.sk-box, .sn-component .sk-box.info, .sn-component .sk-circle.info {
color: var(--sn-stylekit-info-contrast-color);
position: relative;
background-color: var(--sn-stylekit-info-color);
overflow: hidden;
border-radius: var(--sn-stylekit-general-border-radius);
border-color: var(--sn-stylekit-info-color); }
.sn-component .sk-button.info *, .sn-component .info.sk-box *, .sn-component .sk-box.info *, .sn-component .sk-circle.info * {
position: relative; }
.sn-component .sk-button.info:before, .sn-component .info.sk-box:before, .sn-component .sk-box.info:before, .sn-component .sk-circle.info:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--sn-stylekit-info-color);
opacity: 1.0;
border-radius: var(--sn-stylekit-general-border-radius); }
.sn-component .sk-button.info:after, .sn-component .info.sk-box:after, .sn-component .sk-box.info:after, .sn-component .sk-circle.info:after {
content: '';
display: block;
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
border-radius: var(--sn-stylekit-general-border-radius);
pointer-events: none;
box-shadow: inset 0 0 0 1px;
color: var(--sn-stylekit-info-color); }
.sn-component .sk-button.info:hover:before, .sn-component .info.sk-box:hover:before, .sn-component .sk-box.info:hover:before, .sn-component .sk-circle.info:hover:before {
filter: brightness(130%); }
.sn-component .sk-button.info.no-bg, .sn-component .info.no-bg.sk-box, .sn-component .sk-box.info.no-bg, .sn-component .sk-circle.info.no-bg {
background-color: transparent; }
.sn-component .sk-button.info.no-bg:before, .sn-component .info.no-bg.sk-box:before, .sn-component .sk-box.info.no-bg:before, .sn-component .sk-circle.info.no-bg:before {
content: none; }
.sn-component .sk-button.info.featured, .sn-component .info.featured.sk-box, .sn-component .sk-box.info.featured, .sn-component .sk-circle.info.featured {
border: none;
padding: 0.75rem 1.25rem;
font-size: var(--sn-stylekit-font-size-h3); }
.sn-component .sk-button.info.featured:before, .sn-component .info.featured.sk-box:before, .sn-component .sk-box.info.featured:before, .sn-component .sk-circle.info.featured:before {
opacity: 1.0; }
.sn-component .sk-button.warning, .sn-component .warning.sk-box, .sn-component .sk-box.warning, .sn-component .sk-circle.warning {
color: var(--sn-stylekit-warning-contrast-color);
position: relative;
background-color: var(--sn-stylekit-warning-color);
overflow: hidden;
border-radius: var(--sn-stylekit-general-border-radius);
border-color: var(--sn-stylekit-warning-color); }
.sn-component .sk-button.warning *, .sn-component .warning.sk-box *, .sn-component .sk-box.warning *, .sn-component .sk-circle.warning * {
position: relative; }
.sn-component .sk-button.warning:before, .sn-component .warning.sk-box:before, .sn-component .sk-box.warning:before, .sn-component .sk-circle.warning:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--sn-stylekit-warning-color);
opacity: 1.0;
border-radius: var(--sn-stylekit-general-border-radius); }
.sn-component .sk-button.warning:after, .sn-component .warning.sk-box:after, .sn-component .sk-box.warning:after, .sn-component .sk-circle.warning:after {
content: '';
display: block;
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
border-radius: var(--sn-stylekit-general-border-radius);
pointer-events: none;
box-shadow: inset 0 0 0 1px;
color: var(--sn-stylekit-warning-color); }
.sn-component .sk-button.warning:hover:before, .sn-component .warning.sk-box:hover:before, .sn-component .sk-box.warning:hover:before, .sn-component .sk-circle.warning:hover:before {
filter: brightness(130%); }
.sn-component .sk-button.warning.no-bg, .sn-component .warning.no-bg.sk-box, .sn-component .sk-box.warning.no-bg, .sn-component .sk-circle.warning.no-bg {
background-color: transparent; }
.sn-component .sk-button.warning.no-bg:before, .sn-component .warning.no-bg.sk-box:before, .sn-component .sk-box.warning.no-bg:before, .sn-component .sk-circle.warning.no-bg:before {
content: none; }
.sn-component .sk-button.warning.featured, .sn-component .warning.featured.sk-box, .sn-component .sk-box.warning.featured, .sn-component .sk-circle.warning.featured {
border: none;
padding: 0.75rem 1.25rem;
font-size: var(--sn-stylekit-font-size-h3); }
.sn-component .sk-button.warning.featured:before, .sn-component .warning.featured.sk-box:before, .sn-component .sk-box.warning.featured:before, .sn-component .sk-circle.warning.featured:before {
opacity: 1.0; }
.sn-component .sk-button.danger, .sn-component .danger.sk-box, .sn-component .sk-box.danger, .sn-component .sk-circle.danger {
color: var(--sn-stylekit-danger-contrast-color);
position: relative;
background-color: var(--sn-stylekit-danger-color);
overflow: hidden;
border-radius: var(--sn-stylekit-general-border-radius);
border-color: var(--sn-stylekit-danger-color); }
.sn-component .sk-button.danger *, .sn-component .danger.sk-box *, .sn-component .sk-box.danger *, .sn-component .sk-circle.danger * {
position: relative; }
.sn-component .sk-button.danger:before, .sn-component .danger.sk-box:before, .sn-component .sk-box.danger:before, .sn-component .sk-circle.danger:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--sn-stylekit-danger-color);
opacity: 1.0;
border-radius: var(--sn-stylekit-general-border-radius); }
.sn-component .sk-button.danger:after, .sn-component .danger.sk-box:after, .sn-component .sk-box.danger:after, .sn-component .sk-circle.danger:after {
content: '';
display: block;
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
border-radius: var(--sn-stylekit-general-border-radius);
pointer-events: none;
box-shadow: inset 0 0 0 1px;
color: var(--sn-stylekit-danger-color); }
.sn-component .sk-button.danger:hover:before, .sn-component .danger.sk-box:hover:before, .sn-component .sk-box.danger:hover:before, .sn-component .sk-circle.danger:hover:before {
filter: brightness(130%); }
.sn-component .sk-button.danger.no-bg, .sn-component .danger.no-bg.sk-box, .sn-component .sk-box.danger.no-bg, .sn-component .sk-circle.danger.no-bg {
background-color: transparent; }
.sn-component .sk-button.danger.no-bg:before, .sn-component .danger.no-bg.sk-box:before, .sn-component .sk-box.danger.no-bg:before, .sn-component .sk-circle.danger.no-bg:before {
content: none; }
.sn-component .sk-button.danger.featured, .sn-component .danger.featured.sk-box, .sn-component .sk-box.danger.featured, .sn-component .sk-circle.danger.featured {
border: none;
padding: 0.75rem 1.25rem;
font-size: var(--sn-stylekit-font-size-h3); }
.sn-component .sk-button.danger.featured:before, .sn-component .danger.featured.sk-box:before, .sn-component .sk-box.danger.featured:before, .sn-component .sk-circle.danger.featured:before {
opacity: 1.0; }
.sn-component .sk-button.success, .sn-component .success.sk-box, .sn-component .sk-box.success, .sn-component .sk-circle.success {
color: var(--sn-stylekit-success-contrast-color);
position: relative;
background-color: var(--sn-stylekit-success-color);
overflow: hidden;
border-radius: var(--sn-stylekit-general-border-radius);
border-color: var(--sn-stylekit-success-color); }
.sn-component .sk-button.success *, .sn-component .success.sk-box *, .sn-component .sk-box.success *, .sn-component .sk-circle.success * {
position: relative; }
.sn-component .sk-button.success:before, .sn-component .success.sk-box:before, .sn-component .sk-box.success:before, .sn-component .sk-circle.success:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--sn-stylekit-success-color);
opacity: 1.0;
border-radius: var(--sn-stylekit-general-border-radius); }
.sn-component .sk-button.success:after, .sn-component .success.sk-box:after, .sn-component .sk-box.success:after, .sn-component .sk-circle.success:after {
content: '';
display: block;
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
border-radius: var(--sn-stylekit-general-border-radius);
pointer-events: none;
box-shadow: inset 0 0 0 1px;
color: var(--sn-stylekit-success-color); }
.sn-component .sk-button.success:hover:before, .sn-component .success.sk-box:hover:before, .sn-component .sk-box.success:hover:before, .sn-component .sk-circle.success:hover:before {
filter: brightness(130%); }
.sn-component .sk-button.success.no-bg, .sn-component .success.no-bg.sk-box, .sn-component .sk-box.success.no-bg, .sn-component .sk-circle.success.no-bg {
background-color: transparent; }
.sn-component .sk-button.success.no-bg:before, .sn-component .success.no-bg.sk-box:before, .sn-component .sk-box.success.no-bg:before, .sn-component .sk-circle.success.no-bg:before {
content: none; }
.sn-component .sk-button.success.featured, .sn-component .success.featured.sk-box, .sn-component .sk-box.success.featured, .sn-component .sk-circle.success.featured {
border: none;
padding: 0.75rem 1.25rem;
font-size: var(--sn-stylekit-font-size-h3); }
.sn-component .sk-button.success.featured:before, .sn-component .success.featured.sk-box:before, .sn-component .sk-box.success.featured:before, .sn-component .sk-circle.success.featured:before {
opacity: 1.0; }
.sn-component .sk-notification.contrast, .sn-component .sk-input.contrast {
color: var(--sn-stylekit-contrast-foreground-color);
position: relative;
background-color: var(--sn-stylekit-contrast-background-color);
overflow: hidden;
border-radius: var(--sn-stylekit-general-border-radius);
border-color: var(--sn-stylekit-contrast-border-color);
border: 1px solid var(--sn-stylekit-contrast-border-color); }
.sn-component .sk-notification.contrast *, .sn-component .sk-input.contrast * {
position: relative; }
.sn-component .sk-notification.contrast:before, .sn-component .sk-input.contrast:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--sn-stylekit-contrast-background-color);
opacity: 1.0;
border-radius: var(--sn-stylekit-general-border-radius); }
.sn-component .sk-notification.contrast:after, .sn-component .sk-input.contrast:after {
content: '';
display: block;
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
border-radius: var(--sn-stylekit-general-border-radius);
pointer-events: none;
color: var(--sn-stylekit-contrast-border-color);
border-color: var(--sn-stylekit-contrast-border-color); }
.sn-component .sk-notification.contrast.no-bg, .sn-component .sk-input.contrast.no-bg {
background-color: transparent; }
.sn-component .sk-notification.contrast.no-bg:before, .sn-component .sk-input.contrast.no-bg:before {
content: none; }
.sn-component .sk-notification.contrast.featured, .sn-component .sk-input.contrast.featured {
border: none;
padding: 0.75rem 1.25rem;
font-size: var(--sn-stylekit-font-size-h3); }
.sn-component .sk-notification.contrast.featured:before, .sn-component .sk-input.contrast.featured:before {
opacity: 1.0; }
.sn-component .sk-notification.sk-secondary, .sn-component .sk-input.sk-secondary {
color: var(--sn-stylekit-secondary-foreground-color);
position: relative;
background-color: var(--sn-stylekit-secondary-background-color);
overflow: hidden;
border-radius: var(--sn-stylekit-general-border-radius);
border-color: var(--sn-stylekit-secondary-border-color);
border: 1px solid var(--sn-stylekit-secondary-border-color); }
.sn-component .sk-notification.sk-secondary *, .sn-component .sk-input.sk-secondary * {
position: relative; }
.sn-component .sk-notification.sk-secondary:before, .sn-component .sk-input.sk-secondary:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--sn-stylekit-secondary-background-color);
opacity: 1.0;
border-radius: var(--sn-stylekit-general-border-radius); }
.sn-component .sk-notification.sk-secondary:after, .sn-component .sk-input.sk-secondary:after {
content: '';
display: block;
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
border-radius: var(--sn-stylekit-general-border-radius);
pointer-events: none;
color: var(--sn-stylekit-secondary-border-color);
border-color: var(--sn-stylekit-secondary-border-color); }
.sn-component .sk-notification.sk-secondary.no-bg, .sn-component .sk-input.sk-secondary.no-bg {
background-color: transparent; }
.sn-component .sk-notification.sk-secondary.no-bg:before, .sn-component .sk-input.sk-secondary.no-bg:before {
content: none; }
.sn-component .sk-notification.sk-secondary.featured, .sn-component .sk-input.sk-secondary.featured {
border: none;
padding: 0.75rem 1.25rem;
font-size: var(--sn-stylekit-font-size-h3); }
.sn-component .sk-notification.sk-secondary.featured:before, .sn-component .sk-input.sk-secondary.featured:before {
opacity: 1.0; }
.sn-component .sk-notification.sk-secondary-contrast, .sn-component .sk-input.sk-secondary-contrast {
color: var(--sn-stylekit-secondary-contrast-foreground-color);
position: relative;
background-color: var(--sn-stylekit-secondary-contrast-background-color);
overflow: hidden;
border-radius: var(--sn-stylekit-general-border-radius);
border-color: var(--sn-stylekit-secondary-contrast-border-color);
border: 1px solid var(--sn-stylekit-secondary-contrast-border-color); }
.sn-component .sk-notification.sk-secondary-contrast *, .sn-component .sk-input.sk-secondary-contrast * {
position: relative; }
.sn-component .sk-notification.sk-secondary-contrast:before, .sn-component .sk-input.sk-secondary-contrast:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--sn-stylekit-secondary-contrast-background-color);
opacity: 1.0;
border-radius: var(--sn-stylekit-general-border-radius); }
.sn-component .sk-notification.sk-secondary-contrast:after, .sn-component .sk-input.sk-secondary-contrast:after {
content: '';
display: block;
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
border-radius: var(--sn-stylekit-general-border-radius);
pointer-events: none;
color: var(--sn-stylekit-secondary-contrast-border-color);
border-color: var(--sn-stylekit-secondary-contrast-border-color); }
.sn-component .sk-notification.sk-secondary-contrast.no-bg, .sn-component .sk-input.sk-secondary-contrast.no-bg {
background-color: transparent; }
.sn-component .sk-notification.sk-secondary-contrast.no-bg:before, .sn-component .sk-input.sk-secondary-contrast.no-bg:before {
content: none; }
.sn-component .sk-notification.sk-secondary-contrast.featured, .sn-component .sk-input.sk-secondary-contrast.featured {
border: none;
padding: 0.75rem 1.25rem;
font-size: var(--sn-stylekit-font-size-h3); }
.sn-component .sk-notification.sk-secondary-contrast.featured:before, .sn-component .sk-input.sk-secondary-contrast.featured:before {
opacity: 1.0; }
.sn-component .sk-notification.sk-base, .sn-component .sk-input.sk-base {
color: var(--sn-stylekit-foreground-color);
position: relative;
background-color: var(--sn-stylekit-background-color);
overflow: hidden;
border-radius: var(--sn-stylekit-general-border-radius);
border-color: var(--sn-stylekit-border-color);
border: 1px solid var(--sn-stylekit-border-color); }
.sn-component .sk-notification.sk-base *, .sn-component .sk-input.sk-base * {
position: relative; }
.sn-component .sk-notification.sk-base:before, .sn-component .sk-input.sk-base:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--sn-stylekit-background-color);
opacity: 1.0;
border-radius: var(--sn-stylekit-general-border-radius); }
.sn-component .sk-notification.sk-base:after, .sn-component .sk-input.sk-base:after {
content: '';
display: block;
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
border-radius: var(--sn-stylekit-general-border-radius);
pointer-events: none;
color: var(--sn-stylekit-border-color);
border-color: var(--sn-stylekit-border-color); }
.sn-component .sk-notification.sk-base.no-bg, .sn-component .sk-input.sk-base.no-bg {
background-color: transparent; }
.sn-component .sk-notification.sk-base.no-bg:before, .sn-component .sk-input.sk-base.no-bg:before {
content: none; }
.sn-component .sk-notification.sk-base.featured, .sn-component .sk-input.sk-base.featured {
border: none;
padding: 0.75rem 1.25rem;
font-size: var(--sn-stylekit-font-size-h3); }
.sn-component .sk-notification.sk-base.featured:before, .sn-component .sk-input.sk-base.featured:before {
opacity: 1.0; }
.sn-component .sk-notification.neutral, .sn-component .sk-input.neutral {
color: var(--sn-stylekit-neutral-contrast-color);
position: relative;
background-color: var(--sn-stylekit-neutral-color);
overflow: hidden;
border-radius: var(--sn-stylekit-general-border-radius);
border-color: var(--sn-stylekit-neutral-color); }
.sn-component .sk-notification.neutral *, .sn-component .sk-input.neutral * {
position: relative; }
.sn-component .sk-notification.neutral:before, .sn-component .sk-input.neutral:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--sn-stylekit-neutral-color);
opacity: 1.0;
border-radius: var(--sn-stylekit-general-border-radius); }
.sn-component .sk-notification.neutral:after, .sn-component .sk-input.neutral:after {
content: '';
display: block;
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
border-radius: var(--sn-stylekit-general-border-radius);
pointer-events: none;
box-shadow: inset 0 0 0 1px;
color: var(--sn-stylekit-neutral-color); }
.sn-component .sk-notification.neutral.no-bg, .sn-component .sk-input.neutral.no-bg {
background-color: transparent; }
.sn-component .sk-notification.neutral.no-bg:before, .sn-component .sk-input.neutral.no-bg:before {
content: none; }
.sn-component .sk-notification.neutral.featured, .sn-component .sk-input.neutral.featured {
border: none;
padding: 0.75rem 1.25rem;
font-size: var(--sn-stylekit-font-size-h3); }
.sn-component .sk-notification.neutral.featured:before, .sn-component .sk-input.neutral.featured:before {
opacity: 1.0; }
.sn-component .sk-notification.info, .sn-component .sk-input.info {
color: var(--sn-stylekit-info-contrast-color);
position: relative;
background-color: var(--sn-stylekit-info-color);
overflow: hidden;
border-radius: var(--sn-stylekit-general-border-radius);
border-color: var(--sn-stylekit-info-color); }
.sn-component .sk-notification.info *, .sn-component .sk-input.info * {
position: relative; }
.sn-component .sk-notification.info:before, .sn-component .sk-input.info:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--sn-stylekit-info-color);
opacity: 1.0;
border-radius: var(--sn-stylekit-general-border-radius); }
.sn-component .sk-notification.info:after, .sn-component .sk-input.info:after {
content: '';
display: block;
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
border-radius: var(--sn-stylekit-general-border-radius);
pointer-events: none;
box-shadow: inset 0 0 0 1px;
color: var(--sn-stylekit-info-color); }
.sn-component .sk-notification.info.no-bg, .sn-component .sk-input.info.no-bg {
background-color: transparent; }
.sn-component .sk-notification.info.no-bg:before, .sn-component .sk-input.info.no-bg:before {
content: none; }
.sn-component .sk-notification.info.featured, .sn-component .sk-input.info.featured {
border: none;
padding: 0.75rem 1.25rem;
font-size: var(--sn-stylekit-font-size-h3); }
.sn-component .sk-notification.info.featured:before, .sn-component .sk-input.info.featured:before {
opacity: 1.0; }
.sn-component .sk-notification.warning, .sn-component .sk-input.warning {
color: var(--sn-stylekit-warning-contrast-color);
position: relative;
background-color: var(--sn-stylekit-warning-color);
overflow: hidden;
border-radius: var(--sn-stylekit-general-border-radius);
border-color: var(--sn-stylekit-warning-color); }
.sn-component .sk-notification.warning *, .sn-component .sk-input.warning * {
position: relative; }
.sn-component .sk-notification.warning:before, .sn-component .sk-input.warning:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--sn-stylekit-warning-color);
opacity: 1.0;
border-radius: var(--sn-stylekit-general-border-radius); }
.sn-component .sk-notification.warning:after, .sn-component .sk-input.warning:after {
content: '';
display: block;
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
border-radius: var(--sn-stylekit-general-border-radius);
pointer-events: none;
box-shadow: inset 0 0 0 1px;
color: var(--sn-stylekit-warning-color); }
.sn-component .sk-notification.warning.no-bg, .sn-component .sk-input.warning.no-bg {
background-color: transparent; }
.sn-component .sk-notification.warning.no-bg:before, .sn-component .sk-input.warning.no-bg:before {
content: none; }
.sn-component .sk-notification.warning.featured, .sn-component .sk-input.warning.featured {
border: none;
padding: 0.75rem 1.25rem;
font-size: var(--sn-stylekit-font-size-h3); }
.sn-component .sk-notification.warning.featured:before, .sn-component .sk-input.warning.featured:before {
opacity: 1.0; }
.sn-component .sk-notification.danger, .sn-component .sk-input.danger {
color: var(--sn-stylekit-danger-contrast-color);
position: relative;
background-color: var(--sn-stylekit-danger-color);
overflow: hidden;
border-radius: var(--sn-stylekit-general-border-radius);
border-color: var(--sn-stylekit-danger-color); }
.sn-component .sk-notification.danger *, .sn-component .sk-input.danger * {
position: relative; }
.sn-component .sk-notification.danger:before, .sn-component .sk-input.danger:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--sn-stylekit-danger-color);
opacity: 1.0;
border-radius: var(--sn-stylekit-general-border-radius); }
.sn-component .sk-notification.danger:after, .sn-component .sk-input.danger:after {
content: '';
display: block;
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
border-radius: var(--sn-stylekit-general-border-radius);
pointer-events: none;
box-shadow: inset 0 0 0 1px;
color: var(--sn-stylekit-danger-color); }
.sn-component .sk-notification.danger.no-bg, .sn-component .sk-input.danger.no-bg {
background-color: transparent; }
.sn-component .sk-notification.danger.no-bg:before, .sn-component .sk-input.danger.no-bg:before {
content: none; }
.sn-component .sk-notification.danger.featured, .sn-component .sk-input.danger.featured {
border: none;
padding: 0.75rem 1.25rem;
font-size: var(--sn-stylekit-font-size-h3); }
.sn-component .sk-notification.danger.featured:before, .sn-component .sk-input.danger.featured:before {
opacity: 1.0; }
.sn-component .sk-notification.success, .sn-component .sk-input.success {
color: var(--sn-stylekit-success-contrast-color);
position: relative;
background-color: var(--sn-stylekit-success-color);
overflow: hidden;
border-radius: var(--sn-stylekit-general-border-radius);
border-color: var(--sn-stylekit-success-color); }
.sn-component .sk-notification.success *, .sn-component .sk-input.success * {
position: relative; }
.sn-component .sk-notification.success:before, .sn-component .sk-input.success:before {
content: "";
position: absolute;
top: 0;
left: 0;
width: 100%;
height: 100%;
background-color: var(--sn-stylekit-success-color);
opacity: 1.0;
border-radius: var(--sn-stylekit-general-border-radius); }
.sn-component .sk-notification.success:after, .sn-component .sk-input.success:after {
content: '';
display: block;
height: 100%;
position: absolute;
top: 0;
left: 0;
width: 100%;
border-radius: var(--sn-stylekit-general-border-radius);
pointer-events: none;
box-shadow: inset 0 0 0 1px;
color: var(--sn-stylekit-success-color); }
.sn-component .sk-notification.success.no-bg, .sn-component .sk-input.success.no-bg {
background-color: transparent; }
.sn-component .sk-notification.success.no-bg:before, .sn-component .sk-input.success.no-bg:before {
content: none; }
.sn-component .sk-notification.success.featured, .sn-component .sk-input.success.featured {
border: none;
padding: 0.75rem 1.25rem;
font-size: var(--sn-stylekit-font-size-h3); }
.sn-component .sk-notification.success.featured:before, .sn-component .sk-input.success.featured:before {
opacity: 1.0; }
.sn-component .sk-notification {
padding: 1.1rem 1rem;
margin: 1.4rem 0;
text-align: left;
cursor: default; }
.sn-component .sk-notification.one-line {
padding: 0rem 0.4rem; }
.sn-component .sk-notification.stretch {
width: 100%; }
.sn-component .sk-notification.dashed {
border-style: dashed;
border-width: 2px; }
.sn-component .sk-notification.dashed:after {
box-shadow: none; }
.sn-component .sk-notification .sk-notification-title {
font-size: var(--sn-stylekit-font-size-h1);
font-weight: bold;
line-height: 1.9rem; }
.sn-component .sk-notification .sk-notification-text {
line-height: 1.5rem;
font-size: var(--sn-stylekit-font-size-p);
text-align: left;
font-weight: normal; }
.sn-component .sk-circle {
border: 1px solid;
cursor: pointer;
border-color: var(--sn-stylekit-contrast-foreground-color);
background-color: var(--sn-stylekit-contrast-background-color);
padding: 0;
border-radius: 50% !important;
flex-shrink: 0; }
.sn-component .sk-circle:before {
border-radius: 50% !important; }
.sn-component .sk-circle:after {
border-radius: 50% !important; }
.sn-component .sk-circle.small {
width: 11px;
height: 11px; }
.sn-component .sk-spinner {
border: 1px solid var(--sn-stylekit-neutral-color);
border-radius: 50%;
animation: rotate 0.8s infinite linear;
border-right-color: transparent; }
.sn-component .sk-spinner.small {
width: 12px;
height: 12px; }
.sn-component .sk-spinner.info-contrast {
border-color: var(--sn-stylekit-info-contrast-color);
border-right-color: transparent; }
.sn-component .sk-spinner.info {
border-color: var(--sn-stylekit-info-color);
border-right-color: transparent; }
.sn-component .sk-spinner.warning {
border-color: var(--sn-stylekit-warning-color);
border-right-color: transparent; }
.sn-component .sk-spinner.danger {
border-color: var(--sn-stylekit-danger-color);
border-right-color: transparent; }
.sn-component .sk-spinner.success {
border-color: var(--sn-stylekit-success-color);
border-right-color: transparent; }
@keyframes rotate {
0% {
transform: rotate(0deg); }
100% {
transform: rotate(360deg); } }
.sn-component .sk-app-bar {
display: flex;
width: 100%;
height: 2rem;
padding: 0.0rem 0.8rem;
background-color: var(--sn-stylekit-contrast-background-color);
color: var(--sn-stylekit-contrast-foreground-color);
justify-content: space-between;
align-items: center;
border: 1px solid var(--sn-stylekit-contrast-border-color);
user-select: none; }
.sn-component .sk-app-bar.no-edges {
border-left: 0;
border-right: 0; }
.sn-component .sk-app-bar.no-bottom-edge {
border-bottom: 0; }
.sn-component .sk-app-bar .left, .sn-component .sk-app-bar .right {
display: flex;
height: 100%; }
.sn-component .sk-app-bar .sk-app-bar-item {
flex-grow: 1;
cursor: pointer;
display: flex;
align-items: center;
justify-content: center; }
.sn-component .sk-app-bar .sk-app-bar-item:not(:first-child) {
margin-left: 1rem; }
.sn-component .sk-app-bar .sk-app-bar-item.border {
border-left: 1px solid var(--sn-stylekit-contrast-border-color); }
.sn-component .sk-app-bar .sk-app-bar-item > .sk-app-bar-item-column {
height: 100%;
display: flex;
align-items: center; }
.sn-component .sk-app-bar .sk-app-bar-item > .sk-app-bar-item-column:not(:first-child) {
margin-left: 0.5rem; }
.sn-component .sk-app-bar .sk-app-bar-item > .sk-app-bar-item-column.underline {
border-bottom: 2px solid var(--sn-stylekit-info-color); }
.sn-component .sk-app-bar .sk-app-bar-item.no-pointer {
cursor: default; }
.sn-component .sk-app-bar .sk-app-bar-item:hover > .sk-label:not(.subtle), .sn-component .sk-app-bar .sk-panel-section .sk-app-bar-item:hover > .sk-panel-section-subtitle:not(.subtle), .sn-component .sk-panel-section .sk-app-bar .sk-app-bar-item:hover > .sk-panel-section-subtitle:not(.subtle), .sn-component .sk-app-bar .sk-app-bar-item:hover > .sk-sublabel:not(.subtle), .sn-component .sk-app-bar .sk-app-bar-item:hover > .sk-app-bar-item-column > .sk-label:not(.subtle), .sn-component .sk-app-bar .sk-panel-section .sk-app-bar-item:hover > .sk-app-bar-item-column > .sk-panel-section-subtitle:not(.subtle), .sn-component .sk-panel-section .sk-app-bar .sk-app-bar-item:hover > .sk-app-bar-item-column > .sk-panel-section-subtitle:not(.subtle), .sn-component .sk-app-bar .sk-app-bar-item:hover > .sk-app-bar-item-column > .sk-sublabel:not(.subtle) {
color: var(--sn-stylekit-info-color); }
.sn-component .sk-app-bar .sk-app-bar-item > .sk-label, .sn-component .sk-app-bar .sk-panel-section .sk-app-bar-item > .sk-panel-section-subtitle, .sn-component .sk-panel-section .sk-app-bar .sk-app-bar-item > .sk-panel-section-subtitle, .sn-component .sk-app-bar .sk-app-bar-item > .sk-app-bar-item-column > .sk-label, .sn-component .sk-app-bar .sk-panel-section .sk-app-bar-item > .sk-app-bar-item-column > .sk-panel-section-subtitle, .sn-component .sk-panel-section .sk-app-bar .sk-app-bar-item > .sk-app-bar-item-column > .sk-panel-section-subtitle {
font-weight: bold;
font-size: var(--sn-stylekit-font-size-h5);
white-space: nowrap; }
.sn-component .sk-app-bar .sk-app-bar-item > .sk-sublabel, .sn-component .sk-app-bar .sk-app-bar-item > .sk-app-bar-item-column > .sk-sublabel {
font-size: var(--sn-stylekit-font-size-h5);
font-weight: normal;
white-space: nowrap; }
.sn-component .sk-app-bar .sk-app-bar-item .subtle {
font-weight: normal;
opacity: 0.6; }
.sn-component .sk-panel-table {
display: flex;
flex-wrap: wrap;
padding-left: 1px;
padding-top: 1px; }
.sn-component .sk-panel-table .sk-panel-table-item {
flex: 45%;
flex-flow: wrap;
border: 1px solid var(--sn-stylekit-border-color);
padding: 1rem;
margin-left: -1px;
margin-top: -1px;
display: flex;
flex-direction: column;
justify-content: space-between; }
.sn-component .sk-panel-table .sk-panel-table-item img {
max-width: 100%;
margin-bottom: 1rem; }
.sn-component .sk-panel-table .sk-panel-table-item .sk-panel-table-item-content {
display: flex;
flex-direction: row; }
.sn-component .sk-panel-table .sk-panel-table-item .sk-panel-table-item-column {
align-items: center; }
.sn-component .sk-panel-table .sk-panel-table-item .sk-panel-table-item-column.stretch {
width: 100%; }
.sn-component .sk-panel-table .sk-panel-table-item .sk-panel-table-item-column:not(:first-child) {
padding-left: 0.75rem; }
.sn-component .sk-panel-table .sk-panel-table-item .sk-panel-table-item-column.quarter {
flex-basis: 25%; }
.sn-component .sk-panel-table .sk-panel-table-item .sk-panel-table-item-column.three-quarters {
flex-basis: 75%; }
.sn-component .sk-panel-table .sk-panel-table-item .sk-panel-table-item-footer {
margin-top: 1.25rem; }
.sn-component .sk-panel-table .sk-panel-table-item.no-border {
border: none; }
.sn-component .sk-modal {
position: fixed;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 10000;
width: 100vw;
height: 100vh;
background-color: transparent;
color: var(--sn-stylekit-contrast-foreground-color);
display: flex;
align-items: center;
justify-content: center; }
.sn-component .sk-modal .sn-component {
height: 100%; }
.sn-component .sk-modal .sn-component .sk-panel {
height: 100%; }
.sn-component .sk-modal.auto-height > .sk-modal-content {
height: auto !important; }
.sn-component .sk-modal.large > .sk-modal-content {
width: 900px;
height: 600px; }
.sn-component .sk-modal.medium > .sk-modal-content {
width: 700px;
height: 500px; }
.sn-component .sk-modal.small > .sk-modal-content {
width: 700px;
height: 344px; }
.sn-component .sk-modal .sk-modal-background {
position: absolute;
z-index: -1;
width: 100%;
height: 100%;
background-color: var(--sn-stylekit-contrast-background-color);
opacity: 0.7; }
.sn-component .sk-modal > .sk-modal-content {
overflow-y: auto;
width: auto;
padding: 0;
padding-bottom: 0;
min-width: 300px;
-webkit-box-shadow: 0px 2px 35px 0px rgba(0, 0, 0, 0.19);
-moz-box-shadow: 0px 2px 35px 0px rgba(0, 0, 0, 0.19);
box-shadow: 0px 2px 35px 0px rgba(0, 0, 0, 0.19); }
.sn-component.no-select {
user-select: none; }
input, textarea, [contenteditable] {
caret-color: var(--sn-stylekit-editor-foreground-color); }
.windows-web ::-webkit-scrollbar, .windows-desktop ::-webkit-scrollbar, .linux-web ::-webkit-scrollbar, .linux-desktop ::-webkit-scrollbar {
width: 17px;
height: 18px;
border-left: 0.5px solid var(--sn-stylekit-scrollbar-track-border-color-color); }
.windows-web ::-webkit-scrollbar-thumb, .windows-desktop ::-webkit-scrollbar-thumb, .linux-web ::-webkit-scrollbar-thumb, .linux-desktop ::-webkit-scrollbar-thumb {
border: 4px solid rgba(0, 0, 0, 0);
background-clip: padding-box;
-webkit-border-radius: 10px;
background-color: var(--sn-stylekit-scrollbar-thumb-color);
-webkit-box-shadow: inset -1px -1px 0px rgba(0, 0, 0, 0.05), inset 1px 1px 0px rgba(0, 0, 0, 0.05); }
.windows-web ::-webkit-scrollbar-button, .windows-desktop ::-webkit-scrollbar-button, .linux-web ::-webkit-scrollbar-button, .linux-desktop ::-webkit-scrollbar-button {
width: 0;
height: 0;
display: none; }
.windows-web ::-webkit-scrollbar-corner, .windows-desktop ::-webkit-scrollbar-corner, .linux-web ::-webkit-scrollbar-corner, .linux-desktop ::-webkit-scrollbar-corner {
background-color: transparent; }
@charset "UTF-8";
html,
body {
font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
-webkit-font-smoothing: antialiased;
min-height: 100%;
height: 100%;
font-size: var(--sn-stylekit-base-font-size);
margin: 0;
color: var(--sn-stylekit-foreground-color);
background-color: var(--sn-stylekit-background-color); }
* {
box-sizing: border-box; }
.tinted {
color: var(--sn-stylekit-info-color); }
.tinted-selected {
color: var(--sn-stylekit-info-contrast-color); }
*:focus {
outline: 0; }
button:focus {
outline: 0; }
input, button, select, textarea {
font-family: inherit;
font-size: inherit;
line-height: inherit; }
a {
text-decoration: none; }
a.no-decoration {
color: inherit; }
a:hover {
text-decoration: underline; }
a:hover.no-decoration {
text-decoration: none; }
::selection {
background: var(--sn-stylekit-info-color) !important;
/* WebKit/Blink Browsers */
color: var(--sn-stylekit-info-contrast-color); }
::-moz-selection {
background: var(--sn-stylekit-info-color) !important;
color: var(--sn-stylekit-info-contrast-color); }
p {
overflow: auto; }
.main-ui-view {
min-height: 100vh;
height: 100vh;
overflow: auto;
background-color: var(--sn-stylekit-background-color); }
#resizer-overlay {
position: absolute;
width: 100%;
height: 100%;
background-color: transparent;
z-index: 1000;
opacity: 0; }
.app {
height: calc(100% - 32px);
width: 100%;
display: flex;
vertical-align: top;
overflow: hidden;
position: relative; }
.app panel-resizer {
top: 0;
right: 0;
z-index: 1001;
width: 8px;
height: 100%;
position: absolute;
cursor: col-resize;
background-color: var(--sn-stylekit-secondary-contrast-background-color);
opacity: 0;
border-top: none;
border-bottom: none; }
@keyframes fade {
0% {
opacity: 0; }
50% {
opacity: 1; }
100% {
opacity: 0; } }
.app panel-resizer.left {
left: 0;
right: none; }
.app panel-resizer.always-visible {
opacity: 1; }
.app panel-resizer.collapsed {
opacity: 1;
background-color: var(--sn-stylekit-editor-background-color); }
.app panel-resizer.dragging {
opacity: 1; }
.app panel-resizer.animate-opacity {
animation-duration: 1.6s;
animation-name: fade;
animation-delay: 0.25s; }
.app panel-resizer.hoverable:hover {
opacity: 1; }
.app .section {
padding-bottom: 0px;
height: 100%;
max-height: calc(100vh - 32px);
position: relative;
overflow: hidden; }
.app .section .scrollable {
overflow-y: auto;
overflow-x: hidden; }
.app .section > .content {
height: 100%;
max-height: 100%;
background-color: var(--sn-stylekit-background-color);
position: relative; }
.app .section .section-title-bar .padded {
padding: 0 14px; }
.app .section .section-title-bar .add-button {
font-size: 12px; }
.app .section .section-title-bar .section-title-bar-header {
display: flex;
justify-content: space-between;
align-items: center; }
.app .section .section-title-bar .section-title-bar-header > .title {
white-space: nowrap;
text-overflow: ellipsis;
width: 80%;
overflow: hidden; }
.icon {
margin-right: 4px; }
.selectable {
user-select: text !important;
cursor: text; }
.mt-5 {
margin-top: 5px !important; }
.mt-10 {
margin-top: 10px !important; }
.mr-5 {
margin-right: 5px !important; }
.mr-8 {
margin-right: 8px !important; }
.faded {
opacity: 0.5; }
.center-align {
text-align: center !important; }
.block {
display: block !important; }
.inline {
display: inline-block; }
.wrap {
word-wrap: break-word;
word-break: break-all; }
.medium-padding {
padding: 10px !important; }
.bold {
font-weight: bold !important; }
.normal {
font-weight: normal !important; }
.small-text {
font-size: 10px; }
.medium-text {
font-size: 14px !important; }
#footer-bar {
position: relative;
width: 100%;
height: 32px;
max-height: 32px;
z-index: 2000; }
#footer-bar .sk-app-bar-item {
z-index: 2000;
position: relative;
user-select: none; }
#footer-bar .sk-app-bar-item .sk-panel {
max-height: 85vh;
position: absolute;
right: 0px;
left: 10px;
bottom: 40px;
min-width: 300px;
z-index: 2000;
margin-top: 15px; }
#footer-bar .sk-app-bar-item .sk-panel.sk-panel-right {
right: 0;
left: inherit; }
#footer-bar .sk-app-bar-item.dock-shortcut:hover .sk-app-bar-item-column {
border-bottom: 2px solid var(--sn-stylekit-info-color); }
#footer-bar .sk-app-bar-item svg {
width: 12px;
height: 12px;
fill: var(--sn-stylekit-foreground-color); }
#footer-bar .sk-app-bar-item svg:hover {
fill: var(--sn-stylekit-info-color); }
#account-panel, #sync-resolution-menu {
width: 400px; }
.sk-panel {
cursor: default; }
a.disabled {
pointer-events: none; }
#lock-item {
margin-left: 3px; }
#footer-lock-icon {
margin-left: 5px;
padding-left: 5px; }
.tags {
width: 180px;
flex-grow: 0;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none; }
.tags, .tags #tags-content {
background-color: var(--sn-stylekit-secondary-background-color);
display: flex;
flex-direction: column; }
.tags .tags-title-section {
color: var(--sn-stylekit-secondary-foreground-color);
padding-top: 15px;
padding-bottom: 8px;
padding-left: 12px;
padding-right: 12px;
font-size: 12px; }
.tags .scrollable {
height: 100%; }
.tags .infinite-scroll {
overflow-x: hidden;
height: inherit;
overflow-y: hidden; }
.tags .infinite-scroll:hover {
overflow-y: auto;
overflow-y: overlay; }
.tags .no-tags-placeholder {
padding: 0px 12px;
font-size: 12px;
opacity: 0.4;
margin-top: -5px; }
.tags .tag {
min-height: 30px;
padding: 5px 12px;
cursor: pointer;
transition: height .1s ease-in-out;
position: relative; }
.tags .tag > .tag-info {
height: 20px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: space-between; }
.tags .tag > .tag-info > .tag-icon {
width: 10px;
opacity: 0.2;
font-size: var(--sn-stylekit-font-size-h2);
font-weight: bold;
margin-right: 6px; }
.tags .tag > .tag-info > .title {
width: 80%;
background-color: transparent;
font-weight: 600;
color: var(--sn-stylekit-secondary-foreground-color);
border: none;
cursor: pointer;
text-overflow: ellipsis;
width: 75%;
-webkit-user-select: none;
pointer-events: none; }
.tags .tag > .tag-info > .title.editing {
-webkit-user-select: text !important; }
.tags .tag > .tag-info > .count {
padding-right: 4px;
padding-top: 1px;
font-weight: bold;
color: var(--sn-stylekit-neutral-color);
min-width: 35px;
text-align: right; }
.tags .tag > .menu {
font-size: 11px;
opacity: 0.5;
font-weight: bold;
clear: both;
margin-top: 2px;
margin-bottom: 2px; }
.tags .tag > .menu > .item {
margin-right: 2px; }
.tags .tag > .menu:hover {
opacity: 1.0; }
.tags .tag.selected > .tag-info .title {
cursor: text; }
.tags .tag:hover:not(.selected), .tags .tag.selected {
background-color: var(--sn-stylekit-secondary-contrast-background-color);
color: var(--sn-stylekit-secondary-contrast-foreground-color); }
.tags .tag:hover:not(.selected) > .title, .tags .tag.selected > .title {
color: var(--sn-stylekit-secondary-contrast-foreground-color); }
#notes-column, .notes {
border-left: 1px solid var(--sn-stylekit-border-color);
border-right: 1px solid var(--sn-stylekit-border-color);
font-size: var(--sn-stylekit-font-size-h2);
width: 350px;
flex-grow: 0;
user-select: none;
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none; }
#notes-column .content, .notes .content {
display: flex;
flex-direction: column; }
#notes-column #notes-title-bar, .notes #notes-title-bar {
padding-top: 16px;
font-weight: normal;
font-size: var(--sn-stylekit-font-size-h1); }
#notes-column #notes-title-bar .section-title-bar-header .title, .notes #notes-title-bar .section-title-bar-header .title {
font-size: var(--sn-stylekit-font-size-h3);
font-weight: 600;
width: calc(90% - 45px); }
#notes-column #notes-menu-bar, .notes #notes-menu-bar {
position: relative;
margin-top: 14px; }
#notes-column #notes-options-menu, .notes #notes-options-menu {
margin-left: 10px; }
#notes-column .filter-section, .notes .filter-section {
clear: left;
height: 28px;
margin-top: 14px;
position: relative; }
#notes-column .filter-section .filter-bar, .notes .filter-section .filter-bar {
background-color: var(--sn-stylekit-contrast-background-color);
border-radius: var(--sn-stylekit-general-border-radius);
height: 100%;
color: #909090;
text-align: center;
font-weight: normal;
font-size: var(--sn-stylekit-font-size-h3);
border: none;
width: 100%;
position: relative; }
#notes-column .filter-section #search-clear-button, .notes .filter-section #search-clear-button {
border-radius: 50%;
width: 17px;
height: 17px;
cursor: default;
background-color: var(--sn-stylekit-neutral-color);
color: var(--sn-stylekit-neutral-contrast-color);
font-size: 10px;
line-height: 17px;
text-align: center;
position: absolute;
top: 8px;
right: 8px;
transition: background-color 0.15s linear; }
#notes-column .filter-section #search-clear-button:hover, .notes .filter-section #search-clear-button:hover {
background-color: var(--sn-stylekit-info-color); }
#notes-column .scrollable, .notes .scrollable {
height: 100%; }
#notes-column .infinite-scroll, .notes .infinite-scroll {
overflow-x: hidden;
height: inherit; }
.windows-web #notes-column .infinite-scroll, .windows-desktop #notes-column .infinite-scroll, .windows-web .notes .infinite-scroll, .windows-desktop .notes .infinite-scroll {
overflow-y: hidden; }
.windows-web #notes-column .infinite-scroll:hover, .windows-desktop #notes-column .infinite-scroll:hover, .windows-web .notes .infinite-scroll:hover, .windows-desktop .notes .infinite-scroll:hover {
overflow-y: auto;
overflow-y: overlay; }
#notes-column .note, .notes .note {
width: 100%;
padding: 15px;
border-bottom: 1px solid var(--sn-stylekit-border-color);
cursor: pointer; }
#notes-column .note > .name, .notes .note > .name {
font-weight: 600;
overflow: hidden;
text-overflow: ellipsis; }
#notes-column .note > .date, .notes .note > .date {
font-size: 12px;
margin-top: 4px; }
#notes-column .note .tags-string, .notes .note .tags-string {
margin-top: 4px;
font-size: 12px; }
#notes-column .note .note-preview, .notes .note .note-preview {
font-size: var(--sn-stylekit-font-size-h3);
margin-top: 2px;
overflow: hidden;
text-overflow: ellipsis; }
#notes-column .note .note-preview .default-preview, #notes-column .note .note-preview .plain-preview, .notes .note .note-preview .default-preview, .notes .note .note-preview .plain-preview {
display: -webkit-box;
-webkit-box-orient: vertical;
-webkit-line-clamp: 1;
/* number of lines to show */
line-height: 18px;
/* fallback */
max-height: calc(18px * 1);
/* fallback */ }
#notes-column .note .note-preview .html-preview, .notes .note .note-preview .html-preview {
margin-top: 4px;
margin-bottom: 4px; }
#notes-column .note .note-flag, .notes .note .note-flag {
color: var(--sn-stylekit-info-color); }
#notes-column .note .note-flags, .notes .note .note-flags {
display: flex;
flex-direction: row;
align-items: center;
margin-bottom: 8px; }
#notes-column .note .note-flags .flag, .notes .note .note-flags .flag {
padding: 4px;
padding-left: 6px;
padding-right: 6px;
border-radius: var(--sn-stylekit-general-border-radius);
margin-right: 4px; }
#notes-column .note .note-flags .flag.info, .notes .note .note-flags .flag.info {
background-color: var(--sn-stylekit-info-color);
color: var(--sn-stylekit-info-contrast-color); }
#notes-column .note .note-flags .flag.success, .notes .note .note-flags .flag.success {
background-color: var(--sn-stylekit-success-color);
color: var(--sn-stylekit-success-contrast-color); }
#notes-column .note .note-flags .flag.warning, .notes .note .note-flags .flag.warning {
background-color: var(--sn-stylekit-warning-color);
color: var(--sn-stylekit-warning-contrast-color); }
#notes-column .note .note-flags .flag.neutral, .notes .note .note-flags .flag.neutral {
background-color: var(--sn-stylekit-neutral-color);
color: var(--sn-stylekit-neutral-contrast-color); }
#notes-column .note .note-flags .flag.danger, .notes .note .note-flags .flag.danger {
background-color: var(--sn-stylekit-danger-color);
color: var(--sn-stylekit-danger-contrast-color); }
#notes-column .note .note-flags .flag .label, .notes .note .note-flags .flag .label {
font-size: 10px;
font-weight: bold;
text-align: center; }
#notes-column .note progress, .notes .note progress {
background-color: var(--sn-stylekit-contrast-background-color);
color: var(--sn-stylekit-info-color);
border: none; }
#notes-column .note progress::-webkit-progress-bar, .notes .note progress::-webkit-progress-bar {
background-color: var(--sn-stylekit-contrast-background-color); }
#notes-column .note progress::-webkit-progress-value, .notes .note progress::-webkit-progress-value {
background-color: var(--sn-stylekit-info-color); }
#notes-column .note progress::-moz-progress-bar, .notes .note progress::-moz-progress-bar {
background-color: var(--sn-stylekit-info-color); }
#notes-column .note.selected, .notes .note.selected {
background-color: var(--sn-stylekit-info-color);
color: var(--sn-stylekit-info-contrast-color); }
#notes-column .note.selected .note-flags .flag, .notes .note.selected .note-flags .flag {
background-color: var(--sn-stylekit-info-contrast-color);
color: var(--sn-stylekit-info-color); }
#notes-column .note.selected progress, .notes .note.selected progress {
background-color: var(--sn-stylekit-secondary-foreground-color);
color: var(--sn-stylekit-secondary-background-color); }
#notes-column .note.selected progress::-webkit-progress-bar, .notes .note.selected progress::-webkit-progress-bar {
background-color: var(--sn-stylekit-secondary-foreground-color); }
#notes-column .note.selected progress::-webkit-progress-value, .notes .note.selected progress::-webkit-progress-value {
background-color: var(--sn-stylekit-secondary-background-color); }
#notes-column .note.selected progress::-moz-progress-bar, .notes .note.selected progress::-moz-progress-bar {
background-color: var(--sn-stylekit-secondary-background-color); }
#editor-column .locked {
opacity: 0.8; }
.section.editor {
flex: 1 50%;
display: flex;
flex-direction: column;
overflow-y: hidden;
background-color: var(--sn-stylekit-editor-background-color);
color: var(--sn-stylekit-editor-foreground-color); }
#editor-title-bar {
width: 100%;
padding-top: 14px;
padding-left: 14px;
padding-bottom: 10px;
padding-right: 10px;
border-bottom: none;
z-index: 100;
height: auto;
overflow: visible; }
#editor-title-bar > .title {
font-size: var(--sn-stylekit-font-size-h1);
font-weight: bold;
padding-top: 0px;
width: 70%;
padding-right: 20px;
/* make room for save status */ }
#editor-title-bar > .title > .input {
float: left;
text-overflow: ellipsis;
width: 100%;
font-weight: bold;
border: none;
outline: none;
background-color: transparent;
color: var(--sn-stylekit-editor-foreground-color); }
#editor-title-bar > .title > .input:disabled {
color: var(--sn-stylekit-editor-foreground-color); }
#editor-title-bar #save-status {
width: 30%;
float: right;
position: absolute;
right: 20px;
font-size: calc(var(--sn-stylekit-base-font-size) - 2px);
text-transform: none;
font-weight: normal;
margin-top: 4px;
text-align: right;
white-space: nowrap; }
#editor-title-bar #save-status .desc, #editor-title-bar #save-status .message:not(.warning):not(.danger) {
opacity: 0.35; }
#editor-title-bar .editor-tags {
clear: left;
width: 100%;
overflow: visible;
position: relative; }
#editor-title-bar .editor-tags #note-tags-component-container {
height: 50px;
overflow: auto; }
#editor-title-bar .editor-tags #note-tags-component-container .component-view {
position: inherit; }
#editor-title-bar .editor-tags #note-tags-component-container iframe {
height: 50px;
width: 100%;
position: absolute; }
#editor-title-bar .editor-tags .tags-input {
background-color: transparent;
color: var(--sn-stylekit-foreground-color);
width: 100%;
border: none; }
.editor-content, #editor-content {
flex: 1;
z-index: 10;
overflow-y: hidden;
height: 100%;
display: flex;
tab-size: 2;
background-color: var(--sn-stylekit-background-color);
position: relative; }
.editor-content #editor-iframe, #editor-content #editor-iframe {
flex: 1;
width: 100%; }
.editor-content .editable, #editor-content .editable {
font-family: monospace;
overflow-y: scroll;
width: 100%;
background-color: var(--sn-stylekit-editor-background-color);
color: var(--sn-stylekit-editor-foreground-color);
border: none;
outline: none;
padding: 15px;
padding-top: 11px;
font-size: var(--sn-stylekit-font-size-editor);
resize: none; }
#editor-pane-component-stack {
width: 100%;
margin-top: auto;
overflow: visible; }
#editor-pane-component-stack #component-stack-menu-bar {
border-bottom: none; }
#editor-pane-component-stack .component-stack-item {
width: 100%;
position: relative; }
#editor-pane-component-stack .component-stack-item iframe {
width: 100%;
background-color: var(--sn-stylekit-background-color);
border-top: 1px solid var(--sn-stylekit-border-color); }
.sk-app-bar .sk-app-bar-item {
position: relative; }
.dropdown-menu {
position: absolute;
top: 100%;
left: 0;
float: left;
min-width: 160px;
z-index: 100;
margin-top: 5px;
width: 280px;
max-height: calc(85vh - 90px); }
#permissions-modal {
width: 350px; }
#permissions-modal .sk-panel {
border-radius: 0; }
#permissions-modal .sk-panel-content {
padding-top: 1.1rem; }
#permissions-modal .sk-panel-footer {
padding-bottom: 1.4rem; }
#privileges-modal {
width: 700px; }
#privileges-modal table {
margin-bottom: 12px;
width: 100%;
overflow: auto;
border-collapse: collapse;
border-spacing: 0px;
border-color: var(--sn-stylekit-contrast-border-color);
background-color: var(--sn-stylekit-background-color);
color: var(--sn-stylekit-contrast-foreground-color); }
#privileges-modal table th, #privileges-modal table td {
padding: 6px 13px;
border: 1px solid var(--sn-stylekit-contrast-border-color); }
#privileges-modal table tr:nth-child(2n) {
background-color: var(--sn-stylekit-contrast-background-color); }
#privileges-modal th {
text-align: center;
font-weight: normal; }
#privileges-modal .priv-header {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center; }
#password-wizard {
font-size: 16px; }
#item-preview-modal > .sk-modal-content {
width: 800px;
height: 500px; }
#conflict-resolution-modal #items {
display: flex;
height: 100%; }
#conflict-resolution-modal .item {
width: 50%;
height: 100%;
flex-grow: 1; }
#conflict-resolution-modal .border {
height: 100%;
background-color: var(--sn-stylekit-border-color);
width: 1px;
margin: 0 15px; }
.header .subtitle {
font-size: 1.1rem; }
.sk-modal {
position: fixed;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 10000;
width: 100vw;
height: 100vh;
background-color: transparent;
color: var(--sn-stylekit-contrast-foreground-color);
display: flex;
align-items: center;
justify-content: center; }
.sk-modal .sn-component {
height: 100%; }
.sk-modal .sn-component .sk-panel {
height: 100%; }
.sk-modal.auto-height > .sk-modal-content {
height: auto !important; }
.sk-modal.large > .sk-modal-content {
width: 900px;
height: 600px; }
.sk-modal.medium > .sk-modal-content {
width: 700px;
height: 500px; }
.sk-modal.small > .sk-modal-content {
width: 700px;
height: 344px; }
.sk-modal .sk-modal-background {
position: absolute;
z-index: -1;
width: 100%;
height: 100%;
background-color: var(--sn-stylekit-contrast-background-color);
opacity: 0.7; }
.sk-modal > .sk-modal-content {
overflow-y: auto;
width: auto;
padding: 0;
padding-bottom: 0;
min-width: 300px;
-webkit-box-shadow: 0px 2px 35px 0px rgba(0, 0, 0, 0.19);
-moz-box-shadow: 0px 2px 35px 0px rgba(0, 0, 0, 0.19);
box-shadow: 0px 2px 35px 0px rgba(0, 0, 0, 0.19); }
.component-view-container {
flex-grow: 1;
display: flex;
height: 100%;
width: 100%; }
.component-view {
flex-grow: 1;
display: flex;
flex-direction: column;
position: relative;
overflow-y: auto; }
.component-view .sn-component {
min-width: 100%;
z-index: 1000; }
.component-view .loading-overlay {
position: absolute;
background-color: var(--sn-stylekit-editor-background-color);
width: 100%;
height: 100%;
left: 0;
top: 0; }
.component-view iframe {
flex-grow: 1;
width: 100%;
height: 100%;
background-color: transparent; }
#lock-screen {
position: relative;
height: 100%;
width: 100vw;
margin-left: auto;
margin-right: auto;
left: 0;
right: 0;
top: 0;
bottom: 0;
z-index: 10000;
background-color: var(--sn-stylekit-background-color);
color: var(--sn-stylekit-foreground-color);
display: flex;
flex-direction: column;
align-items: center;
justify-content: center; }
#lock-screen .sk-panel {
width: 315px;
flex-grow: 0; }
#lock-screen .sk-panel .sk-panel-header {
justify-content: center; }
#lock-screen #passcode-reset {
text-align: center; }
.sn-component .sk-notification.unpadded {
padding: 0;
padding-bottom: 0 !important;
padding-top: 0; }
.sn-component .sk-notification .padded-row {
padding: 10px 12px; }
.sn-component .sk-notification .bordered-row {
border-bottom: 1px solid var(--sn-stylekit-border-color);
border-top: 1px solid var(--sn-stylekit-border-color); }
.sn-component .sk-app-bar.dynamic-height {
min-height: 2rem !important;
height: inherit !important;
padding-top: 0.5rem;
padding-bottom: 0.5rem; }
.sn-component .sk-app-bar.no-top-edge {
border-top: 0; }
.sk-panel .sk-panel-header .close-button:hover {
text-decoration: none; }
.sk-panel .sk-button-group.stretch .sk-button:not(.featured) {
padding: 9px; }
.sk-menu-panel-header a {
cursor: pointer; }
#session-history-menu .sk-menu-panel .sk-menu-panel-row .sk-sublabel.opaque {
opacity: 1.0; }
button.sk-button {
border: none; }
/*!
Ionicons, v2.0.1
Created by Ben Sperry for the Ionic Framework, http://ionicons.com/
https://twitter.com/benjsperry https://twitter.com/ionicframework
MIT License: https://github.com/driftyco/ionicons
Android-style icons originally built by Googles
Material Design Icons: https://github.com/google/material-design-icons
used under CC BY http://creativecommons.org/licenses/by/4.0/
Modified icons to fit ionicons grid from original.
*/
@font-face {
font-family: "Ionicons";
src: url(../fonts/ionicons.eot);
src: url(../fonts/ionicons.eot#iefix) format("embedded-opentype"), url(../fonts/ionicons.ttf) format("truetype"), url(../fonts/ionicons.woff) format("woff"), url(../fonts/ionicons.svg#Ionicons) format("svg");
font-weight: normal;
font-style: normal; }
.ion,
.ionicons,
.ion-locked:before,
.ion-plus:before {
display: inline-block;
font-family: "Ionicons";
speak: none;
font-style: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
text-rendering: auto;
line-height: 1;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale; }
.ion-locked:before {
content: "\f200"; }
.ion-plus:before {
content: "\f218"; }
/*# sourceMappingURL=app.css.map*/