AntimatterDimensionsSourceCode/public/stylesheets/automator.css

344 lines
7.5 KiB
CSS

:root {
--color-automator-controls-background: #d3d3d3;
--color-automator-controls-active: #0ba00e;
--color-automator-controls-inactive: #eeeeee;
--color-automator-controls-border: #767676;
--color-automator-active-line-background: #d8caeb;
--color-automator-active-line-outline: #7a49ff;
--color-automator-event-background: #9afa9a;
--color-automator-event-outline: #094e09;
--color-automator-error-background: #ac0617;
--color-automator-error-outline: #440108;
--color-automator-docs-font: black;
--color-blockmator-block-border: #cfcfcf;
--color-blockmator-block-background: #f5f5f5;
--color-blockmator-block-command: #401090;
--color-blockmator-block-required: #50aaaa;
--color-blockmator-block-optional: #684700;
--color-blockmator-editor-background: white;
}
:root .s-base--dark {
--color-automator-controls-background: #262626;
--color-automator-controls-active: #007c00;
--color-automator-controls-inactive: #273757;
--color-automator-controls-border: #929292;
--color-automator-active-line-background: #2b065c;
--color-automator-active-line-outline: #4400ff;
--color-automator-event-background: #004b00;
--color-automator-docs-font: white;
--color-blockmator-block-border: #353535;
--color-blockmator-block-background: #000115;
--color-blockmator-block-command: #a142ff;
--color-blockmator-block-required: #005050;
--color-blockmator-block-optional: #684700;
--color-blockmator-editor-background: black;
}
.c-automator-tab {
width: 100rem;
}
.c-automator-split-pane {
width: 100%;
height: 57rem;
background-color: #bbbbbb;
}
.s-base--dark .c-automator-split-pane {
width: 100%;
background-color: #474747;
}
.c-automator-tab--full-screen .c-automator-split-pane {
width: 100%;
height: 100%;
position: fixed;
inset: 0;
z-index: 4;
margin-top: 0;
padding-bottom: 0;
}
.l-automator-tab {
position: relative;
align-self: center;
margin-top: 0.5rem;
}
.l-automator-points-list-container {
display: flex;
flex-direction: row;
justify-content: space-between;
margin-top: 1rem;
-webkit-user-select: none;
user-select: none;
}
.c-automator-points-list-col {
position: relative;
text-align: left;
border: var(--var-border-width, 0.15rem) solid var(--color-text);
border-radius: var(--var-border-radius, 0.5rem);
padding: 1rem;
}
.l-automator-points-list-side-col {
display: flex;
flex-direction: column;
width: 35%;
justify-content: space-between;
}
.l-automator-points-list-center-col {
display: flex;
flex-direction: column;
width: 25%;
justify-content: space-between;
}
.c-automator-points-list-cell {
overflow: hidden;
width: 100%;
height: 48%;
position: relative;
text-align: left;
border: var(--var-border-width, 0.15rem) solid var(--color-text);
border-radius: var(--var-border-radius, 0.5rem);
padding: 1rem;
}
.c-automator-points-list-symbol {
display: flex;
width: 100%;
height: 100%;
position: absolute;
top: 0;
left: 0;
justify-content: center;
align-items: center;
font-size: 15rem;
opacity: 0.2;
text-shadow: 0 0 2rem;
pointer-events: none;
}
.c-automator-points-list-perk-label {
display: inline-block;
width: 3rem;
max-width: 3rem;
font-weight: bold;
}
.c-automator-points-list-single-entry {
position: relative;
}
.c-automator-points-list-ap {
position: absolute;
right: 0;
opacity: 0.8;
}
.c-automator-points-list-ap--large {
position: absolute;
right: 1rem;
font-size: 1.8rem;
opacity: 0.6;
}
.l-automator-pane {
display: flex;
flex-direction: column;
height: 100%;
}
.l-automator-pane__content {
flex: 1 1 auto;
}
.s-base--metro .l-automator-pane__content::-webkit-scrollbar-thumb {
border-radius: 0;
}
.c-automator__controls {
background-color: var(--color-automator-controls-background);
border-bottom: 0.3rem solid var(--color-automator-active-line-outline);
}
.l-automator__controls {
display: flex;
flex: none;
flex-direction: column;
}
.l-automator-button-row {
display: flex;
flex-direction: row;
height: 3rem;
align-items: center;
}
.l-automator__button {
display: flex;
justify-content: center;
align-items: center;
padding: 0.3rem 0.8rem;
}
.l-automator__button--corner {
position: absolute;
top: 0;
right: 0;
}
.c-automator-editor__active-line {
background: var(--color-automator-active-line-background);
outline: 0.1rem solid var(--color-automator-active-line-outline);
}
.c-automator-editor__active-line-gutter {
font-weight: bold;
background: var(--color-automator-active-line-background);
outline: 0.1rem solid var(--color-automator-active-line-outline);
filter: brightness(200%);
}
.c-automator-editor__event-line {
background: var(--color-automator-event-background);
outline: 0.1rem solid var(--color-automator-event-outline);
}
.c-automator-editor__event-line-gutter {
font-weight: bold;
background: var(--color-automator-event-background);
outline: 0.1rem solid var(--color-automator-event-outline);
filter: brightness(200%);
}
.c-automator-editor__error-line {
background: var(--color-automator-error-background);
outline: 0.1rem solid var(--color-automator-error-outline);
}
.c-automator-editor__error-line-gutter {
font-weight: bold;
background: var(--color-automator-error-background);
outline: 0.1rem solid var(--color-automator-error-outline);
filter: brightness(200%);
}
.c-automator-editor {
text-align: left;
font-family: Typewriter, serif;
font-size: 1.4rem;
border-bottom: 0.15rem solid var(--color-automator-controls-background);
}
.l-automator-editor {
display: flex;
flex: 1 1 auto;
flex-direction: column;
}
.l-automator-editor__codemirror-container {
display: flex;
flex: 1 1 auto;
flex-direction: column;
z-index: 1;
}
.CodeMirror-hint {
font-family: Typewriter, serif;
font-size: 1rem;
}
.s-base--metro .CodeMirror-vscrollbar::-webkit-scrollbar-thumb {
border-radius: 0;
}
.cm-s-liquibyte.CodeMirror,
.cm-s-panda-syntax.CodeMirror {
/* required for expanding into pane */
flex: 1 1 auto;
font-family: Typewriter, serif;
font-size: 1.4rem;
line-height: 1.6rem;
}
.c-automator-docs {
overflow: auto;
text-align: left;
font-size: 1.4rem;
color: var(--color-automator-docs-font);
background-color: white;
border-right: 0.15rem solid var(--color-automator-controls-background);
border-bottom: 0.15rem solid var(--color-automator-controls-background);
padding: 1rem;
}
.s-base--dark .c-automator-docs {
color: var(--color-automator-docs-font);
background-color: black;
}
.c-automator-docs-page {
display: flex;
flex-direction: column;
align-items: flex-start;
}
.c-automator-docs-page__link {
text-decoration: underline;
cursor: pointer;
}
.c-automator-docs-page__indented {
margin-left: 2rem;
}
.c-automator-docs--button {
width: 2.8rem;
height: 2.2rem;
border-width: 0.1rem;
border-radius: var(--var-border-radius, 0.3rem);
margin: 0.1rem;
cursor: pointer;
}
.o-automator-error-underline {
display: inline-block;
position: relative;
}
.o-automator-error-underline::before {
content: "~~~~~~~~~~~~";
overflow: hidden;
width: 100%;
position: absolute;
top: 12px;
left: -1px;
color: red;
}
.c-automator-input-required {
background: var(--color-blockmator-block-required);
}
.c-automator-input-optional {
background: var(--color-blockmator-block-optional);
}
.c-automator-block-row-active {
background: var(--color-automator-active-line-background);
}
.c-automator-block-row-event {
background: var(--color-automator-event-background);
}
.c-automator-block-row-error {
background: var(--color-automator-error-background);
}