AntimatterDimensionsSourceCode/stylesheets/styles.css

7906 lines
149 KiB
CSS
Raw Normal View History

html {
font-size: 62.5%;
height: 100%;
width: 100%;
overflow: hidden;
2019-08-11 09:54:34 +00:00
}
._kong-test {
display: flex;
background: white;
2019-07-25 12:52:03 +00:00
}
* { /* csslint allow: universal-selector */
2019-07-25 12:52:03 +00:00
box-sizing: border-box;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
}
/* css vars */
2020-04-11 08:25:30 +00:00
#ui {
display: flex;
align-items: center;
justify-content: center;
}
2020-04-11 08:25:30 +00:00
#ui-container {
--color-text: black;
--color-text-inverted: white;
--color-base: #F2F2F2;
--color-disabled: #A3A3A3;
--color-accent: #4980CC;
--color-good: #5AC467;
--color-good-dark: #127A20;
--color-bad: #B84B5F;
2020-02-15 00:15:06 +00:00
--color-infinity: #B67F33;
--color-eternity: #b341e0;
--color-reality: #0b600e;
2020-04-19 22:37:33 +00:00
--color-reality-light: #0ba00e;
--color-celestials: #5151ec;
--color-laitela--base: white;
--color-laitela--accent: black;
}
.t-metro #ui-container, /* csslint allow: empty-rules */
.t-inverted-metro #ui-container,
.t-s8 #ui-container {
--color-text: black;
--color-text-inverted: white;
--color-base: #eeeeee;
--color-disabled: #9e9e9e;
--color-accent: #2196F3;
--color-good: #66bb6a;
2020-05-26 04:12:20 +00:00
--color-good-dark: #388e3c;
--color-bad: #ef5350;
2020-02-15 00:15:06 +00:00
--color-infinity: #FF9800;
--color-eternity: #673AB7;
--color-celestials: #00bcd4;
}
.t-dark #ui-container { /* csslint allow: empty-rules */
--color-text: #e0e0e0;
--color-text-inverted: black;
--color-base: #455a64;
--color-disabled: #37474f;
--color-accent: #1565C0;
--color-infinity: #FF9800;
--color-laitela--base: black;
--color-laitela--accent: white;
}
.t-dark-metro #ui-container { /* csslint allow: empty-rules */
--color-text: #e0e0e0;
--color-text-inverted: black;
--color-base: #455a64;
--color-disabled: #37474f;
--color-accent: #2196F3;
--color-good: #43a047;
2020-05-26 04:12:20 +00:00
--color-good-dark: #2e7d32;
--color-bad: #e53935;
2020-02-15 00:15:06 +00:00
--color-infinity: #FF9800;
--color-eternity: #673AB7;
--color-celestials: #00bcd4;
--color-laitela--base: black;
--color-laitela--accent: white;
}
.t-s1 #ui-container { /* csslint allow: empty-rules */
--color-text: black;
--color-text-inverted: #dbd242;
--color-base: #dbd242;
--color-disabled: #9a921d;
--color-accent: black;
--color-good: #4baf4e;
--color-good-dark: #3c8b3e;
--color-bad: #d72621;
2020-02-15 00:15:06 +00:00
--color-infinity: #7d3c1b;
--color-eternity: #639565;
--color-reality: #AFA3A5;
2020-04-19 22:37:33 +00:00
--color-reality-light: #AFA3A5;
--color-celestials: #F2D6C1;
}
.t-s4 #ui-container { /* csslint allow: empty-rules */
--color-text: black;
--color-text-inverted: white;
--color-base: #1b00ff;
--color-accent: #1b00ff;
--color-good: #ff00e0;
--color-bad: #ff0000;
}
.t-s6 #ui-container { /* csslint allow: empty-rules */
--color-text: #E0E0E0;
--color-text-inverted: black;
--color-base: black;
--color-accent: #1565C0;
--color-laitela--base: black;
--color-laitela--accent: white;
}
/* end css vars */
body {
height: 100%;
width: 100%;
margin: 0;
padding: 0;
color:#4F5957;
font-size: 1.1rem;
font-family: Typewriter, serif;
line-height: 1.5;
font-weight: 300;
text-align:center;
background-color: #fff;
2019-11-20 18:42:05 +00:00
overflow: hidden;
}
2019-08-11 09:54:34 +00:00
._kong-test body {
2020-04-27 03:36:45 +00:00
width: 1150px;
height: 800px;
2019-08-11 09:54:34 +00:00
margin: auto;
border: 0.1rem solid black;
2019-08-11 09:54:34 +00:00
overflow-y: auto;
}
@font-face {
font-family: 'Open Sans Condensed';
font-style: normal;
font-weight: 300;
src: local('Open Sans Cond Light'), local('OpenSans-CondensedLight'), url(https://fonts.gstatic.com/s/opensanscondensed/v10/gk5FxslNkTTHtojXrkp-xBEur64QvLD-0IbiAdTUNXE.woff2) format('woff2');
unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02C6, U+02DA, U+02DC, U+2000-206F, U+2074, U+20AC, U+2212, U+2215, U+E0FF, U+EFFD, U+F000;
}
@font-face {
font-family: Typewriter;
src: url('MonospaceTypewriter.ttf');
}
2019-04-10 12:54:09 +00:00
@font-face {
font-family: Noto Sans;
src: url('MonospaceTypewriter.ttf');
unicode-range: U+F420-F430, U+2BC5-2BC6;
2019-04-10 12:54:09 +00:00
}
2019-06-21 18:36:18 +00:00
@font-face {
font-family: Runescape;
src: url('Runescape.ttf');
}
/* Background for s6 is not displayed by default */
#stars {
display: none;
}
button:focus {
outline: none;
}
/*#region TT shop*/
#TTbuttons {
color: var(--color-text);
2019-06-15 08:09:27 +00:00
position: fixed;
bottom: 0;
font-family: Typewriter, serif;
display: flex;
align-items: flex-end;
z-index: 2;
width: 55.5rem;
}
.l-tt-buy-button {
width: 17rem;
z-index: 1;
margin: 0.3rem;
}
.c-tt-buy-button {
font-weight: bold;
font-family: Typewriter, serif;
2020-04-18 05:41:52 +00:00
border: 0.1rem solid #691fa5;
transition-duration: 0.2s;
border-radius: 4px;
font-size: 1.35rem;
}
.t-metro .c-tt-buy-button,
.t-dark-metro .c-tt-buy-button,
.t-inverted-metro .c-tt-buy-button,
.t-s8 .c-tt-buy-button{
border-radius: 0;
}
.c-tt-buy-button--unlocked {
color: #3AACD6;
background: #232028;
cursor: pointer;
}
.c-tt-buy-button--unlocked:hover {
color: #232028;
background: #3AACD6;
}
.c-tt-buy-button--locked {
color: black;
background: #4A4A4A;
}
.c-tt-buy-button--locked:hover {
background: #652F2F;
}
#timetheorems {
font-size: 15px;
text-align: center;
flex: 1 0 auto;
}
.ttbuttons-row {
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: stretch;
}
.ttbuttons-top-row {
align-items: center;
}
.o-tt-top-row-button {
min-height: 3rem;
font-size: 1.2rem;
margin: 0.3rem;
flex-grow: 0;
flex-shrink: 0;
align-self: stretch;
padding-left: 1rem;
padding-right: 1rem;
}
.o-tt-autobuyer-button {
height: 2.5rem;
font-size: 1rem;
margin: 0.3rem;
flex-grow: 0;
flex-shrink: 0;
align-self: stretch;
padding-left: 1rem;
padding-right: 1rem;
min-width: 8rem;
}
.l-tt-save-load-btn__wrapper {
margin: 0.3em;
position: relative;
}
.l-tt-save-load-btn {
min-width: 2em;
}
.l-tt-save-load-btn__menu {
position: absolute;
top: -0.5rem;
left: 50%;
transform: translate(-50%, -100%);
2020-04-29 22:04:57 +00:00
padding: 0.5rem 0;
}
.c-tt-save-load-btn__menu {
color: white;
background: black;
border-radius: 0.5rem;
text-align: left;
font-weight: bold;
font-family: Typewriter;
font-size: 1.4rem;
}
.l-tt-save-load-btn__menu::after {
content: "";
position: absolute;
top: 100%;
left: 50%;
margin-left: -0.5rem;
border-width: 0.5rem;
border-style: solid;
2020-04-29 22:04:57 +00:00
border-color: black transparent transparent;
}
.l-tt-save-load-btn__menu-rename {
margin: 0.3rem 0.5rem 0.5rem 0.7rem;
}
.c-tt-save-load-btn__menu-rename {
text-align: left;
font-weight: bold;
font-family: Typewriter;
font-size: 1.4rem;
border: none;
border-radius: 0.3rem;
padding: 0.2rem;
}
.l-tt-save-load-btn__menu-item {
2020-04-29 22:04:57 +00:00
padding: 0.25rem 1rem;
cursor: pointer;
}
.c-tt-save-load-btn__menu-item:hover {
background: white;
color: black;
}
.c-tt-autobuyer-toggle {
color: initial;
}
.l-tt-buy-max-vbox {
display: inline-flex;
flex-direction: column;
align-items: center;
}
2019-09-04 06:57:19 +00:00
.ttshop-background {
background: var(--color-base);
border: 2px solid black;
border-bottom: none;
border-top-left-radius: 7px;
border-top-right-radius: 7px;
z-index: 1;
}
2019-09-04 06:57:19 +00:00
.t-metro .ttshop-background,
.t-dark-metro .ttshop-background,
.t-inverted-metro .ttshop-background,
.t-s8 .ttshop-background {
border-width: 1px;
border-radius: 0;
}
.t-s6 .ttshop-background {
2020-04-18 05:41:52 +00:00
border: 0.1rem solid #3AACD6;
2019-09-04 06:57:19 +00:00
}
.ttshop-container {
padding: 0 0.5rem;
2019-09-04 06:57:19 +00:00
width: 55.5rem;
display: flex;
flex-direction: column;
transition: all 0.25s ease-out;
}
.ttshop-minimize-btn {
display: flex;
justify-content: center;
width: 2.6rem;
height: 4.7rem;
margin-left: -1px
}
.t-metro .ttshop-minimize-btn,
.t-dark-metro .ttshop-minimize-btn,
.t-inverted-metro .ttshop-minimize-btn,
.t-s8 .ttshop-minimize-btn {
width: 2.5rem;
height: 4.6rem;
}
.ttshop-minimize-btn span {
display: inline-block;
transition: all 0.25s ease-out;
margin-left: -1px;
font-size: 25px;
}
#minimizeArrow {
color: black;
}
.c-ttshop__save-load-text {
font-size: 10px;
}
/*#endregion TT shop*/
/*#region tab buttons*/
.o-tab-btn {
color: var(--color-text);
background-color: var(--color-base);
font-weight: bold;
border: 0.2rem solid var(--color-accent);
border-radius: 0.4rem;
transition-duration: 0.2s;
cursor: pointer;
font-family: Typewriter;
font-size: 1.8rem;
2019-11-20 18:42:05 +00:00
user-select: none;
}
.t-s6 .o-tab-btn {
text-shadow: 0 0 0.3rem;
}
.o-tab-btn:hover {
color: var(--color-text-inverted);
background: var(--color-accent);
}
.o-tab-btn--infinity {
color: white;
background: black;
border-color: var(--color-infinity);
}
.t-dark .o-tab-btn--infinity,
2019-11-20 18:42:05 +00:00
.t-dark-metro .o-tab-btn--infinity {
color: black;
background: white;
}
.o-tab-btn--infinity:hover {
color: black;
background: var(--color-infinity);
}
.o-tab-btn--eternity {
color: var(--color-eternity);
background: black;
border-color: var(--color-eternity);
}
.o-tab-btn--eternity:hover {
color: var(--color-eternity);
background: white;
}
.t-s1 .o-tab-btn--eternity:hover {
color: black;
background: #639565;
}
.o-tab-btn--reality {
background: white;
border-color: var(--color-reality);
color: var(--color-reality);
}
.o-tab-btn--reality:hover {
background: var(--color-reality);
color: white;
}
.o-tab-btn--celestial {
color: var(--color-celestials);
background: white;
border-color: var(--color-celestials);
}
.o-tab-btn--celestial:hover {
color: white;
2020-04-29 22:04:57 +00:00
background: var(--color-celestials);
}
/*#endregion tab buttons*/
2019-07-25 12:52:03 +00:00
.c-news-ticker {
overflow: hidden;
}
.c-news-ticker__line {
padding-left: 100%;
transition: transform linear;
}
.c-news-line {
2019-06-04 06:43:27 +00:00
display: inline-block;
2019-07-25 12:52:03 +00:00
font-family: Typewriter, serif;
font-size: 1.5rem;
2019-06-04 06:43:27 +00:00
white-space: nowrap;
2019-07-25 12:52:03 +00:00
font-weight: bold;
text-align: left;
user-select: none;
}
2019-07-25 12:52:03 +00:00
.c-news-line a {
text-decoration: underline;
}
#loading {
2019-11-20 18:42:05 +00:00
height: 100%;
width: 100%;
background: url("../images/loading.png") no-repeat;
background-size: cover;
background-position-x: 50%;
background-position-y: 50%;
position: absolute;
background-color: black;
z-index: 999;
}
.l-reality-button {
display: block;
margin-bottom: 2rem;
}
.l-reality-button__contents {
display: flex;
flex-direction: column;
align-items: center;
}
.c-reality-button__header {
font-size: 1.4rem;
line-height: 1.6;
}
.c-reality-button {
font-family: Typewriter;
border-radius: 0.4rem;
transition-duration: 0.2s;
width: 21rem;
height: 8rem;
font-size: 1.2rem;
font-weight: bold;
background: white;
border-width: 0.2rem;
border-style: solid;
}
.t-dark-metro .c-reality-button,
.t-inverted-metro .c-reality-button,
.t-metro .c-reality-button,
.t-s8 .c-reality-button {
border-width: 0.1rem;
border-radius: 0;
}
2019-11-20 18:42:05 +00:00
.t-s6 .c-reality-button {
background: black;
}
.c-reality-button--unlocked {
color: var(--color-reality);
border-color: var(--color-reality);
cursor: pointer;
}
.c-reality-button--locked {
color: #181818;
background-color: #5f5f5f;
border-color: var(--color-bad);
}
2020-05-23 23:37:09 +00:00
.t-s6 .c-reality-button--locked {
color: grey;
}
.c-reality-button--unlocked:hover, .c-reality-button--unlocked.force-hover {
color: white;
background: var(--color-reality);
}
.c-reality-button--locked:hover {
color: #1d1d1d;
background-color: var(--color-bad);
}
.l-reset-reality-button {
display: block;
margin-bottom: 2rem;
}
.c-reset-reality-button {
font-family: Typewriter;
border-radius: 0.4rem;
transition-duration: 0.2s;
cursor: pointer;
width: 21rem;
height: 4rem;
font-size: 1.2rem;
font-weight: bold;
color: var(--color-bad);
border-color: var(--color-bad);
background: white;
border-width: 0.2rem;
border-style: solid;
}
2020-05-23 22:50:42 +00:00
.c-reset-reality-button:hover, .c-reset-reality-button.force-hover,
.t-s6 .c-reset-reality-button:hover, .t-s6 .c-reset-reality-button.force-hover {
color: white;
background: var(--color-bad);
}
.t-dark-metro .c-reset-reality-button,
.t-inverted-metro .c-reset-reality-button,
.t-metro .c-reset-reality-button,
.t-s8 .c-reset-reality-button {
border-width: 0.1rem;
border-radius: 0;
}
.t-s6 .c-reset-reality-button {
background: black;
}
2019-04-07 23:07:38 +00:00
.l-reality-amplify-button {
margin-top: 1rem;
margin-bottom: 1rem;
}
[draggable] {
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
/* Required to make elements draggable in old WebKit */
-khtml-user-drag: element;
-webkit-user-drag: element;
}
@keyframes a-existence-glow {
0% { text-shadow: 1px 1px 2px black; }
50% { text-shadow: 1px 1px 8px black; }
100% { text-shadow: 1px 1px 2px black; }
}
[ach-tooltip] {
position: relative;
}
[ach-tooltip]:before,
[ach-tooltip]:after {
visibility: hidden;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
opacity: 0;
pointer-events: none;
}
[ach-tooltip]:before {
position: absolute;
bottom: 100%;
left: 50%;
margin-bottom: 5px;
margin-left: -85px;
padding: 7px;
width: 160px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
background-color: #000;
background-color: hsla(0, 0%, 5%, 0.9);
color: #fff;
content: attr(ach-tooltip);
text-align: center;
font-size: 14px;
line-height: 1.2;
transition-duration: .5s;
z-index: 3;
}
[ach-tooltip]:after {
position: absolute;
bottom: 100%;
left: 50%;
margin-left: -5px;
width: 0;
border-top: 5px solid #000;
border-top: 5px solid hsla(0, 0%, 5%, 0.9);
border-right: 5px solid transparent;
border-left: 5px solid transparent;
content: " ";
font-size: 0;
line-height: 0;
transition-duration: .5s;
}
[ach-tooltip]:hover:before,
[ach-tooltip]:hover:after {
visibility: visible;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
opacity: 1;
}
h1,
h2,
h3,
h4,
h5,
h6 {
color: #222;
margin: 0 0 20px;
}
p,
ul,
ol,
table,
dl {
margin: 0 0 3px;
}
h1,
h2,
h3 {
line-height: 1.1;
}
h1 {
font-size: 28px;
}
h2 {
color: #393939;
}
h3,
h4,
h5,
h6 {
color: #494949;
}
a {
color: #39c;
text-decoration: none;
}
a:hover {
color: #069;
}
a small {
font-size: 11px;
color: #777;
margin-top: -0.3em;
display: block;
}
a:hover small {
color: #777;
}
.wrapper {
width: 860px;
margin: 0 auto;
}
blockquote {
2020-04-18 05:41:52 +00:00
border-left: 0.1rem solid #e5e5e5;
margin: 0;
padding: 0 0 0 20px;
font-style: italic;
}
table {
border-spacing: 0
}
th,
td {
text-align: left;
padding: 5px 8px;
}
dt {
color: #444;
font-weight: 700;
}
th {
color: #444;
}
img {
max-width: 100%;
}
header {
width: 270px;
float: left;
position: fixed;
-webkit-font-smoothing: subpixel-antialiased;
}
header ul {
list-style: none;
height: 40px;
padding: 0;
background: #f4f4f4;
border-radius: 5px;
2020-04-18 05:41:52 +00:00
border: 0.1rem solid #e0e0e0;
width: 270px;
}
header li {
width: 89px;
float: left;
2020-04-18 05:41:52 +00:00
border-right: 0.1rem solid #e0e0e0;
height: 40px;
}
header li:first-child a {
border-radius: 5px 0 0 5px;
}
header li:last-child a {
border-radius: 0 5px 5px 0;
}
header ul a {
line-height: 1;
font-size: 11px;
color: #999;
display: block;
text-align: center;
padding-top: 6px;
height: 34px;
}
header ul a:hover {
color: #999;
}
header ul a:active {
background-color: #f0f0f0;
}
strong {
color: #222;
font-weight: 700;
}
header ul li+li+li {
border-right: none;
width: 89px;
}
header ul a strong {
font-size: 14px;
display: block;
color: #222;
}
section {
width: 500px;
float: right;
padding-bottom: 50px;
}
small {
font-size: 11px;
}
hr {
border: 0;
background: #e5e5e5;
height: 1px;
margin: 0 0 20px;
}
footer {
width: 270px;
float: left;
position: fixed;
bottom: 50px;
-webkit-font-smoothing: subpixel-antialiased;
}
br {
margin: 0;
pointer-events:none;
}
.videocontainer {
position: fixed;
top: 0;
bottom: 0;
width: 100%;
2019-04-05 21:36:15 +00:00
height: 100%;
2019-08-27 22:03:10 +00:00
z-index: 1;
overflow: hidden;
pointer-events: none;
}
2019-08-27 22:03:10 +00:00
.videocontainer--background {
z-index: -1000;
}
#realityanimbg {
2020-04-29 22:04:57 +00:00
min-width: 100%;
min-height: 100%;
width: auto;
height: auto;
position: absolute;
pointer-events: all;
top: 50%;
left: 50%;
transform: translate(-50%,-50%);
}
@media print, screen and (max-width: 960px) {
div.wrapper {
width: auto;
margin: 0;
}
header,
section,
footer {
float: none;
position: static;
width: auto;
}
header {
padding-right: 320px;
}
section {
2020-04-18 05:41:52 +00:00
border: 0.1rem solid #e5e5e5;
border-width: 1px 0;
padding: 20px 0;
margin: 0 0 20px;
}
header a small {
display: inline;
}
header ul {
position: absolute;
right: 50px;
top: 52px;
}
}
@media print,
screen and (max-width: 720px) {
body {
word-wrap: break-word;
}
header {
padding: 0;
}
header ul,
header p.view {
position: static;
}
}
@media print,
screen and (max-width: 480px) {
body {
padding: 15px;
}
header ul {
width: 99%;
}
header li,
header ul li+li+li {
width: 33%;
}
}
@media print {
body {
padding: 0.4in;
font-size: 12pt;
color: #444;
}
}
@keyframes barrelRoll {
0% {transform: rotateZ(0deg);}
50% {transform: rotateZ(360deg);}
100% {transform: rotateZ(360deg);}
}
@keyframes spin3d {
0% {transform: rotate3d(5.2, -2.8, 1.4, 0deg);}
100% {transform: rotate3d(5.2, -2.8, 1.4, 360deg);}
}
@keyframes spin4d {
0% {transform: scale(1) rotate3d(5.2, -2.8, 1.4, 0deg);}
50% {transform: scale(0) rotate3d(5.2, -2.8, 1.4, 360deg);}
100% {transform: scale(1) rotate3d(5.2, -2.8, 1.4, 0deg);}
}
@keyframes float {
2019-04-11 12:54:21 +00:00
0% { bottom: 0; opacity: 0;}
50% {opacity: 1; }
100% { bottom: 50px; opacity: 0;}
}
@keyframes implode {
0% {transform:scale(1); filter:blur(0)}
50% {transform:scale(0); filter:blur(5px)}
100% {transform:scale(1); filter:blur(0)}
}
@keyframes realize {
0% {opacity: 1;}
20% {opacity: 0;}
80% {opacity: 0;}
100% {opacity: 1;}
}
@keyframes realizebg {
0% {opacity: 0;}
20% {opacity: 0;}
30% {opacity: 1;}
70% {opacity: 1;}
80% {opacity: 0;}
100% {opacity: 0;}
}
2019-06-21 18:36:18 +00:00
@keyframes text-grow {
0% {font-size: 1.3rem;}
50% {font-size: 1.8rem;}
100% {font-size: 1.3rem;}
}
@keyframes text-shrink {
0% {font-size: 1.8rem;}
50% {font-size: 1.3rem;}
100% {font-size: 1.8rem;}
}
@keyframes text-crunch {
0% {font-size: 1.5rem;}
90% {font-size: 1.5rem;}
2019-11-15 01:54:53 +00:00
100% {font-size: 0;}
}
2019-06-21 18:36:18 +00:00
@keyframes text-flash {
0% {color: yellow;}
50% {color: red;}
}
2019-11-15 00:43:56 +00:00
@keyframes fade-out {
0% {opacity: 1;}
50% {opacity: 0;}
100% {opacity: 1;}
}
@keyframes text-stretch {
2019-11-15 01:54:53 +00:00
0% {letter-spacing: 0;}
2019-11-15 00:43:56 +00:00
100% {letter-spacing: 30rem;}
}
.infotooltip {
2020-05-08 05:57:48 +00:00
position: relative;
display: inline-block;
}
.infotooltip .infotooltiptext {
2020-05-08 05:57:48 +00:00
visibility: hidden;
background-color: black;
color: #fff;
text-align: left;
padding: 0.5rem;
border-radius: 0.5rem;
position: absolute;
z-index: 2;
white-space: nowrap;
left: 105%
}
.infotooltip:hover .infotooltiptext {
2020-05-08 05:57:48 +00:00
visibility: visible;
}
/*******
* BEM *
*******/
2019-07-25 12:52:03 +00:00
.c-game-ui {
width: 100%;
height: 100%;
2019-07-25 12:52:03 +00:00
}
2019-08-11 09:54:34 +00:00
._kong-test .c-game-ui {
max-height: 100%;
}
/*#region o-primary-btn*/
.o-primary-btn {
height: 2.5rem;
font-family: Typewriter, serif;
font-weight: bold;
font-size: 1.3rem;
color: var(--color-text);
background-color: var(--color-base);
border: 0.1rem solid var(--color-good-dark);
border-radius: 0.4rem;
transition-duration: 0.2s;
cursor: pointer;
padding: 0.3rem 1rem;
}
.o-primary-btn:hover {
color: #FFF;
background-color: var(--color-good);
}
.o-primary-btn--disabled {
background-color: #A3A3A3;
border-color: var(--color-bad);
cursor: default;
}
.o-primary-btn--disabled:hover {
background-color: var(--color-bad);
}
/*#region modifiers*/
.o-primary-btn--width-medium {
width: 12rem;
}
.o-primary-btn--subtab-option {
border: 0.2rem solid var(--color-accent);
margin: 0 0.8rem;
line-height: 0;
}
.o-primary-btn--subtab-option:hover {
background-color: var(--color-accent);
}
.o-primary-btn--tickspeed {
width: 17rem;
font-size: 1.2rem;
}
.o-primary-btn--buy-max {
font-size: 1.2rem;
width: 12rem;
}
.o-primary-btn--sacrifice {
font-size: 1.2rem;
width: 32rem;
margin-right: 0.8rem;
}
.o-primary-btn--buy-nd {
font-size: 1rem;
}
.o-primary-btn--buy-single-nd {
width: 13.5rem;
}
.o-primary-btn--buy-10-nd {
width: 21rem;
}
.o-primary-btn--dimboost {
font-size: 0.9rem;
width: 21rem;
height: 3rem;
}
.o-primary-btn--galaxy {
font-size: 0.9rem;
width: 21rem;
height: 3.5rem;
}
.o-primary-btn--new-dim {
font-weight: bold;
2020-04-23 19:34:14 +00:00
width: 22rem;
height: 7rem;
}
.o-primary-btn--quick-reset {
font-size: 1.2rem;
width: 20rem;
height: 7rem;
}
.o-primary-btn--buy-id {
width: 19.5rem;
height: 3rem;
}
.o-primary-btn--buy-id-max,
.o-primary-btn--id-autobuyer {
font-size: 1rem;
width: 8rem;
height: 3rem;
}
.o-primary-btn--buy-td {
width: 19.5rem;
height: 3rem;
}
.o-primary-btn--buy-td-max,
.o-primary-btn--td-autobuyer {
font-size: 1rem;
width: 8rem;
height: 3rem;
}
.o-primary-btn--option {
width: 20rem;
height: 5.5rem;
box-sizing: border-box;
}
2020-04-22 12:56:28 +00:00
.o-primary-btn--option-wide {
width: 24rem;
height: 5.5rem;
box-sizing: border-box;
}
.o-primary-btn--option_font-large {
font-size: 1.8rem;
}
.o-primary-btn--option_font-x-large {
font-size: 2rem;
}
.o-primary-btn--update-rate {
font-size: 1.4rem;
text-align: center;
cursor: default;
}
.o-primary-btn--update-rate__slider {
width: 100%;
}
.o-primary-btn--modal-close {
width: 3rem;
height: 3rem;
font-size: 2.4rem;
line-height: 2.4rem;
padding: 0;
}
.o-primary-btn--small-spoon {
font-size: 1rem;
}
.o-primary-btn--replicanti-unlock {
width: 20rem;
height: 8rem;
}
.o-primary-btn--replicanti-upgrade {
width: 18rem;
height: 5rem;
font-size: 1rem;
padding: 0.1rem 0.6rem;
}
.o-primary-btn--replicanti-upgrade-toggle {
font-size: 1rem;
}
.o-primary-btn--dilation-upgrade-toggle {
font-size: 1rem;
}
.o-primary-btn--reality-upgrade-toggle {
font-size: 1rem;
}
.o-primary-btn--replicanti-galaxy {
width: 22rem;
height: 7rem;
font-size: 1.2rem;
padding: 0.1rem 0.6rem;
}
.o-primary-btn--replicanti-galaxy-toggle {
width: 22rem;
font-size: 1.2rem;
}
.o-primary-btn--time-study-options {
width: 15rem;
height: 4rem;
font-size: 1rem;
}
.o-primary-btn--respec-active {
background-color: var(--color-good);
}
.o-primary-btn--respec-active:hover {
background-color: var(--color-good);
color: black;
cursor: default;
}
.o-primary-btn--glyph-trash {
2020-03-03 17:57:00 +00:00
width: 30rem;
height: 4.5rem;
font-size: 1rem;
}
.o-primary-btn--discharge-options {
width: 15rem;
height: 4rem;
font-size: 1rem;
}
/*#endregion modifiers*/
/*#region themes*/
/*#region t-dark*/
.t-dark .o-primary-btn {
box-shadow: 0 0 0.7rem 0.2rem #111111;
}
.t-dark .o-primary-btn:hover {
background-color: #1b5e20;
}
.t-dark .o-primary-btn--disabled {
2019-04-17 20:54:36 +00:00
color: black;
background-color: #37474f;
}
.t-dark .o-primary-btn--disabled:hover {
background-color: var(--color-bad);
}
.t-dark .o-primary-btn--respec-active {
background-color: #1b5e20;
}
.t-dark .o-primary-btn--discharge-active {
background-color: #1b5e20;
}
/*#endregion t-dark*/
/*#region t-dark-metro*/
.t-dark-metro .o-primary-btn {
box-shadow: 0.1rem 0.1rem 0.1rem 0 black;
border-radius: 0;
border-width: 0.1rem;
}
.t-dark-metro .o-primary-btn--disabled {
background-color: #37474f;
}
.t-dark-metro .o-primary-btn--disabled:hover {
background-color: var(--color-bad);
}
/*#endregion t-dark-metro*/
/*#region t-metro t-dark-metro t-inverted-metro t-s8*/
.t-metro .o-primary-btn,
2019-10-11 17:54:04 +00:00
.t-dark-metro .o-primary-btn,
.t-inverted-metro .o-primary-btn,
.t-s8 .o-primary-btn {
border-radius: 0;
border-width: 0.1rem;
}
.t-metro .o-primary-btn--toggle,
.t-dark-metro .o-primary-btn--toggle,
.t-inverted-metro .o-primary-btn--toggle,
.t-s8 .o-primary-btn--toggle {
border-width: 0.1rem;
}
.t-metro .o-primary-btn,
.t-inverted-metro .o-primary-btn {
box-shadow: 0.1rem 0.1rem 0.1rem 0 #9e9e9e;
}
.t-metro .o-primary-btn--disabled,
.t-inverted-metro .o-primary-btn--disabled,
.t-s8 .o-primary-btn--disabled {
background-color: #9e9e9e;
}
.t-metro .o-primary-btn--disabled:hover,
.t-dark-metro .o-primary-btn--disabled:hover,
.t-inverted-metro .o-primary-btn--disabled:hover,
.t-s8 .o-primary-btn--disabled:hover {
background-color: var(--color-bad);
}
/*#endregion t-metro t-inverted-metro t-s8*/
/*#region t-s1*/
.t-s1 .o-primary-btn {
border-color: black;
}
.t-s1 .o-primary-btn--disabled {
background-color: #9a921d;
}
.t-s1 .o-primary-btn--disabled:hover {
background-color: var(--color-bad);
}
/*#endregion t-s1*/
/*#region t-s4*/
.t-s4 .o-primary-btn {
background-color: #ff0000;
cursor: url(cursor2.cur), auto;
}
.t-s4 .o-primary-btn--disabled {
cursor: url(cursor.cur), auto;
}
/*#endregion t-s4*/
/*#region t-s6*/
.t-s6 .o-primary-btn {
box-shadow: 0 0 0.7rem 0.2rem #111111;
}
.t-s6 .o-primary-btn--disabled {
color: grey;
background-color: var(--color-base);
}
.t-s6 .o-primary-btn--disabled:hover {
color: var(--color-text);
background: var(--color-bad);
}
.t-s6 .o-primary-btn--respec-active {
background-color: #1b5e20;
}
.t-s6 .o-primary-btn--discharge-active {
background-color: #1b5e20;
}
/* FFS */
.t-metro .o-primary-btn--respec-active,
.t-dark .o-primary-btn--respec-active,
.t-dark-metro .o-primary-btn--respec-active,
.t-s1 .o-primary-btn--respec-active,
.t-s6 .o-primary-btn--respec-active,
.t-s8 .o-primary-btn--respec-active {
background-color: #673ab7;
}
.t-metro .o-primary-btn--respec-active:hover,
.t-dark .o-primary-btn--respec-active:hover,
.t-dark-metro .o-primary-btn--respec-active:hover,
.t-s1 .o-primary-btn--respec-active:hover,
.t-s6 .o-primary-btn--respec-active:hover,
.t-s8 .o-primary-btn--respec-active:hover {
background-color: #673ab7;
color: black;
}
.t-metro .o-primary-btn--discharge-active,
.t-dark .o-primary-btn--discharge-active,
.t-dark-metro .o-primary-btn--discharge-active,
.t-s1 .o-primary-btn--discharge-active,
.t-s6 .o-primary-btn--discharge-active,
.t-s8 .o-primary-btn--discharge-active {
background-color: #673ab7;
}
.t-metro .o-primary-btn--discharge-active:hover,
.t-dark .o-primary-btn--discharge-active:hover,
.t-dark-metro .o-primary-btn--discharge-active:hover,
.t-s1 .o-primary-btn--discharge-active:hover,
.t-s6 .o-primary-btn--discharge-active:hover,
.t-s8 .o-primary-btn--discharge-active:hover {
background-color: #673ab7;
color: black;
}
/*#endregion t-s6*/
/*#endregion themes*/
/*#endregion o-primary-btn*/
/*#region c-subtab-option-container*/
.c-subtab-option-container {
display: flex;
flex-direction: row;
padding-bottom: 0.8rem;
}
.t-metro .c-subtab-option-container,
.t-dark-metro .c-subtab-option-container,
.t-inverted-metro .c-subtab-option-container,
.t-s8 .c-subtab-option-container {
border-width: 0.1rem;
border-radius: 0;
}
/*#endregion c-subtab-option-container*/
/*#region o-prestige-btn*/
.o-prestige-btn {
border: 0.2rem solid;
border-radius: 0.4rem;
transition-duration: 0.2s;
cursor: pointer;
2020-04-23 19:34:14 +00:00
width: 22rem;
height: 7rem;
font-size: 1.1rem;
font-family: Typewriter, serif;
}
.o-prestige-btn br {
pointer-events: none;
}
.o-prestige-btn b {
pointer-events: none;
}
/*#region Big Crunch*/
.o-prestige-btn--big-crunch {
2019-04-17 20:54:36 +00:00
color: white;
background-color: black;
border-color: var(--color-infinity);
}
.o-prestige-btn--big-crunch:hover {
color: black;
background-color: var(--color-infinity);
}
.o-prestige-btn--big-crunch span {
transition-duration: 0.2s;
}
.o-prestige-btn--big-crunch:hover span {
color: black !important;
}
.t-dark .o-prestige-btn--big-crunch {
color: black;
background: white;
}
2019-04-17 20:54:36 +00:00
.t-dark .o-prestige-btn--big-crunch:hover {
background: var(--color-infinity);
}
.t-metro .o-prestige-btn--big-crunch,
.t-inverted-metro .o-prestige-btn--big-crunch,
.t-s8 .o-prestige-btn--big-crunch {
box-shadow: 0.1rem 0.1rem 0.1rem 0 #9e9e9e;
border-width: 0.1rem;
border-radius: 0;
}
2019-04-17 20:54:36 +00:00
.t-dark-metro .o-prestige-btn--big-crunch {
color: black;
background: white;
box-shadow: 1px 1px 1px 0 black;
border-width: 0.1rem;
2019-04-17 20:54:36 +00:00
border-radius: 0;
}
.t-dark-metro .o-prestige-btn--big-crunch:hover {
background: var(--color-infinity);
}
/*#region Eternity*/
.o-prestige-btn--eternity {
color: var(--color-eternity);
background-color: black;
border-color: var(--color-eternity);
font-weight: bold;
}
.o-prestige-btn--eternity:hover {
color: var(--color-eternity);
background-color: white;
2020-02-15 00:15:06 +00:00
}
.o-prestige-btn--eternity span {
transition-duration: 0.2s;
}
.o-prestige-btn--eternity:hover span {
color: var(--color-eternity) !important;
2019-08-06 10:43:57 +00:00
}
.t-s1 .o-prestige-btn--eternity:hover span {
color: var(--color-text) !important;
}
.t-metro .o-prestige-btn--eternity,
.t-dark-metro .o-prestige-btn--eternity,
.t-inverted-metro .o-prestige-btn--eternity,
.t-s8 .o-prestige-btn--eternity {
border-width: 0.1rem;
border-radius: 0;
}
.t-s1 .o-prestige-btn--eternity:hover {
color: black;
background: var(--color-eternity);
border-color: black;
}
2020-04-21 13:45:57 +00:00
.o-prestige-btn--dilation {
color: #64dd17;
background-color: black;
border-color: #64dd17;
}
.o-prestige-btn--dilation:hover {
color: #64dd17;
background-color: white;
}
.o-prestige-btn--dilation span {
transition-duration: 0.2s;
}
.o-prestige-btn--dilation:hover span {
color: #64dd17 !important;
}
.t-s1 .o-prestige-btn--dilation:hover span {
color: var(--color-text) !important;
}
.t-metro .o-prestige-btn--dilation,
.t-dark-metro .o-prestige-btn--dilation,
.t-inverted-metro .o-prestige-btn--dilation,
.t-s8 .o-prestige-btn--dilation {
border-width: 0.1rem;
border-radius: 0;
}
.t-s1 .o-prestige-btn--dilation:hover {
color: black;
background: #64dd17;
border-color: black;
}
/*#endregion Eternity*/
/*#endregion Big Crunch*/
/*#endregion o-prestige-btn*/
/*#region l-spoon-btn-group*/
.l-spoon-btn-group {
display: flex;
flex-direction: column;
}
.l--spoon-btn-group__little-spoon {
align-self: stretch;
margin-top: 0.3rem;
}
.l--spoon-btn-group__little-spoon-reality-btn {
width: 25rem;
align-self: center;
2020-03-08 11:13:49 +00:00
margin-top: -0.9rem;
2020-04-21 23:15:19 +00:00
margin-bottom: 1.2rem;
}
/*#endregion l-spoon-btn-group*/
.o-big-checkbox {
width: 2rem;
height: 1.8rem;
}
/*#region hint-text*/
.o-hint-text {
font-size: 1.55rem;
color: white;
text-shadow:
-0.1rem -0.1rem 0 black,
-0.1rem -0.1rem 0 black,
0.1rem -0.1rem 0 black,
0.1rem -0.1rem 0 black,
-0.1rem 0.1rem 0 black,
-0.1rem 0.1rem 0 black,
0.1rem 0.1rem 0 black,
0.1rem 0.1rem 0 black;
2020-04-19 03:44:17 +00:00
pointer-events: none;
}
.l-hint-text {
position: absolute;
top: -1.6rem;
left: 0;
}
.l-hint-text--challenge {
top: -2.2rem;
}
.l-hint-text--time-study {
top: -1.95rem;
}
.l-hint-text--reality-upgrade {
top: -2rem;
}
.c-hint-text--reality-upgrade {
color: var(--color-text);
text-shadow: none;
font-weight: bold;
}
.l-hint-text--achievement {
top: -2rem;
z-index: 1;
}
2019-07-04 07:52:08 +00:00
.o-hint-text--alchemy-node {
color: #4f5957;
2019-07-04 07:52:08 +00:00
text-shadow: none;
font-size: 1.2rem;
transition: opacity 0.2s;
}
.o-hint-text--alchemy-node--unfocused {
opacity: 0;
2019-07-04 07:52:08 +00:00
}
.l-hint-text--alchemy-node {
top: 2.6rem;
2019-07-04 07:52:08 +00:00
left: 50%;
transform: translate(-50%);
}
/*#endregion hint-text*/
/*#region Header*/
.l-game-header__amounts-line {
position: relative;
font-size: 1.2rem;
}
/*#region IP Amount*/
.l-game-header__infinity-points {
position: absolute;
left: 75%;
}
.c-game-header__infinity-points {
font-size: 1.2rem;
width: 21rem;
}
.c-game-header__tesseract-available {
animation: a-tesseract-shift 5s infinite;
}
.t-dark .c-game-header__tesseract-available,
.t-dark-metro .c-game-header__tesseract-available,
.t-s6 .c-game-header__tesseract-available {
background: #EEEEEE;
animation: a-tesseract-shift-dark 5s infinite;
}
.c-game-header__ip-amount {
font-weight: bold;
}
.t-dark .c-game-header__ip-amount,
.t-s6 .c-game-header__ip-amount {
color: white;
text-shadow: 0 0 0.7rem white;
}
.t-metro .c-game-header__ip-amount,
.t-dark-metro .c-game-header__ip-amount,
2019-04-17 20:54:36 +00:00
.t-inverted-metro .c-game-header__ip-amount,
.t-s8 .c-game-header__ip-amount {
color: #ff9800;
}
.t-s1 .c-game-header__ip-amount {
color: #7d3c1b;
text-shadow: 0.1rem 0.1rem 0 black;
}
/*#endregion IP Amount*/
/*#region EP Amount*/
.l-game-header__eternity-points {
position: absolute;
right: 75%;
}
.c-game-header__eternity-points {
font-size: 1.2rem;
width: 21rem;
}
.c-game-header__ep-amount {
font-weight: bold;
}
.t-dark .c-game-header__ep-amount,
.t-s6 .c-game-header__ep-amount {
color: var(--color-eternity);
text-shadow: 0 0 0.7rem var(--color-eternity);
}
.t-metro .c-game-header__ep-amount,
.t-dark-metro .c-game-header__ep-amount,
2019-04-17 20:54:36 +00:00
.t-inverted-metro .c-game-header__ep-amount,
.t-s8 .c-game-header__ep-amount {
color: var(--color-eternity);
}
.t-s1 .c-game-header__ep-amount {
color: var(--color-eternity);
text-shadow: 0.1rem 0.1rem 0 black;
}
/*#endregion EP Amount*/
/*#region c-game-header__antimatter*/
.c-game-header__antimatter {
font-size: 2.5rem;
color: black;
}
.t-dark .c-game-header__antimatter,
.t-s6 .c-game-header__antimatter {
animation: a-game-header__antimatter--glow 25s infinite;
}
@keyframes a-game-header__antimatter--glow {
0% {color: #2196f3;}
33% {color: #673ab7;}
66% {color: #00bcd4;}
100% {color: #2196f3;}
}
.t-dark-metro .c-game-header__antimatter {
color: #e0e0e0;
}
/*#endregion c-game-header__antimatter*/
.l-game-header__buttons-line {
position: relative;
}
.l-game-header__big-crunch-btn {
position: absolute;
left: 75%;
}
.l-game-header__eternity-btn {
position: absolute;
right: 75%;
}
.l-game-header__new-dim-btn {
position: absolute;
right: 75%;
}
.c-game-header__tickspeed-row {
display: flex;
flex-direction: column;
align-items: center;
}
.c-game-header__tickspeed-row--hidden {
visibility: hidden;
}
.u-fa-padding {
width: 1rem;
}
/*#endregion Header*/
.t-s2 .c-dim-tab {
color: black;
text-shadow: .05rem .05rem 0 white, -.05rem -.05rem 0 white;
}
/*#region Dimensions*/
.l-dimensions-container {
width: 100%;
}
.c-dim-row__name {
width: 40%;
}
.c-dim-row__label {
text-align: left;
}
.c-dim-row__label--growable {
flex-grow: 1;
}
.c-dim-row__label--small {
font-size: 1.2rem;
}
.l-dim-row__button {
flex-shrink: 0;
margin-left: 1.6rem;
}
.l-dim-row__button--right-offset {
margin-right: 10rem;
}
/*#endregion Dimensions*/
/*#region Normal Dimensions*/
/*#region l-normal-dim-tab*/
.l-normal-dim-tab > * {
flex-shrink: 0;
}
.l-normal-dim-tab__progress_bar {
2019-07-25 12:52:03 +00:00
margin: 1rem 0;
}
/*#endregion l-normal-dim-tab*/
/*#region l-normal-dim-tab-header*/
.l-normal-dim-tab__header {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
padding-top: 0.5rem;
}
/*#endregion l-normal-dim-tab-header*/
/*#region c-normal-dim-row*/
.c-normal-dim-row {
/* relative because floating text is 'position: absolute' */
position: relative;
display: flex;
flex-direction: row;
align-items: center;
font-size: 1.5rem;
margin-top: 1rem;
}
.c-normal-dim-row__floating-text {
position: absolute;
bottom: 2rem;
left: 15rem;
animation: float 1s 1;
color: green;
opacity: 0;
}
/*#endregion c-dimension-row*/
/*#region c-progress-bar*/
.c-progress-bar {
width: 100%;
background-color: #A3A3A3;
border-radius: 0.5rem;
pointer-events: none;
margin-right: auto;
margin-left: auto;
/* Start fill from left corner*/
text-align: left;
}
.c-progress-bar__fill {
width: 0;
background-color: #127A20;
border-radius: inherit;
transition-duration: 0.1s;
pointer-events: none;
/* Align percents on center*/
text-align: center;
}
.c-progress-bar__percents {
font-size: 1.6rem;
color: black;
pointer-events: all;
user-select: none;
overflow-wrap: normal;
}
/*#region themes*/
/*#region t-dark t-s6*/
.t-s6 .c-progress-bar__fill,
.t-dark .c-progress-bar__fill {
background-color: #1b5e20;
}
/*#endregion t-dark t-s6*/
/*#region t-inverted t-inverted-metro*/
.t-inverted .c-progress-bar__fill,
.t-inverted-metro .c-progress-bar__fill {
color: white;
background-color: #ed85df;
}
/*#endregion t-inverted t-inverted-metro*/
/*#region t-s1*/
.t-s1 .c-progress-bar__fill {
background-color: #4baf4e;
}
/*#endregion t-s1*/
/*#endregion themes*/
/*#endregion c-progress-bar*/
/*#endregion Normal Dimensions*/
/*#region Infinity Dimensions*/
/*#region l-infinity-dim-tab*/
.l-infinity-dim-tab {
display: flex;
flex-direction: column;
align-items: center;
}
.l-infinity-dim-tab__ec8-purchases {
margin-top: 1rem;
}
.l-infinity-dim-tab__enslaved-reward-container {
margin-top: 1rem;
margin-bottom: 1rem;
}
.c-infinity-dim-tab__tesseract-button {
padding: 1rem;
margin-bottom: 1.2rem;
2019-10-07 20:01:48 +00:00
font-family: TypeWriter, serif;
background: #111117;
color: #2ebce6;
border: none;
cursor: pointer;
2020-04-11 08:25:30 +00:00
transition-duration: 0.15s;
animation: a-tesseract-shift 5s infinite;
2019-10-07 20:01:48 +00:00
}
.t-dark .c-infinity-dim-tab__tesseract-button,
.t-dark-metro .c-infinity-dim-tab__tesseract-button,
.t-s6 .c-infinity-dim-tab__tesseract-button {
background: #EEEEEE;
animation: a-tesseract-shift-dark 5s infinite;
}
.c-infinity-dim-tab__tesseract-button:hover {
2019-10-07 20:01:48 +00:00
background: black;
color: #00c5ff;
2019-10-07 20:01:48 +00:00
}
.t-dark .c-infinity-dim-tab__tesseract-button:hover,
.t-dark-metro .c-infinity-dim-tab__tesseract-button:hover,
.t-s6 .c-infinity-dim-tab__tesseract-button:hover {
background: white;
}
.c-infinity-dim-tab__tesseract-button--disabled {
2019-10-07 20:01:48 +00:00
background: #444040;
color: #bfdde8;
cursor: default;
animation: none;
2019-10-07 20:01:48 +00:00
}
.t-dark .c-infinity-dim-tab__tesseract-button--disabled,
.t-dark-metro .c-infinity-dim-tab__tesseract-button--disabled,
.t-s6 .c-infinity-dim-tab__tesseract-button--disabled {
background: #444040;
color: #bfdde8;
cursor: default;
animation: none;
}
.c-infinity-dim-tab__tesseract-button--disabled:hover {
background: #444040;
color: #bfdde8;
}
.t-dark .c-infinity-dim-tab__tesseract-button--disabled:hover,
.t-dark-metro .c-infinity-dim-tab__tesseract-button--disabled:hover,
.t-s6 .c-infinity-dim-tab__tesseract-button--disabled:hover {
2019-10-07 20:01:48 +00:00
background: #444040;
color: #bfdde8;
}
@keyframes a-tesseract-shift {
0% {box-shadow: 1.5rem 1.5rem 0.5rem black, -1.5rem -1.5rem 0.5rem black;}
50% {box-shadow: 1.5rem -1.5rem 0.5rem black, -1.5rem 1.5rem 0.5rem black;}
100% {box-shadow: -1.5rem -1.5rem 0.5rem black, 1.5rem 1.5rem 0.5rem black;}
}
2019-10-07 20:01:48 +00:00
@keyframes a-tesseract-shift-dark {
0% {box-shadow: 1.5rem 1.5rem 0.5rem white, -1.5rem -1.5rem 0.5rem white;}
50% {box-shadow: 1.5rem -1.5rem 0.5rem white, -1.5rem 1.5rem 0.5rem white;}
100% {box-shadow: -1.5rem -1.5rem 0.5rem white, 1.5rem 1.5rem 0.5rem white;}
}
/*#endregion l-infinity-dim-tab*/
/*#region c-infinity-dim-description__accent*/
.c-infinity-dim-description__accent {
font-size: 3.5rem;
color: black;
}
2019-04-17 20:54:36 +00:00
.t-metro .c-infinity-dim-description__accent,
.t-s8 .c-infinity-dim-description__accent {
text-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.5), -0.1rem 0.1rem 0.1rem black;
2019-04-17 20:54:36 +00:00
}
.t-dark .c-infinity-dim-description__accent,
.t-s6 .c-infinity-dim-description__accent {
color: white;
text-shadow: 0 0 0.7rem #fff;
}
2019-04-17 20:54:36 +00:00
.t-metro .c-infinity-dim-description__accent,
.t-dark-metro .c-infinity-dim-description__accent,
.t-s8 .c-infinity-dim-description__accent {
color: #ff9800;
}
/*#endregion c-infinity-dim-description__accent*/
/*#region c-infinity-dim-row*/
.c-infinity-dim-row {
margin-top: 1rem;
display: flex;
flex-direction: row;
align-items: center;
font-size: 1.6rem;
}
.c-infinity-dim-row--not-reached {
opacity: 0.5;
}
/*#endregion c-infinity-dim-row*/
/*#endregion Infinity Dimensions*/
/*#region Time Dimensions*/
/*#region l-time-dim-tab*/
.l-time-dim-tab {
display: flex;
flex-direction: column;
align-items: center;
}
/*#endregion l-time-dim-tab*/
/*#region c-time-dim-description__accent*/
.c-time-dim-description__accent {
font-size: 3.5rem;
color: black;
}
2019-04-17 20:54:36 +00:00
.t-metro .c-time-dim-description__accent,
.t-s8 .c-time-dim-description__accent {
text-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.5), -0.1rem 0.1rem 0.1rem black;
2019-04-17 20:54:36 +00:00
}
.t-dark .c-time-dim-description__accent,
.t-s6 .c-time-dim-description__accent {
color: #64dd17;
text-shadow: 0 0 0.7rem #64dd17;
}
2019-04-17 20:54:36 +00:00
.t-metro .c-time-dim-description__accent,
.t-dark-metro .c-time-dim-description__accent,
.t-s8 .c-time-dim-description__accent {
color: #673ab7;
}
/*#endregion c-time-dim-description__accent*/
/*#region c-time-dim-row*/
.c-time-dim-row {
margin-top: 1rem;
display: flex;
flex-direction: row;
align-items: center;
font-size: 1.6rem;
}
/*#endregion c-time-dim-row*/
/*#endregion Time Dimensions*/
/*#region Options*/
.l-options-tab {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 1rem;
}
2019-04-15 23:34:45 +00:00
.c-options-tab__shortcuts-link {
cursor: pointer;
}
/*#region l-options-grid*/
.l-options-grid {
display: flex;
flex-direction: column;
}
.l-options-grid__row {
display: flex;
flex-direction: row;
2020-05-03 21:52:05 +00:00
justify-content: center;
}
.l-options-grid__button {
margin: 0.5rem 0.8rem;
}
.l-options-grid__button--hidden {
visibility: hidden;
}
.l-options-grid__notations-header {
display: flex;
align-items: center;
justify-content: center;
}
.c-options-grid__notations {
user-select: none;
}
/** replicate box-shadow behavior */
.t-dark .c-options-grid__notations {
box-shadow: 0 0 0.7rem 0.2rem #111111;
}
.t-dark-metro .c-options-grid__notations {
box-shadow: 0.1rem 0.1rem 0.1rem 0 black;
}
.t-metro .c-options-grid__notations,
.t-inverted-metro .c-options-grid__notations {
box-shadow: 0.1rem 0.1rem 0.1rem 0 #9e9e9e;
}
.t-s6 .c-options-grid__notations {
box-shadow: 0 0 0.7rem 0.2rem #111111;
}
/*#endregion l-options-grid*/
2019-04-14 05:04:05 +00:00
.l-select-notation,
.l-select-theme {
display: flex;
flex-direction: column;
align-items: stretch;
}
2019-04-14 05:04:05 +00:00
.l-select-notation__item,
.l-select-theme__item {
display: flex;
align-items: center;
justify-content: center;
}
2019-04-14 05:04:05 +00:00
.o-primary-btn.c-select-notation__item,
.o-primary-btn.c-select-theme__item {
box-shadow: none;
2019-04-17 20:54:36 +00:00
border-top: none;
}
/*#endregion Options*/
/*#region c-stats-tab*/
/* This the top-level Statistics tab (with all subtabs)*/
.c-stats-tab {
display: flex;
flex-direction: column;
align-items: center;
color: black;
font-size: 1.2rem;
}
2019-04-17 20:54:36 +00:00
.t-dark .c-stats-tab {
color: #888888;
}
.t-dark-metro .c-stats-tab {
color: #757575;
}
2019-09-04 20:52:36 +00:00
.t-s2 .c-stats-tab {
color: white;
}
.t-s6 .c-stats-tab {
color: #e0e0e0;
}
/*#endregion c-stats-tab*/
2020-02-15 00:15:06 +00:00
/*#region Past Prestige Runs*/
.c-past-runs-header {
cursor: pointer;
user-select: none;
display: flex;
flex-direction: row;
justify-content: center;
flex: auto;
resize: none;
2020-03-03 04:38:39 +00:00
align-items: baseline;
}
.o-run-drop-down-icon {
font-size: 1.5em;
margin-left: 2rem;
margin-right: 2rem;
2020-02-15 00:15:06 +00:00
}
/*#endregion Past Prestige Runs*/
/*#region Challenge Records*/
.l-challenge-records-tab {
display: flex;
flex-direction: row;
justify-content: center;
align-items: center;
}
.l-challenge-records-tab__infinity_challenges {
margin-top: auto;
margin-left: 2rem;
}
/*#endregion Challenge Records*/
/*#region Achievements*/
/*#region o-achievement*/
.o-achievement {
width: 10.6rem;
height: 10.6rem;
border-radius: 0.8rem;
margin: 0 auto;
text-align: center;
font-family: TypeWriter, serif;
color: black;
font-size: 0.8rem;
user-select: none;
border: 0.2rem solid;
}
.o-achievement--normal {
background-image: url("../images/normal achievements.png");
}
.o-achievement--cancer {
background-image: url("../images/cancer achievements.png");
}
.o-achievement--secret {
background-image: url("../images/secret achievements.png");
}
.o-achievement--locked {
background-color: #a3a3a3;
border-color: var(--color-bad);
}
.o-achievement--unlocked {
background-color: #5ac467;
border-color: #127a20;
}
.o-achievement--hidden {
background-image: url("../images/achhidden.png");
background-color: #555;
border-color: black;
}
.o-achievement--blink {
animation: a-achievement--blink 2s step-start 0s infinite;
}
@keyframes a-achievement--blink {
50% {
visibility: hidden;
}
}
/*#region themes*/
/*#region t-dark*/
.t-dark .o-achievement--unlocked {
background-color: #43a047;
}
/*#endregion t-dark*/
/*#region t-dark-metro*/
.t-dark-metro .o-achievement {
border-width: 1px;
}
.t-dark-metro .o-achievement--unlocked {
background-color: #4caf50;
border-color: #388e3c;
}
.t-dark-metro .o-achievement--locked {
background-color: #9e9e9e;
}
/*#endregion t-dark-metro*/
/*#region t-metro t-inverted-metro t-s8*/
.t-metro .o-achievement,
2019-05-16 05:02:10 +00:00
.t-dark-metro .o-achievement,
.t-inverted-metro .o-achievement,
.t-s8 .o-achievement {
border-width: 1px;
2019-05-16 05:02:10 +00:00
border-radius: 0;
}
.t-metro .o-achievement--unlocked,
.t-inverted-metro .o-achievement--unlocked,
.t-s8 .o-achievement--unlocked {
background-color: #66bb6a;
border-color: #43a047;
}
.t-metro .o-achievement--locked,
.t-inverted-metro .o-achievement--locked,
.t-s8 .o-achievement--locked {
background-color: #9e9e9e;
}
/*#endregion t-metro t-dark-metro t-s8*/
/*#region t-s1*/
.t-s1 .o-achievement--unlocked {
background-color: #dbd242;
border-color: #c5ba26;
}
/*#endregion t-s1*/
/*#region t-s2*/
.t-s2 .o-achievement--locked {
background-color: rgba(0, 0, 0, 0);
}
/*#endregion t-s2*/
/*#region t-s5*/
.t-s5 .o-achievement--unlocked {
border-color: #bbb;
}
.t-s5 .o-achievement--locked {
border-color: #000;
background-color: #222;
}
/*#endregion t-s5*/
/*#region t-s6*/
.t-s6 .o-achievement--unlocked {
background-color: #43a047;
}
/*#endregion t-s6*/
/*#region t-s7*/
.t-s7 .o-achievement--unlocked {
background-color: #bbbbbb;
border-color: #666;
}
.t-s7 .o-achievement--locked {
background-color: #555;
border-color: #111;
}
/*#endregion t-s7*/
/*#endregion themes*/
/*#endregion o-achievement*/
/*#region c-achievements-tab*/
.l-achievements-tab {
display: flex;
flex-direction: column;
align-items: center;
}
.c-achievements-tab__header {
font-size: 1.6rem;
margin-top: 0.6rem;
position: relative;
display: flex;
flex-direction: row;
justify-content: center;
user-select: none;
}
.t-s4 .c-achievements-tab__header::after {
content: "you can click the period at the end of this in any other theme to turn on these achievement images";
font-size: 0.8rem;
position: absolute;
margin-left: 32.5rem;
width: 19rem;
}
.c-achievements-tab__timer {
color: black;
font-size: 1.2rem;
width: 40%;
margin: 0.5rem auto;
}
.t-dark .c-achievements-tab__timer,
.t-dark-metro .c-achievements-tab__timer,
.t-s6 .c-achievements-tab__timer {
color: #757575;
}
/*#endregion c-achievements-tab*/
/*#region achievement-grid*/
.l-achievement-grid {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 1rem;
}
.l-achievement-grid__row {
display: flex;
flex-direction: row;
}
.l-achievement-grid__cell {
margin: 0.5rem 0.8rem;
}
.c-achievement-grid__row--completed {
background-color: #007308;
border-radius: 10px;
}
.t-metro .c-achievement-grid__row--completed,
.t-dark-metro .c-achievement-grid__row--completed,
.t-inverted-metro .c-achievement-grid__row--completed,
.t-s8 .c-achievement-grid__row--completed {
background-color: #1b5e20;
border-radius: 0;
}
.t-s1 .c-achievement-grid__row--completed {
background-color: #9a921d;
}
.t-s7 .c-achievement-grid__row--completed {
background-color: #aaa;
}
/*#endregion achievement-grid*/
/*#endregion Achievements*/
/*#region Challenges*/
/*#region l-challenges-tab*/
.l-challenges-tab {
2019-07-25 12:52:03 +00:00
display: flex;
flex-direction: column;
align-items: center;
}
.l-challenges-tab__header {
margin: 0.5rem 0;
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
.o-challenges-tab__header-toggle {
cursor: pointer;
user-select: none;
display: inline-flex;
flex-direction: row;
align-items: center;
justify-content: flex-start;
2020-04-29 22:04:57 +00:00
margin: 0 1rem;
}
.l-challenges-tab__auto-ec-info {
left: 100%;
display: flex;
flex-direction: row;
align-items: center;
white-space: nowrap;
}
.c-challenges-tab__auto-ec-info {
font-weight: bold;
text-align: left;
}
.l-challenges-tab__auto-ec-timers {
margin-left: 0.4rem;
display: flex;
flex-direction: column;
}
/*#endregion l-challenges-tab*/
/*#region l-challenge-grid*/
.l-challenge-grid {
width: 90rem;
display: flex;
flex-direction: row;
justify-content: center;
flex-wrap: wrap;
}
.l-challenge-grid__cell {
margin: 0.8rem 1rem;
}
.l-challenge-grid__cell--hidden {
display: none;
}
/*#endregion l-challenge-grid*/
/*#region c-challenge-box*/
.c-challenge-box {
width: 39rem;
height: 13rem;
2020-04-21 03:54:13 +00:00
padding: 0.5rem 0.4rem;
box-sizing: border-box;
font-weight: bold;
border: 0.2rem solid black;
border-radius: 0.5rem;
font-size: 1rem;
transition: all 0.2s, visibility 0s;
}
.c-challenge-box--normal {
color: black;
font-size: 1.05rem;
background-color: #f2f2f2;
}
.c-challenge-box--infinity {
height: 16rem;
color: white;
background-color: #181818;
}
.c-challenge-box--eternity {
2020-04-26 04:26:47 +00:00
height: 18rem;
color: var(--color-eternity);
background-color: black;
border: 0.3rem solid var(--color-eternity);
border-radius: 1rem;
}
.c-challenge-box__reward-description--small-text {
font-size: .95rem;
}
/*#region themes*/
/*#region t-dark*/
.t-dark .c-challenge-box--normal {
background-color: #455a64;
}
/*#endregion t-dark*/
/*#region t-metro t-dark-metro t-inverted-metro t-s8*/
.t-metro .c-challenge-box,
.t-dark-metro .c-challenge-box,
.t-inverted-metro .c-challenge-box,
.t-s8 .c-challenge-box {
border-radius: 0;
border: 0.1rem solid;
}
.t-metro .c-challenge-box--normal,
.t-dark-metro .c-challenge-box--normal,
.t-inverted-metro .c-challenge-box--normal,
.t-s8 .c-challenge-box--normal {
border-color: black;
}
.t-metro .c-challenge-box--infinity,
.t-dark-metro .c-challenge-box--infinity,
.t-inverted-metro .c-challenge-box--infinity,
.t-s8 .c-challenge-box--infinity {
border-color: var(--color-infinity);
}
.t-metro .c-challenge-box--eternity,
.t-dark-metro .c-challenge-box--eternity,
.t-inverted-metro .c-challenge-box--eternity,
.t-s8 .c-challenge-box--eternity {
border-color: var(--color-eternity);
}
.t-dark-metro .c-challenge-box--normal {
background-color: #455a64;
}
/*#endregion t-metro t-dark-metro t-inverted-metro*/
/*#region t-s1*/
.t-s1 .c-challenge-box--normal,
.t-s1 .c-challenge-box--infinity {
background-color: #dbd242;
}
/*#endregion t-s1*/
2019-09-04 20:52:36 +00:00
/*#region t-s2*/
.t-s2 .c-challenge-box--normal {
color: white;
}
/*#endregion t-s2*/
/*#region t-s6*/
.t-s6 .c-challenge-box--normal,
.t-s6 .c-challenge-box--infinity {
background-color: black;
border: 0.1rem solid;
}
.t-s6 .c-challenge-box--normal {
color: #e0e0e0;
border-color: grey;
}
.t-s6 .c-challenge-box--infinity {
border-color: white;
}
/*#endregion t-s6*/
/*#region t-s7*/
.t-s7 .c-challenge-box {
color: black;
border: 0.1rem solid #9b9b9b;
background: white;
}
/*#endregion t-s7*/
/*#endregion themes*/
/*#endregion c-challenge-box*/
/*#region l-challenge-box*/
.l-challenge-box {
margin-top: 0.5rem;
display: flex;
flex-direction: column;
justify-content: space-between;
align-items: center;
/* because of hint-text */
position: relative;
}
.l-challenge-box > * {
flex-shrink: 0;
}
.l-challenge-box__fill {
flex-grow: 1;
}
.l-challenge-box__bottom--infinity {
display: flex;
flex-direction: column;
justify-content: flex-end;
align-items: center;
height: 5.5rem;
}
/*#endregion l-challenge-box*/
/*#region o-challenge-btn*/
.o-challenge-btn {
width: 15rem;
height: 3rem;
font-family: Typewriter, serif;
font-weight: bold;
border: 0.3rem solid #127a20;
border-radius: 1rem;
font-size: 1.2rem;
margin-bottom: 0.5rem;
transition: all 0.2s, visibility 0s;
cursor: pointer;
}
.o-challenge-btn--unlocked {
color: black;
background-color: #f2f2f2;
}
.o-challenge-btn--unlocked:hover,
.o-challenge-btn--completed {
color: white;
background-color: var(--color-good);
}
.o-challenge-btn--unenterable {
cursor: default;
}
.o-challenge-btn--running {
color: white;
background-color: #1f1f1f;
}
.o-challenge-btn--locked {
color: black;
background-color: #5c5c5c;
border-color: #881d1d;
}
.o-challenge-btn--redo {
color: white;
background-color: #17a32e;
}
/*#region themes*/
/*#region t-dark*/
.t-dark .o-challenge-btn--unlocked {
background-color: #546e7a;
}
.t-dark .o-challenge-btn--unlocked:hover,
.t-dark .o-challenge-btn--completed {
background-color: #43a047;
}
.t-dark .o-challenge-btn--completed {
box-shadow: none;
border-color: #388e3c;
}
.t-dark .o-challenge-btn--running {
background-color: #263238;
}
.t-dark .o-challenge-btn--locked {
background-color: #23292a;
border-color: #b84b5f;
}
.t-dark .o-challenge-btn--redo {
background-color: #58da5e;
border-color: #b84b5f;
}
/*#endregion t-dark*/
/*#region t-metro t-dark-metro t-inverted-metro t-s8*/
.t-metro .o-challenge-btn,
.t-dark-metro .o-challenge-btn,
.t-inverted-metro .o-challenge-btn,
.t-s8 .o-challenge-btn {
border-radius: 0;
}
.t-metro .o-challenge-btn--unlocked,
.t-metro .o-challenge-btn--completed,
.t-dark-metro .o-challenge-btn--unlocked,
.t-dark-metro .o-challenge-btn--completed,
.t-inverted-metro .o-challenge-btn--unlocked,
.t-inverted-metro .o-challenge-btn--completed,
.t-s8 .o-challenge-btn--unlocked,
.t-s8 .o-challenge-btn--completed {
border: 0.3rem solid #43a047;
border-bottom-color: #388e3c;
border-right-color: #388e3c;
}
.t-metro .o-challenge-btn--unlocked:hover,
.t-metro .o-challenge-btn--completed,
.t-inverted-metro .o-challenge-btn--unlocked:hover,
.t-inverted-metro .o-challenge-btn--completed,
.t-s8 .o-challenge-btn--unlocked:hover,
.t-s8 .o-challenge-btn--completed {
background-color: #66bb6a;
}
.t-dark-metro .o-challenge-btn--unlocked:hover,
.t-dark-metro .o-challenge-btn--completed {
background-color: #43a047;
}
.t-metro .o-challenge-btn--locked,
.t-dark-metro .o-challenge-btn--locked,
.t-inverted-metro .o-challenge-btn--locked,
.t-s8 .o-challenge-btn--locked {
background-color: #9e9e9e;
border: 0.3rem solid #757575;
border-bottom-color: #616161;
border-right-color: #616161;
}
.t-metro .o-challenge-btn--redo,
.t-inverted-metro .o-challenge-btn--redo,
.t-s8 .o-challenge-btn--redo {
background-color: #4b8a4e;
border: 0.3rem solid #757575;
border-bottom-color: #616161;
border-right-color: #616161;
}
/*#endregion t-metro t-dark-metro t-inverted-metro t-s8*/
/*#region t-s1*/
.t-s1 .o-challenge-btn--unlocked {
color: white;
background: none;
border: 0.3rem solid #507751;
}
.t-s1 .o-challenge-btn--unlocked:hover,
.t-s1 .o-challenge-btn--completed {
background-color: #639565;
}
/*#endregion t-s1*/
/*#region t-s6*/
.t-s6 .o-challenge-btn {
border-color: #388e3c;
}
.t-s6 .o-challenge-btn--unlocked {
color: white;
background-color: black;
}
.t-s6 .o-challenge-btn--unlocked:hover,
.t-s6 .o-challenge-btn--completed {
background-color: #43a047;
}
.t-s6 .o-challenge-btn--completed {
box-shadow: none;
}
.t-s6 .o-challenge-btn--running {
background: #263238;
}
.t-s6 .o-challenge-btn--locked {
color: grey;
background: black;
border-color: #b84b5f;
}
.t-s6 .o-challenge-btn--redo {
background-color: #2a682d;
border-color: #b84b5f;
}
/*#endregion t-s6*/
/*#endregion themes*/
/*#endregion o-challenge-btn*/
/*#endregion Challenges*/
/*#region infinity-tab*/
.c-infinity-tab__header {
font-size: 1.5rem;
margin: 1.5rem 0;
}
.c-infinity-tab__infinity-points {
color: var(--color-infinity);
}
/*#region themes*/
/*#region t-dark t-s6*/
.t-dark .c-infinity-tab__infinity-points,
.t-s6 .c-infinity-tab__infinity-points {
color: white;
text-shadow: 0 0 0.7rem;
}
/*#endregion t-dark t-s6*/
/*#region t-s1*/
.t-s1 .c-infinity-tab__infinity-points {
text-shadow: 0.1rem 0.1rem 0 black;
}
/*#endregion t-s1*/
/*#endregion themes*/
/*#endregion infinity-tab*/
/*#region Infinity Upgrades*/
/*#region l-infinity-upgrades-tab*/
.l-infinity-upgrades-tab {
display: flex;
flex-direction: column;
align-items: center;
}
.l-infinity-upgrades-tab__grid {
margin-top: 1.5rem;
}
.l-infinity-upgrades-tab__mult-btn {
margin: 0.5rem 0.8rem;
}
/*#endregion l-infinity-upgrades-tab*/
/*#region l-infinity-upgrade-grid*/
.l-infinity-upgrade-grid {
display: flex;
flex-direction: row;
}
.l-infinity-upgrade-grid__column {
display: flex;
flex-direction: column;
}
.l-infinity-upgrade-grid__cell {
margin: 0.5rem 0.8rem;
}
/*#endregion l-infinity-upgrade-grid*/
.l-infinity-upgrades-bottom-row {
display: flex;
margin-top: 1rem;
}
/*#region o-infinity-upgrade-btn*/
.o-infinity-upgrade-btn {
color: white;
background-color: #1f1f1f;
font-weight: bold;
font-size: 1rem;
border: 0.1rem solid #ed85df;
width: 19rem;
height: 9rem;
transition-duration: 0.2s;
border-radius: 0.4rem;
font-family: Typewriter, serif;
cursor: pointer;
}
.t-metro .o-infinity-upgrade-btn,
.t-dark-metro .o-infinity-upgrade-btn,
.t-inverted-metro .o-infinity-upgrade-btn,
.t-s8 .o-infinity-upgrade-btn {
border-radius: 0;
}
.t-dark .o-infinity-upgrade-btn,
.t-metro .o-infinity-upgrade-btn,
.t-dark-metro .o-infinity-upgrade-btn,
.t-inverted-metro .o-infinity-upgrade-btn,
.t-s1 .o-infinity-upgrade-btn,
.t-s6 .o-infinity-upgrade-btn,
.t-s8 .o-infinity-upgrade-btn {
border-color: black;
}
.t-dark .o-infinity-upgrade-btn {
color: black;
background-color: whitesmoke;
}
.t-s6 .o-infinity-upgrade-btn {
color: white;
background-color: black;
2020-05-06 04:00:27 +00:00
box-shadow: 0 0 0.7rem 0.2rem #111111;
}
.o-infinity-upgrade-btn:hover {
color: black;
}
/*#region o-infinity-upgrade-btn--available*/
.o-infinity-upgrade-btn--available:hover {
background-color: #a53b98;
}
.t-dark .o-infinity-upgrade-btn--available:hover,
.t-s6 .o-infinity-upgrade-btn--available:hover {
background-color: #6200ea;
}
.t-metro .o-infinity-upgrade-btn--available:hover,
.t-dark-metro .o-infinity-upgrade-btn--available:hover,
.t-inverted-metro .o-infinity-upgrade-btn--available:hover,
.t-s8 .o-infinity-upgrade-btn--available:hover {
background-color: #9c27b0;
}
/*#endregion o-infinity-upgrade-btn--available*/
/*#region o-infinity-upgrade-btn--color-2*/
.o-infinity-upgrade-btn--color-2.o-infinity-upgrade-btn--available:hover {
background-color: #ff3300;
}
.t-dark .o-infinity-upgrade-btn--color-2.o-infinity-upgrade-btn--available:hover,
.t-s6 .o-infinity-upgrade-btn--color-2.o-infinity-upgrade-btn--available:hover {
background-color: #d50000;
}
.t-metro .o-infinity-upgrade-btn--color-2.o-infinity-upgrade-btn--available:hover,
.t-dark-metro .o-infinity-upgrade-btn--color-2.o-infinity-upgrade-btn--available:hover,
.t-inverted-metro .o-infinity-upgrade-btn--color-2.o-infinity-upgrade-btn--available:hover,
.t-s8 .o-infinity-upgrade-btn--color-2.o-infinity-upgrade-btn--available:hover {
background-color: #f44336;
}
/*#endregion o-infinity-upgrade-btn--color-2*/
/*#region o-infinity-upgrade-btn--color-3*/
.o-infinity-upgrade-btn--color-3.o-infinity-upgrade-btn--available:hover {
background-color: #c6d50d;
}
.t-dark .o-infinity-upgrade-btn--color-3.o-infinity-upgrade-btn--available:hover,
.t-s6 .o-infinity-upgrade-btn--color-3.o-infinity-upgrade-btn--available:hover {
background-color: #ffd600;
}
.t-metro .o-infinity-upgrade-btn--color-3.o-infinity-upgrade-btn--available:hover,
.t-dark-metro .o-infinity-upgrade-btn--color-3.o-infinity-upgrade-btn--available:hover,
.t-inverted-metro .o-infinity-upgrade-btn--color-3.o-infinity-upgrade-btn--available:hover,
.t-s8 .o-infinity-upgrade-btn--color-3.o-infinity-upgrade-btn--available:hover {
background-color: #ffeb3b;
}
/*#endregion o-infinity-upgrade-btn--color-3*/
/*#region o-infinity-upgrade-btn--color-4*/
.o-infinity-upgrade-btn--color-4.o-infinity-upgrade-btn--available:hover {
background-color: #0cfec5;
}
.t-dark .o-infinity-upgrade-btn--color-4.o-infinity-upgrade-btn--available:hover,
.t-s6 .o-infinity-upgrade-btn--color-4.o-infinity-upgrade-btn--available:hover {
background-color: #00e5ff;
}
.t-metro .o-infinity-upgrade-btn--color-4.o-infinity-upgrade-btn--available:hover,
.t-dark-metro .o-infinity-upgrade-btn--color-4.o-infinity-upgrade-btn--available:hover,
.t-inverted-metro .o-infinity-upgrade-btn--color-4.o-infinity-upgrade-btn--available:hover,
.t-s8 .o-infinity-upgrade-btn--color-4.o-infinity-upgrade-btn--available:hover {
background-color: #00bcd4;
}
/*#endregion o-infinity-upgrade-btn--color-4*/
/*#region o-infinity-upgrade-btn--multiplier*/
.o-infinity-upgrade-btn--multiplier.o-infinity-upgrade-btn--available {
color: #c93a3a;
border-color: #17b3b5;
}
.o-infinity-upgrade-btn--multiplier.o-infinity-upgrade-btn--available:hover {
color: black;
background-color: #e0d8e0;
}
.t-dark .o-infinity-upgrade-btn--multiplier.o-infinity-upgrade-btn--available,
.t-s6 .o-infinity-upgrade-btn--multiplier.o-infinity-upgrade-btn--available {
background-color: #1f1f1f;
}
.t-dark .o-infinity-upgrade-btn--multiplier.o-infinity-upgrade-btn--available:hover,
.t-s6 .o-infinity-upgrade-btn--multiplier.o-infinity-upgrade-btn--available:hover {
color: white;
}
.t-metro .o-infinity-upgrade-btn--multiplier.o-infinity-upgrade-btn--available,
.t-dark-metro .o-infinity-upgrade-btn--multiplier.o-infinity-upgrade-btn--available,
.t-inverted-metro .o-infinity-upgrade-btn--multiplier.o-infinity-upgrade-btn--available,
.t-s8 .o-infinity-upgrade-btn--multiplier.o-infinity-upgrade-btn--available {
color: #e53935;
border-color: #00bcd4;
}
.t-metro .o-infinity-upgrade-btn--multiplier.o-infinity-upgrade-btn--available:hover,
.t-dark-metro .o-infinity-upgrade-btn--multiplier.o-infinity-upgrade-btn--available:hover,
.t-inverted-metro .o-infinity-upgrade-btn--multiplier.o-infinity-upgrade-btn--available:hover,
.t-s8 .o-infinity-upgrade-btn--multiplier.o-infinity-upgrade-btn--available:hover {
color: black;
background-color: #00bcd4;
border-color: black;
}
.t-s1 .o-infinity-upgrade-btn--multiplier.o-infinity-upgrade-btn--available {
background-color: black;
color: #d72621;
border-color: #dbd242;
}
.t-s1 .o-infinity-upgrade-btn--multiplier.o-infinity-upgrade-btn--available:hover {
background-color: white;
color: black;
}
/*#endregion o-infinity-upgrade-btn--multiplier*/
/*#region o-infinity-upgrade-btn--unavailable*/
.o-infinity-upgrade-btn--unavailable {
color: black;
background-color: #f7f7f7;
}
.o-infinity-upgrade-btn--unavailable:hover {
background-color: white;
}
.t-dark .o-infinity-upgrade-btn--unavailable {
background-color: #263238;
border-color: black;
}
.t-dark .o-infinity-upgrade-btn--unavailable:hover {
background-color: #37474F;
}
.t-metro .o-infinity-upgrade-btn--unavailable,
.t-dark-metro .o-infinity-upgrade-btn--unavailable,
.t-inverted-metro .o-infinity-upgrade-btn--unavailable,
.t-s8 .o-infinity-upgrade-btn--unavailable {
background-color: #9e9e9e;
border-color: #616161;
}
.t-metro .o-infinity-upgrade-btn--unavailable:hover,
.t-dark-metro .o-infinity-upgrade-btn--unavailable:hover,
.t-inverted-metro .o-infinity-upgrade-btn--unavailable:hover,
.t-s8 .o-infinity-upgrade-btn--unavailable:hover {
background-color: #bdbdbd;
}
.t-s1 .o-infinity-upgrade-btn--unavailable {
background-color: #9a921d;
border-color: black;
}
.t-s1 .o-infinity-upgrade-btn--unavailable:hover {
background-color: #c5ba26;
}
2019-09-04 20:52:36 +00:00
.t-s6 .o-infinity-upgrade-btn--unavailable {
color: grey;
background-color: black;
border-color: grey;
}
2019-09-04 20:52:36 +00:00
.t-s6 .o-infinity-upgrade-btn--unavailable:hover {
background-color: #222;
}
/*#endregion o-infinity-upgrade-btn--unavailable*/
/*#region o-infinity-upgrade-btn--bought*/
.o-infinity-upgrade-btn--bought {
color: black;
background-color: var(--color-good);
cursor: default;
}
.t-dark .o-infinity-upgrade-btn--bought,
.t-dark-metro .o-infinity-upgrade-btn--bought,
.t-s6 .o-infinity-upgrade-btn--bought{
background-color: #43a047;
border-color: black;
}
/*#endregion o-infinity-upgrade-btn--bought*/
.o-infinity-upgrade-btn--chargeable {
background-color: #25e8e6;
2020-03-29 22:23:50 +00:00
animation: a-charged-infinity-upgrade-glow 2s infinite;
}
@keyframes a-charged-infinity-upgrade-glow {
0% { box-shadow: inset 0 0 2rem 0}
13% { box-shadow: inset 0 0 2rem 0.15rem}
25% { box-shadow: inset 0 0 2rem 0.4rem}
38% { box-shadow: inset 0 0 2rem 0.65rem}
50% { box-shadow: inset 0 0 2rem 0.8rem}
63% { box-shadow: inset 0 0 2rem 0.65rem}
75% { box-shadow: inset 0 0 2rem 0.4rem}
88% { box-shadow: inset 0 0 2rem 0.15rem}
100% { box-shadow: inset 0 0 2rem 0}
}
.o-infinity-upgrade-btn--charged {
background-color: #25e8e6;
2020-05-06 04:00:27 +00:00
}
.t-dark .o-infinity-upgrade-btn--charged,
.t-s6 .o-infinity-upgrade-btn--charged {
background-color: #25e8e6;
}
/*#endregion o-infinity-upgrade-btn*/
/*#endregion Infinity Upgrades*/
/*#region Autobuyers*/
/*#region l-autobuyers-tab*/
.l-autobuyers-tab {
display: flex;
flex-direction: column;
align-items: center;
}
2020-04-12 21:14:48 +00:00
.l-autobuyers-tab td {
padding: 0;
text-align: center;
}
/*#endregion l-autobuyers-tab*/
/*#region l-autobuyer-grid*/
.l-autobuyer-grid {
display: flex;
flex-direction: column;
}
.l-autobuyer-grid__row {
display: flex;
flex-direction: row;
justify-content: center;
}
/*#endregion l-autobuyer-grid*/
/*#region o-autobuyer-input*/
.o-autobuyer-input {
2020-04-18 18:35:00 +00:00
font-size: 1.3rem;
font-family: typewriter;
border: 0.1rem solid #c2c2c2;
padding: 0.5rem;
height: 3rem;
box-sizing: border-box;
}
2020-04-18 19:15:05 +00:00
.t-metro .o-autobuyer-input {
color: black;
border: 0.1rem solid #A9A9A9;
}
2020-04-18 18:35:00 +00:00
.t-dark .o-autobuyer-input,
.t-dark-metro .o-autobuyer-input {
2019-04-17 20:54:36 +00:00
background-color: #455A64;
border: 0.1rem solid black;
}
2020-04-18 18:35:00 +00:00
.t-s1 .o-autobuyer-input {
background-color: var(--color-base);
border: 0.1rem solid black;
2020-04-18 18:35:00 +00:00
}
.t-s6 .o-autobuyer-input {
color: white;
background-color: black;
border: 0.1rem solid #888;
}
.o-autobuyer-input--invalid {
background-color: var(--color-bad);
}
.t-dark .o-autobuyer-input--invalid,
.t-dark-metro .o-autobuyer-input--invalid,
.t-s1 .o-autobuyer-input--invalid,
.t-s6 .o-autobuyer-input--invalid {
background-color: var(--color-bad);
2019-04-17 20:54:36 +00:00
}
/*#endregion o-autobuyer-input*/
/*#region o-autobuyer-toggle-checkbox*/
.o-autobuyer-toggle-checkbox {
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
user-select: none;
}
.o-autobuyer-toggle-checkbox__label {
2020-04-12 21:14:48 +00:00
display: flex;
justify-content: center;
align-items: center;
background: var(--color-bad);
font-size: 1rem;
height: 2rem;
width: 2rem;
border: 0.2rem solid #383232;
border-top-right-radius: 0.3rem;
border-bottom-left-radius: 1rem;
color: black;
2020-04-12 12:05:55 +00:00
font-weight: bold;
cursor: pointer;
2020-04-12 12:09:13 +00:00
user-select: none;
2020-04-12 21:14:48 +00:00
transition-duration: 0.2s;
}
2020-04-18 05:41:52 +00:00
.t-metro .o-autobuyer-toggle-checkbox__label,
.t-inverted-metro .o-autobuyer-toggle-checkbox__label,
.t-s8 .o-autobuyer-toggle-checkbox__label {
border: 0.1rem solid black;
border-radius: 0;
}
.t-dark .o-autobuyer-toggle-checkbox__label {
border-color: var(--color-base);
}
.t-dark-metro .o-autobuyer-toggle-checkbox__label {
border: 0.1rem solid var(--color-base);
border-radius: 0;
}
2020-04-18 18:35:00 +00:00
.t-s1 .o-autobuyer-toggle-checkbox__label {
border-color: black;
}
2020-04-18 05:41:52 +00:00
.t-s6 .o-autobuyer-toggle-checkbox__label {
border: 0.1rem solid #888;
}
2020-04-12 21:14:48 +00:00
.o-autobuyer-toggle-checkbox__label:hover {
transform: scale(1.1) translate(-0.1rem, 0.1rem);
2020-04-12 12:05:55 +00:00
}
.l-autobuyer-box__footer input {
display: none;
}
.o-autobuyer-toggle-checkbox__label--active {
2020-04-12 21:14:48 +00:00
background: var(--color-good);
}
.o-autobuyer-toggle-checkbox__label--disabled {
opacity: 0.6;
}
/*#endregion o-autobuyer-toggle-checkbox*/
/*#region o-autobuyer-btn*/
.o-autobuyer-btn {
2020-04-12 12:05:55 +00:00
width: 16rem;
height: 3.5rem;
color: white;
background: #1f1f1f;
border: 0.1rem solid #ed85df;
font-family: Typewriter, serif;
font-weight: bold;
font-size: 0.8rem;
border-radius: 0.4rem;
margin-bottom: -0.1rem;
transition-duration: 0.2s;
cursor: pointer;
}
.o-autobuyer-btn:hover {
color: black;
background-color: var(--color-infinity);
border-color: var(--color-infinity);
}
.t-dark .o-autobuyer-btn,
.t-s6 .o-autobuyer-btn {
box-shadow: none;
}
.t-dark .o-autobuyer-btn {
color: black;
border-color: black;
2019-04-17 20:54:36 +00:00
background: #455A64;
}
.t-dark .o-autobuyer-btn:hover {
background: var(--color-infinity);
}
.t-dark-metro .o-autobuyer-btn,
.t-s1 .o-autobuyer-btn,
.t-s6 .o-autobuyer-btn {
border-color: var(--color-infinity);
}
.t-metro .o-autobuyer-btn,
.t-dark-metro .o-autobuyer-btn,
.t-inverted-metro .o-autobuyer-btn,
.t-s8 .o-autobuyer-btn {
border-radius: 0;
}
.t-metro .o-autobuyer-btn,
.t-inverted-metro .o-autobuyer-btn,
.t-s8 .o-autobuyer-btn {
border-color: #e91e63;
}
.t-metro .o-autobuyer-btn:hover,
.t-inverted-metro .o-autobuyer-btn:hover,
.t-s8 .o-autobuyer-btn:hover {
border-color: var(--color-infinity);
}
.t-s6 .o-autobuyer-btn {
color: white;
background-color: black;
}
/*#endregion o-autobuyer-btn*/
/*#region autobuyer-box*/
.c-autobuyer-box {
width: 23rem;
height: 17.5rem;
padding: 1rem;
border: solid 0.1rem grey;
border-radius: 0.4rem;
font-size: 1.1rem;
}
.t-metro .c-autobuyer-box,
.t-dark-metro .c-autobuyer-box,
.t-inverted-metro .c-autobuyer-box,
.t-s8 .c-autobuyer-box {
border-radius: 0;
}
.t-s1 .c-autobuyer-box {
color: black;
border-color: black;
background-color: #dbd242;
}
.t-s5 .c-autobuyer-box {
background: #ddd;
}
.t-s8 .c-autobuyer-box {
border-color: black;
}
.c-autobuyer-box__small-text {
font-size: 0.9rem;
2020-04-18 18:35:00 +00:00
height: 1.7rem;
vertical-align: text-bottom;
}
.c-autobuyer-box__mode-select {
font-family: Typewriter, serif;
2020-04-18 18:35:00 +00:00
font-size: 1.2rem;
2020-04-18 05:41:52 +00:00
color: black;
text-align: center;
text-align-last: center;
2020-04-18 18:35:00 +00:00
height: 3rem;
}
2020-04-18 19:15:05 +00:00
.t-metro .c-autobuyer-box__mode-select {
color: black;
border: 0.1rem solid #A9A9A9;
}
2020-04-18 05:41:52 +00:00
.t-dark .c-autobuyer-box__mode-select,
.t-dark-metro .c-autobuyer-box__mode-select {
color: black;
background-color: #455A64;
border: 0.1rem solid black;
}
2020-04-18 18:35:00 +00:00
.t-s1 .c-autobuyer-box__mode-select {
background-color: var(--color-base);
border: 0.1rem solid black;
}
2020-04-18 05:41:52 +00:00
.t-s6 .c-autobuyer-box__mode-select {
color: white;
background-color: black;
border: 0.1rem solid #888;
}
.l-autobuyer-box {
display: flex;
flex-direction: column;
align-items: center;
margin: 0.5rem 0.8rem;
}
2020-04-18 05:41:52 +00:00
.c-autobuyer-box-row {
2020-04-12 21:14:48 +00:00
display: flex;
justify-content: center;
align-items: center;
position: relative;
2020-04-12 12:05:55 +00:00
border: .2rem solid #383232;
border-radius: .5rem;
margin: .5rem;
padding: 1rem;
width: 90rem;
2020-04-12 12:05:55 +00:00
}
2020-04-18 05:41:52 +00:00
.t-metro .c-autobuyer-box-row,
.t-inverted-metro .c-autobuyer-box-row,
.t-s8 .c-autobuyer-box-row {
color: black;
border: 0.1rem solid black;
border-radius: 0;
}
.t-dark .c-autobuyer-box-row {
color: var(--color-text);
border-color: var(--color-base);
}
.t-dark-metro .c-autobuyer-box-row {
color: var(--color-text);
border: 0.1rem solid var(--color-base);
border-radius: 0;
}
2020-04-18 18:35:00 +00:00
.t-s1 .c-autobuyer-box-row {
border-color: black;
background: var(--color-base);
}
2020-04-18 05:41:52 +00:00
.t-s6 .c-autobuyer-box-row {
color: white;
border: 0.1rem solid #888;
background: black;
}
.t-s8 .c-autobuyer-box-row {
background: white;
}
.l-autobuyer-box__header {
2020-04-12 12:05:55 +00:00
width: 25%;
}
.c-autobuyer-box-row__intervalSlot {
2020-04-12 21:14:48 +00:00
width: 25%;
2020-04-12 12:05:55 +00:00
}
.c-autobuyer-box-row__toggleSlot {
2020-04-12 21:14:48 +00:00
width: 25%;
2020-04-12 12:05:55 +00:00
}
.c-autobuyer-box-row__prioritySlot {
2020-04-12 21:14:48 +00:00
width: 25%;
}
2019-07-19 16:46:18 +00:00
.l-autobuyer-box__content {
flex: 1 0 auto;
display: flex;
flex-direction: column;
justify-content: space-evenly;
align-items: center;
}
.l-autobuyer-box__footer {
2020-04-12 21:14:48 +00:00
position: absolute;
top: -0.2rem;
right: 1.8rem;
width: 0%;
2019-07-19 16:46:18 +00:00
}
2020-04-18 05:41:52 +00:00
.t-metro .l-autobuyer-box__footer,
.t-dark-metro .l-autobuyer-box__footer,
.t-inverted-metro .l-autobuyer-box__footer,
.t-s6 .l-autobuyer-box__footer,
.t-s7 .l-autobuyer-box__footer,
.t-s8 .l-autobuyer-box__footer {
top: -0.1rem;
right: 1.9rem;
}
.l-autobuyer-box__button {
flex-shrink: 0;
}
.l-autobuyer-box__fill {
flex-grow: 1;
}
.l-autobuyer-box__priority-selector {
margin-bottom: 0.5rem;
}
/*#endregion autobuyer-box*/
/*#endregion Autobuyers*/
/*#region Replicanti*/
.l-replicanti-tab {
display: flex;
flex-direction: column;
align-items: center;
/* To prevent button jitter*/
width: 100%;
}
/*#region c-replicanti-description*/
.c-replicanti-description {
font-size: 1.5rem;
}
.c-replicanti-description__accent {
font-size: 2.3rem;
color: black
}
2019-04-17 20:54:36 +00:00
.t-metro .c-replicanti-description__accent,
.t-dark .c-replicanti-description__accent,
.t-dark-metro .c-replicanti-description__accent,
2019-04-17 20:54:36 +00:00
.t-s6 .c-replicanti-description__accent,
.t-s8 .c-replicanti-description__accent {
color: #03a9f4;
}
2019-04-17 20:54:36 +00:00
.t-metro .c-replicanti-description__accent,
.t-s8 .c-replicanti-description__accent {
text-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.5), -0.1rem 0.1rem 0.1rem black;
2019-04-17 20:54:36 +00:00
}
.t-dark .c-replicanti-description__accent,
.t-s6 .c-replicanti-description__accent {
text-shadow: 0 0 0.7rem #03a9f4;
}
/*#endregion c-replicanti-description*/
.l-replicanti-upgrade-row {
display: flex;
flex-direction: row;
}
.l-replicanti-upgrade-button {
margin: 0.3rem;
}
/*#endregion Replicanti*/
/*#region Break Infinity*/
/*#region l-break-infinity-tab*/
.l-break-infinity-tab {
display: flex;
flex-direction: column;
align-items: center;
}
.l-break-infinity-tab__break-btn {
margin-top: 2rem;
}
.v-feel-eternity-btn {
background-color: #540c70;
animation: a-time-study 1.5s infinite;
}
.l-break-infinity-tab__grid {
margin-top: 1rem;
}
/*#endregion l-break-infinity-tab*/
/*#region l-break-infinity-upgrade-grid*/
.l-break-infinity-upgrade-grid {
display: flex;
flex-direction: column;
}
.l-break-infinity-upgrade-grid__row {
display: flex;
flex-direction: row;
}
.l-break-infinity-upgrade-grid__cell {
margin: 0.5rem 0.8rem;
}
/*#endregion l-break-infinity-upgrade-grid*/
/*#endregion Break Infinity*/
/*#region eternity-tab*/
.c-eternity-tab__header {
font-size: 1.5rem;
margin: 1.5rem 0;
}
.c-eternity-tab__eternity-points {
color: var(--color-eternity);
}
/*#region themes*/
/*#region t-dark t-s6*/
.t-dark .c-eternity-tab__eternity-points,
.t-s6 .c-eternity-tab__eternity-points {
text-shadow: 0 0 0.7rem;
}
/*#endregion t-dark t-s6*/
/*#region t-s1*/
.t-s1 .c-eternity-tab__eternity-points {
text-shadow: 0.1rem 0.1rem 0 black;
}
/*#endregion t-s1*/
/*#endregion themes*/
/*#endregion eternity-tab*/
/*#region Eternity Upgrades*/
.l-eternity-upgrades-grid {
display: flex;
flex-direction: column;
align-items: center;
margin-top: 1rem;
}
.l-eternity-upgrades-grid__row {
display: flex;
flex-direction: row;
}
.l-eternity-upgrades-grid__cell {
margin: 0.5rem 0.8rem;
}
.o-eternity-upgrade {
font-weight: bold;
font-size: 1rem;
border: 0.1rem solid var(--color-eternity);
width: 19rem;
height: 9rem;
transition-duration: 0.2s;
cursor: pointer;
border-radius: 0.4rem;
font-family: Typewriter, serif;
}
.o-eternity-upgrade--available {
color: var(--color-eternity);
background-color: black;
}
.o-eternity-upgrade--available:hover {
color: #511568;
background-color: white;
}
.o-eternity-upgrade--unavailable {
color: #181818;
background-color: #5f5f5f;
}
.o-eternity-upgrade--unavailable:hover {
background-color: #737373;
}
.o-eternity-upgrade--bought {
color: #511568;
background-color: var(--color-good);
cursor: default;
}
.t-metro .o-eternity-upgrade,
.t-dark-metro .o-eternity-upgrade,
.t-inverted-metro .o-eternity-upgrade,
.t-s8 .o-eternity-upgrade {
border-radius: 0;
}
.t-metro .o-eternity-upgrade--available {
box-shadow: 0.1rem 0.1rem 0.1rem 0 #9e9e9e;
}
.t-metro .o-eternity-upgrade--bought,
.t-dark-metro .o-eternity-upgrade--bought,
.t-inverted-metro .o-eternity-upgrade--bought,
.t-s8 .o-eternity-upgrade--bought {
color: black;
background-color: #673ab7;
border-color: black;
}
.t-metro .o-eternity-upgrade--unavailable,
.t-dark-metro .o-eternity-upgrade--unavailable,
.t-inverted-metro .o-eternity-upgrade--unavailable,
.t-s8 .o-eternity-upgrade--unavailable {
background-color: #9e9e9e;
border-color: black;
}
.t-metro .o-eternity-upgrade--unavailable:hover,
.t-dark-metro .o-eternity-upgrade--unavailable:hover,
.t-inverted-metro .o-eternity-upgrade--unavailable:hover,
.t-s8 .o-eternity-upgrade--unavailable:hover {
background-color: #bdbdbd;
}
.t-dark .o-eternity-upgrade--available,
.t-s6 .o-eternity-upgrade--available {
background-color: black;
}
.t-dark .o-eternity-upgrade--available:hover,
.t-s6 .o-eternity-upgrade--available:hover {
color: black;
background-color: white;
}
.t-dark .o-eternity-upgrade--unavailable {
color: black;
background-color: #263238;
border-color: #691fa5;
}
.t-dark .o-eternity-upgrade--unavailable:hover {
background-color: #37474f;
}
.t-s6 .o-eternity-upgrade--unavailable {
color: grey;
background-color: black;
border-color: #691fa5;
}
.t-s6 .o-eternity-upgrade--unavailable:hover {
background-color: #222222;
}
.t-dark .o-eternity-upgrade--bought,
.t-s6 .o-eternity-upgrade--bought {
color: #1e0830;
background-color: #8d48c3;
border-color: #691fa5;
}
.t-s1 .o-eternity-upgrade--available {
background-color: black;
}
.t-s1 .o-eternity-upgrade--available:hover {
color: black;
background-color: #639565;
border-color: black;
}
.t-s1 .o-eternity-upgrade--bought {
color: black;
background-color: #639565;
border-color: black;
}
.t-s1 .o-eternity-upgrade--unavailable {
color: black;
background-color: #4a4a4a;
border-color: #639565;
}
.t-s1 .o-eternity-upgrade--unavailable:hover {
background: #636363;
}
/*#endregion Eternity Upgrades*/
/*#region Eternity Milestones*/
.l-eternity-milestone-grid {
display: flex;
flex-direction: column;
align-items: center;
}
.l-eternity-milestone-grid__row {
display: flex;
flex-direction: row;
}
.l-eternity-milestone-grid__cell {
margin: 0.5rem 0.8rem;
}
.o-eternity-milestone__goal {
font-size: 2rem;
text-align: left;
}
.o-eternity-milestone__reward {
width: 25rem;
height: 6rem;
color: black;
font-weight: bold;
border: 0.1rem solid var(--color-eternity);
transition-duration: 0.2s;
border-radius: 0.4rem;
font-family: Typewriter, serif;
font-size: 1.2rem;
}
.o-eternity-milestone__reward--locked {
background-color: dimgrey;
}
.o-eternity-milestone__reward--reached {
background-color: var(--color-eternity);
border-color: black;
}
.o-eternity-milestone__reward--small-font {
font-size: 1.1rem;
}
.t-metro .o-eternity-milestone__reward,
.t-dark-metro .o-eternity-milestone__reward,
.t-inverted-metro .o-eternity-milestone__reward,
.t-s8 .o-eternity-milestone__reward {
border-radius: 0;
}
.t-metro .o-eternity-milestone__reward--locked,
.t-dark-metro .o-eternity-milestone__reward--locked,
.t-inverted-metro .o-eternity-milestone__reward--locked,
.t-s1 .o-eternity-milestone__reward--locked,
.t-s8 .o-eternity-milestone__reward--locked {
background-color: #9e9e9e;
box-shadow: 0.1rem 0.1rem 0.1rem 0 black;
border: none;
}
.t-dark .o-eternity-milestone__reward--locked,
.t-s6 .o-eternity-milestone__reward--locked {
color: var(--color-eternity);
background-color: black;
border-color: var(--color-eternity);
animation: a-time-study 7s infinite;
}
.l-eternity-milestone {
display: flex;
flex-direction: column;
}
/*#endregion Eternity Milestones*/
/*#region Dilation*/
.l-dilation-tab {
display: flex;
flex-direction: column;
align-items: center;
}
/*#region c-dilation-tab*/
.c-dilation-tab__tachyons {
color: black;
font-size: 3.5rem;
}
.c-dilation-tab__dilated-time {
color: black;
font-size: 3.5rem;
}
.c-dilation-tab__dilated-time-income {
color: black;
font-size: 2.5rem;
}
.c-dilation-tab__galaxy-threshold {
color: black;
font-size: 2.5rem;
}
.c-dilation-tab__galaxies {
color: black;
font-size: 2.5rem;
}
2019-04-17 20:54:36 +00:00
.t-metro .c-dilation-tab__tachyons,
.t-dark .c-dilation-tab__tachyons,
.t-dark-metro .c-dilation-tab__tachyons,
2019-04-17 20:54:36 +00:00
.t-s6 .c-dilation-tab__tachyons,
.t-s8 .c-dilation-tab__tachyons {
color: #64ddad;
}
.t-dark .c-dilation-tab__tachyons,
.t-s6 .c-dilation-tab__tachyons {
text-shadow: 0 0 0.7rem #64ddad;
}
2019-04-17 20:54:36 +00:00
.t-metro .c-dilation-tab__tachyons,
.t-metro .c-dilation-tab__dilated-time,
.t-metro .c-dilation-tab__dilated-time-income,
.t-metro .c-dilation-tab__galaxy-threshold,
.t-metro .c-dilation-tab__galaxies,
.t-s8 .c-dilation-tab__tachyons,
.t-s8 .c-dilation-tab__dilated-time,
.t-s8 .c-dilation-tab__dilated-time-income,
.t-s8 .c-dilation-tab__galaxy-threshold,
.t-s8 .c-dilation-tab__galaxies {
text-shadow: 0 0 0.1rem rgba(0, 0, 0, 0.5), -0.1rem 0.1rem 0.1rem black;
2019-04-17 20:54:36 +00:00
}
.t-metro .c-dilation-tab__dilated-time,
.t-metro .c-dilation-tab__dilated-time-income,
.t-metro .c-dilation-tab__galaxy-threshold,
.t-metro .c-dilation-tab__galaxies,
.t-dark .c-dilation-tab__dilated-time,
.t-dark .c-dilation-tab__dilated-time-income,
.t-dark .c-dilation-tab__galaxy-threshold,
.t-dark .c-dilation-tab__galaxies,
.t-dark-metro .c-dilation-tab__dilated-time,
.t-dark-metro .c-dilation-tab__dilated-time-income,
.t-dark-metro .c-dilation-tab__galaxy-threshold,
.t-dark-metro .c-dilation-tab__galaxies,
.t-s6 .c-dilation-tab__dilated-time,
.t-s6 .c-dilation-tab__dilated-time-income,
.t-s6 .c-dilation-tab__galaxy-threshold,
2019-04-17 20:54:36 +00:00
.t-s6 .c-dilation-tab__galaxies,
.t-s8 .c-dilation-tab__dilated-time,
.t-s8 .c-dilation-tab__dilated-time-income,
.t-s8 .c-dilation-tab__galaxy-threshold,
.t-s8 .c-dilation-tab__galaxies {
color: #64dd17;
}
.t-dark .c-dilation-tab__dilated-time,
.t-dark .c-dilation-tab__dilated-time-income,
.t-dark .c-dilation-tab__galaxy-threshold,
.t-dark .c-dilation-tab__galaxies,
.t-s6 .c-dilation-tab__dilated-time,
.t-s6 .c-dilation-tab__dilated-time-income,
.t-s6 .c-dilation-tab__galaxy-threshold,
.t-s6 .c-dilation-tab__galaxies {
text-shadow: 0 0 0.7rem #64dd17;
}
/*#endregion c-dilation-tab*/
/*#region l-dilation-upgrades-grid*/
.l-dilation-upgrades-grid {
display: flex;
flex-direction: column;
}
.l-dilation-upgrades-grid__row {
display: flex;
flex-direction: row;
justify-content: center;
}
.l-dilation-upgrades-grid__cell {
margin: 1.2rem 1.5rem;
}
/*#endregion l-dilation-upgrades-grid*/
/*#region o-dilation-btn*/
.o-dilation-btn {
font-weight: bold;
font-size: 1.12rem;
border: 0.2rem solid #64dd17;
width: 19rem;
height: 9rem;
transition-duration: 0.2s;
border-radius: 0.4rem;
font-family: Typewriter, serif;
padding: 1rem;
}
.o-dilation-btn--locked {
color: #181818;
background-color: #5f5f5f;
border-color: #3e8a0f;
}
.o-dilation-btn--unlocked {
color: #64dd17;
background-color: black;
cursor: pointer;
animation: a-dilation-btn-glow 10s infinite;
}
.o-dilation-btn--unlocked:hover {
background-color: white;
}
.t-dark .o-dilation-btn--unlocked {
color: #64dd17;
background-color: black;
}
.t-dark .o-dilation-btn--unlocked:hover,
.t-s6 .o-dilation-btn--unlocked:hover {
color: #64dd17;
background-color: white;
}
.t-s4 .o-dilation-btn {
animation: a-dilation-btn-glow--cancer 10s infinite;
}
.t-metro .o-dilation-btn,
.t-dark-metro .o-dilation-btn,
.t-inverted-metro .o-dilation-btn,
.t-s8 .o-dilation-btn {
border-radius: 0;
border-width: 0.1rem;
}
.o-dilation-btn--locked:hover {
color: #1d1d1d;
background-color: #660000;
}
.t-metro .o-dilation-btn--locked,
.t-dark-metro .o-dilation-btn--locked,
.t-inverted-metro .o-dilation-btn--locked,
.t-s1 .o-dilation-btn--locked,
.t-s8 .o-dilation-btn--locked {
color: black;
background-color: #9e9e9e;
box-shadow: .1rem .1rem .1rem 0 black;
border: none;
}
.t-metro .o-dilation-btn--locked:hover,
.t-dark-metro .o-dilation-btn--locked:hover,
.t-inverted-metro .o-dilation-btn--locked:hover,
.t-s8 .o-dilation-btn--locked:hover {
background-color: #ef5350;
}
.t-s1 .o-dilation-btn--locked:hover {
background-color: #d72621;
}
.t-s6 .o-dilation-btn--locked {
color: gray;
background-color: black;
}
.t-dark .o-dilation-btn--locked {
color: black;
background-color: #23292a;
}
.t-dark .o-dilation-btn--locked:hover,
.t-s6 .o-dilation-btn--locked:hover {
color: black;
border-color: #b84b5f;
background-color: #b84b5f;
}
@keyframes a-dilation-btn-glow {
0% { box-shadow: inset 0.5rem 0 2rem }
25% { box-shadow: inset 0 0.5rem 2rem }
50% { box-shadow: inset -0.5rem 0 2rem }
75% { box-shadow: inset 0 -0.5rem 2rem }
100% { box-shadow: inset 0.5rem 0 2rem }
}
@keyframes a-dilation-btn-glow--cancer {
0% { box-shadow: inset 0.5px -0.5rem 2rem }
10% { box-shadow: inset -0.5px 0.5rem 2rem }
20% { box-shadow: inset 0.5px -0.5rem 2rem }
22% { box-shadow: inset -0.5px 0.5rem 2rem }
25% { box-shadow: inset 0.5px -0.5rem 2rem }
29% { box-shadow: inset -0.5px 0.5rem 2rem }
39% { box-shadow: inset 0.5px -0.5rem 2rem }
44% { box-shadow: inset -0.5px 0.5rem 2rem }
53% { box-shadow: inset 0.5px -0.5rem 2rem }
57% { box-shadow: inset -0.5px 0.5rem 2rem }
63% { box-shadow: inset 0.5px -0.5rem 2rem }
69% { box-shadow: inset -0.5px 0.5rem 2rem }
71% { box-shadow: inset 0.5px -0.5rem 2rem }
74% { box-shadow: inset -0.5px 0.5rem 2rem }
75% { box-shadow: inset 0.5px -0.5rem 2rem }
84% { box-shadow: inset -0.5px 0.5rem 2rem }
88% { box-shadow: inset 0.5px -0.5rem 2rem }
92% { box-shadow: inset -0.5px 0.5rem 2rem }
93% { box-shadow: inset 0.5px -0.5rem 2rem }
95% { box-shadow: inset -0.5px 0.5rem 2rem }
100% { box-shadow: inset 0.5px -0.5rem 2rem }
}
/*#endregion o-dilation-btn*/
/*#region o-dilation-upgrade*/
.o-dilation-upgrade {
background: black;
font-weight: bold;
font-size: 1.05rem;
border: 0.1rem solid;
width: 17rem;
height: 9rem;
transition-duration: 0.2s;
border-radius: 0.4rem;
font-family: Typewriter, serif;
}
.o-dilation-upgrade--available {
color: #64dd17;
border-color: #64dd17;
animation: a-dilation-btn-glow 10s infinite;
cursor: pointer;
}
.o-dilation-upgrade--rebuyable.o-dilation-upgrade--available {
color: #64ddad;
border-color: #64ddad;
}
.o-dilation-upgrade--available:hover {
background-color: white;
}
.o-dilation-upgrade--bought, .o-dilation-upgrade--capped {
color: black;
background-color: #64dd17;
border-color: black;
}
.o-dilation-upgrade--unavailable {
color: #181818;
background-color: #5f5f5f;
border-color: #3e8a0f;
}
.o-dilation-upgrade--rebuyable.o-dilation-upgrade--unavailable {
border-color: #64ddad;
}
.o-dilation-upgrade--unavailable:hover {
color: #1d1d1d;
background-color: #660000;
}
.o-dilation-upgrade__description--small-text {
font-size: 0.95rem;
}
.t-metro .o-dilation-upgrade,
.t-dark-metro .o-dilation-upgrade,
.t-inverted-metro .o-dilation-upgrade,
.t-s8 .o-dilation-upgrade {
border-radius: 0;
}
.t-metro .o-dilation-upgrade--unavailable,
.t-dark-metro .o-dilation-upgrade--unavailable,
.t-inverted-metro .o-dilation-upgrade--unavailable,
.t-s1 .o-dilation-upgrade--unavailable,
.t-s8 .o-dilation-upgrade--unavailable {
color: black;
background-color: #9e9e9e;
box-shadow: 0.1rem 0.1rem 0.1rem 0 black;
border: none;
}
.t-metro .o-dilation-upgrade--unavailable:hover,
.t-dark-metro .o-dilation-upgrade--unavailable:hover,
.t-inverted-metro .o-dilation-upgrade--unavailable:hover,
.t-s8 .o-dilation-upgrade--unavailable:hover {
background-color: #ef5350;
}
.t-s1 .o-dilation-upgrade--unavailable:hover {
background-color: #d72621;
}
.t-dark .o-dilation-upgrade {
background-color: black;
}
.t-dark .o-dilation-upgrade--available:hover,
.t-s6 .o-dilation-upgrade--available:hover {
color: #64dd17;
background-color: white;
}
.t-dark .o-dilation-upgrade--rebuyable.o-dilation-upgrade--available:hover,
.t-s6 .o-dilation-upgrade--rebuyable.o-dilation-upgrade--available:hover {
color: #64ddad;
}
.t-dark .o-dilation-upgrade--bought, .t-dark .o-dilation-upgrade--capped {
background-color: #64dd17;
}
.t-s6 .o-dilation-upgrade--unavailable {
color: gray;
2020-04-29 22:04:57 +00:00
background-color: black;
}
.t-dark .o-dilation-upgrade--unavailable {
2019-04-17 20:54:36 +00:00
color: black;
background-color: #23292a;
}
.t-dark .o-dilation-upgrade--unavailable:hover,
.t-s6 .o-dilation-upgrade--unavailable:hover {
color: black;
border-color: var(--color-bad);
background-color: var(--color-bad);
}
.t-s4 .o-dilation-upgrade--available {
animation: a-dilation-btn-glow--cancer 10s infinite;
}
.t-s6 .o-dilation-upgrade--bought, .t-s6 .o-dilation-upgrade--capped {
background: #64dd17;
}
/*#endregion o-dilation-upgrade*/
.c-tachyon-particle-container {
position: fixed;
top: 0;
left: 0;
width: 100%;
height: 100%;
z-index: -1;
}
.o-tachyon-particle {
fill: black;
}
.t-dark .o-tachyon-particle,
.t-dark-metro .o-tachyon-particle,
.t-s6 .o-tachyon-particle {
fill: white;
}
/*#endregion Dilation*/
/*#region Modals*/
@keyframes a-modal-overlay-fadein {
from {background-color: rgba(0,0,0,0); }
to {background-color: rgba(60, 60, 100, 0.5);}
}
.l-modal-overlay {
position: fixed;
left: 0;
top: 0;
width: 100vw;
height: 100vh;
2020-03-10 17:51:21 +00:00
z-index: 5;
animation-name: a-modal-overlay-fadein;
animation-duration: 2s;
animation-fill-mode: forwards;
}
.l-modal {
position: fixed;
top: 50%;
left: 50%;
transform: translate(-50%, -50%);
z-index: 7;
display: inline-block;
}
/*#region c-modal*/
.c-modal {
border: 0.3rem solid black;
background-color: #e0e0e0;
border-radius: 0.6rem;
text-align: center;
color: black;
font-family: Typewriter, serif;
font-size: 1.4rem;
2020-04-29 22:04:57 +00:00
padding: 1rem;
transition-duration: 0.2s;
2020-04-11 08:25:30 +00:00
overflow: hidden;
}
.c-modal__close-btn {
position: absolute;
top: 0.5rem;
right: 0.5rem;
}
.c-modal__close-btn--tiny {
transform: scale(0.5);
top: -0.5rem;
right: -0.5rem;
}
/*#region themes*/
/*#region t-dark t-dark-metro*/
.t-dark .c-modal,
.t-dark-metro .c-modal {
background-color: #455a64;
}
.t-dark .c-modal {
box-shadow: 0 0 1.5rem 0 black;
}
.t-dark-metro .c-modal {
box-shadow: 0 0 1rem 0 black;
}
2019-04-17 20:54:36 +00:00
.t-dark h3,
.t-dark-metro h3 {
color: #999;
text-shadow: -0.1rem 0.1rem 0 rgba(0, 0, 0, 0.5);
2019-04-17 20:54:36 +00:00
}
/*#endregion t-dark t-dark-metro*/
/*#region t-metro t-dark-metro t-inverted-metro t-s8 */
.t-metro .c-modal,
2020-04-18 05:41:52 +00:00
.t-dark-metro .c-modal,
.t-inverted-metro .c-modal,
.t-s8 .c-modal {
border: 0.1rem solid black;
}
/*#endregion t-metro t-dark-metro t-inverted-metro t-s8 */
/*#region t-s1*/
.t-s1 .c-modal {
background-color: #dbd242;
}
/*#endregion t-s1*/
/*#region t-s6*/
.t-s6 .c-modal {
color: #e0e0e0;
background-color: black;
2020-04-18 05:41:52 +00:00
border: 0.1rem solid #1b5e20;
box-shadow: 0 0 1.5rem 0 black;
}
/*#endregion t-s6*/
/*#region t-s7*/
.t-s7 .c-modal {
filter: saturate(0);
}
/*#endregion t-s7*/
/*#region t-s8*/
.t-s8 h3 {
color: black;
}
/*#endregion t-s8*/
/*#endregion themes*/
/*#endregion c-modal*/
.l-modal-content--centered {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
}
/*#region c-modal-message*/
.c-modal-message {
min-width: 50rem;
}
.c-modal-message__text {
max-width: 50rem;
}
.c-modal-message__okay-btn {
margin-top: 1rem;
}
/*#endregion c-modal-message*/
/*#region c-modal-import*/
.c-modal-import {
width: 47.5rem;
}
.c-modal-import__save-info > div {
margin-top: 0.2rem;
}
.c-modal-import__warning {
font-size: 1rem;
}
.c-modal-import__input {
width: 45rem;
}
.c-modal-import__import-btn {
margin-top: 0.3rem;
}
/*#endregion c-modal-import*/
2019-07-21 17:45:36 +00:00
/*#region c-modal-import-tree*/
.c-modal-import-tree {
width: 47.5rem;
}
.l-modal-import-tree__tree-info-line {
margin-top: 0.2rem;
2019-07-21 17:45:36 +00:00
}
.c-modal-import-tree__warning {
font-size: 1rem;
}
.c-modal-import-tree__input {
width: 45rem;
}
.c-modal-import-tree__import-btn {
margin-top: 0.3rem;
2019-07-21 17:45:36 +00:00
}
/*#endregion c-modal-import-tree*/
.c-modal-input {
border: 0.1rem solid black;
background-color: #F2F2F2;
border-radius: 0.3rem;
text-align: center;
}
.c-modal-options {
width: 30rem;
2020-04-19 03:29:16 +00:00
}
2020-04-22 12:56:28 +00:00
.c-modal-options .o-primary-btn--option, .o-primary-btn--option-wide {
2020-04-19 03:29:16 +00:00
height: 100%;
padding: 0.5rem;
margin-bottom: 1rem;
}
.c-modal-options .o-primary-btn--width-medium {
margin-top: 0.7rem;
}
/*#region l-modal-options*/
.l-modal-options {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-evenly;
}
.l-modal-options__save-record {
display: flex;
flex-direction: column;
align-items: center;
2020-04-19 03:29:16 +00:00
margin-bottom: 1rem;
}
/*#endregion l-modal-options*/
2019-04-11 22:09:32 +00:00
.l-modal-store-content {
display: flex;
2019-08-23 16:58:28 +00:00
align-items: center;
2019-04-11 22:09:32 +00:00
}
.l-modal-store-content > img {
2019-08-23 16:58:28 +00:00
height: 25rem;
2019-04-11 22:09:32 +00:00
}
.c-modal-store-buttons {
display: flex;
flex-direction: column;
justify-content: center;
}
.c-modal-store-btn-container {
display: flex;
align-items: center;
margin-bottom: 1.5rem;
}
.o-modal-store-label {
margin-right: 1.5rem;
font-family: Typewriter;
font-size: 2rem;
min-width: 10rem;
text-align: right;
}
.o-modal-store-btn {
2019-08-23 16:58:28 +00:00
padding: 0.8rem;
2019-04-11 22:09:32 +00:00
border: none;
background: burlywood;
border-radius: .5rem;
font-family: Typewriter;
font-size: 2rem;
cursor: pointer;
2020-04-11 08:25:30 +00:00
transition-duration: 0.15s;
2019-04-11 22:09:32 +00:00
display: flex;
align-items: center;
justify-content: center;
min-width: 12rem;
}
.o-modal-store-btn:hover {
background: rgb(184, 146, 97);
}
.o-modal-store-btn img {
height: 4rem;
margin-left: 1rem;
}
2019-04-15 23:00:46 +00:00
/*#region c-modal-shortcuts*/
.c-modal-shortcuts {
font-size: 1.25rem;
}
.l-modal-shortcuts {
display: flex;
flex-direction: row;
}
.l-modal-shortcuts__column {
width: 25rem;
display: flex;
flex-direction: column;
}
.l-modal-shortcuts__column--right {
margin-left: 1rem;
}
.l-modal-shortcuts-row {
display: flex;
flex-direction: row;
line-height: 1.6rem;
2019-04-15 23:00:46 +00:00
padding-bottom: 0.3rem;
}
.c-modal-shortcuts-row__name {
text-align: left;
}
.l-modal-shortcuts-row__name {
flex: 1 1 auto;
}
.c-modal-shortcuts__shift-description {
text-align: left;
font-size: 1rem;
}
kbd {
background-color: #fafbfc;
border: 0.1rem solid #d1d5da;
2019-04-15 23:00:46 +00:00
border-bottom-color: #c6cbd1;
border-radius: 0.3rem;
box-shadow: inset 0 -0.1rem 0 #c6cbd1;
2019-04-15 23:00:46 +00:00
color: #444d56;
display: inline-block;
font: 1.1rem SFMono-Regular,Consolas,Liberation Mono,Menlo,Courier,monospace;
line-height: 1rem;
padding: 0.3rem 0.5rem;
2019-04-15 23:00:46 +00:00
vertical-align: middle;
}
2019-04-17 20:54:36 +00:00
.t-dark kbd, .t-dark-metro kbd {
background-color: #212b36;
border-color: #464e58;
border-bottom-color: #4f5863;
box-shadow: inset 0 -0.1rem 0 #4f5863;
color: #a9b3bc;
}
2019-04-15 23:00:46 +00:00
/*#endregion c-modal-shortcuts*/
.l-modal-progress-bar {
position: fixed;
z-index: 3;
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
left: 50vw;
top: 50vh;
transform: translate(-50%, -50%);
}
.l-modal-progress-bar__hbox {
display: flex;
flex-direction: row;
justify-content: space-between;
}
.c-modal-progress-bar__label {
padding-bottom: 0.5rem;
}
.l-modal-progress-bar__bg {
width: 20rem;
margin-left: 1rem;
margin-right: 1rem;
height: 2rem;
}
.c-modal-progress-bar__bg {
background: black;
}
.l-modal-progress-bar__fg {
height: 100%;
}
.c-modal-progress-bar__fg {
background: blue;
}
.l-modal-celestial-quote {
position: fixed;
z-index: 3;
display: flex;
flex-direction: row;
justify-content: space-between;
align-items: center;
left: 50vw;
top: 50vh;
width: 40rem;
height: 10rem;
transform: translate(-50%, -50%);
}
.c-modal-celestial-quote__arrow {
font-size: 150%;
margin: 0.5rem;
color: #444;
}
.l-modal-celestial-quote__text {
display: flex;
flex-direction: column;
justify-content: center;
height: 100%;
}
.l-modal-celestial-quote__buttons {
display: flex;
flex-direction: column;
justify-content: space-between;
height: 100%;
}
/*#endregion Modals*/
.l-notification-container {
display: flex;
flex-direction: column-reverse;
align-items: flex-end;
position: fixed;
top: 0;
right: 0;
margin-top: 0.5rem;
margin-right: 1rem;
z-index: 1000;
}
/*#region o-notification*/
.o-notification {
padding: 0.8rem 1.5rem;
margin-top: 0.3rem;
color: black;
background-color: white;
font-size: 1.3rem;
font-family: TypeWriter, serif;
font-weight: bold;
white-space: nowrap;
border: 0.1rem solid;
cursor: pointer;
}
.o-notification--success {
background-color: #dbd800;
border-color: #bab700;
}
.o-notification--error {
background-color: #bf352d;
border-color: #330000;
}
.o-notification--info {
background-color: #48c0e8;
border-color: #4980cc;
}
.o-notification--reality {
2020-04-19 22:37:33 +00:00
background-color: var(--color-reality-light);
border-color: var(--color-reality-light);
}
2019-04-05 21:25:09 +00:00
.o-notification--black-hole {
background-color: #b341e0;
border-color: black;
}
2019-04-17 20:54:36 +00:00
.t-metro .o-notification--success,
.t-dark-metro .o-notification--success,
.t-inverted-metro .o-notification--success,
.t-s8 .o-notification--success {
background-color: #ffeb3b;
border-color: #f9a825;
}
.t-metro .o-notification--error,
.t-dark-metro .o-notification--error,
.t-inverted-metro .o-notification--error,
.t-s8 .o-notification--error {
background-color: #f44336;
border-color: #c62828;
}
.t-metro .o-notification--info,
.t-dark-metro .o-notification--info,
.t-inverted-metro .o-notification--info,
.t-s8 .o-notification--info {
background-color: #03a9f4;
border-color: #0277bd;
}
.t-metro .o-notification--black-hole,
.t-dark-metro .o-notification--black-hole,
.t-inverted-metro .o-notification--black-hole,
.t-s8 .o-notification--black-hole {
background-color: #9c27b0;
border-color: #6a1b9a;
}
.a-notification--enter {
animation: a-notification--enter 0.5s ease-out;
animation-fill-mode: both;
}
@keyframes a-notification--enter {
0% { transform: translateX(125%) }
50% { transform: translateX(-2rem) }
75% { transform: translateX(1rem) }
100% { transform: translateX(0) }
}
.a-notification--leave {
transform: translateX(125%);
transition: transform 0.25s ease-in;
}
/*#endregion o-notification*/
.o-footer {
margin-left: auto;
margin-right: auto;
text-align: center;
font-size: 1.5rem;
}
/*#region component*/
/*#endregion component*/
.o-celestial-quote-history {
display: flex;
flex-direction: row;
align-items: stretch;
justify-content: space-evenly;
2020-04-29 22:04:57 +00:00
margin: 1.5rem 0;
width: 80rem;
}
.l-celestial-quote-history__lines {
font-size: 1.9rem;
line-height: 1.6em;
display: flex;
flex-direction: column;
align-items: center;
flex-grow: 1;
}
.c-celestial-quote-history__line {
font-weight: bold;
font-style: italic;
}
.l-celestial-quote-history__buttons {
display: flex;
flex-direction: column;
align-items: center;
justify-content: space-between;
margin: 1rem 0 0.5rem 1.5rem;
}
.c-celestial-quote-history__button {
font-size: 1.5rem;
}
.c-celestial-quote-history__button--enabled {
cursor: pointer;
}
.c-celestial-quote-history__button--disabled {
cursor: not-allowed;
opacity: 0.6;
}
/*#region Teresa tab*/
.l-teresa-celestial-tab {
display: flex;
flex-direction: column;
align-items: center;
}
.l-mechanics-container {
display: flex;
justify-content: center;
}
.l-teresa-mechanic-container {
min-width: 40rem;
}
.l-rm-container {
min-width: 13rem;
}
2020-04-30 23:38:20 +00:00
.l-rm-container-labels {
min-width: 22rem;
}
.c-rm-store {
border: 0.1rem solid black;
height: 50rem;
width: 13rem;
margin: auto;
position: relative;
}
.c-rm-store-inner {
position: absolute;
background: green;
bottom: 0;
left: 0;
width: 100%;
}
.c-rm-store-label {
position: absolute;
bottom: 0;
width: 100%;
color: green;
mix-blend-mode: difference;
font-weight: bold;
}
.c-teresa-pour {
width: 13rem;
height: 4rem;
margin-bottom: 1rem
}
.c-teresa-unlock-description {
position: absolute;
left: 13.1rem;
width: 20rem;
border-bottom: 0.1rem solid black;
margin-bottom: -0.1rem
}
.o-teresa-quotes {
display: inline-block;
2020-04-29 22:04:57 +00:00
margin: 1.5rem;
font-size: 1.9rem;
font-weight: bold;
font-style: italic;
}
.o-quote-button {
background: transparent;
border: none;
font-weight: bold;
font-size: 3rem;
cursor: pointer;
}
.c-teresa-unlock {
width: 20rem;
border-radius: 0.5rem;
padding: 1rem;
margin: auto;
2020-04-11 08:25:30 +00:00
transition-duration: 0.15s;
user-select: none;
background-color: var(--color-celestials);
border: none;
color: white;
margin-bottom: 1rem;
}
.c-teresa-run-button {
color: var(--color-celestials);
border: 0.2rem solid var(--color-celestials);
cursor: pointer;
background-color: white;
}
.c-teresa-run-button:hover {
color: white;
background-color: var(--color-celestials);
}
.c-teresa-shop {
display: flex;
flex-direction: column;
width: 20rem;
}
.o-teresa-shop-button {
background-color: white;
color: var(--color-celestials);
padding: 1rem;
border: 0.2rem solid var(--color-celestials);
border-radius: 0.5rem;
margin-bottom: 1rem;
font-family: Typewriter, serif;
font-size: 1rem;
cursor: pointer;
2020-04-11 08:25:30 +00:00
transition-duration: 0.15s;
}
.o-teresa-shop-button:hover {
color: white;
background-color: var(--color-celestials);
}
.o-teresa-shop-button--disabled {
color: var(--color-text);
background-color: var(--color-disabled);
cursor: default;
}
.o-teresa-shop-button--disabled:hover {
color: var(--color-text);
background-color: var(--color-disabled);
}
.o-teresa-shop-button--capped {
color: white;
background-color: var(--color-celestials);
cursor: default;
2019-04-17 20:54:36 +00:00
}
.t-metro .c-teresa-run-button, .t-metro .c-teresa-unlock, .t-metro .o-teresa-shop-button,
.t-dark-metro .c-teresa-run-button, .t-dark-metro .c-teresa-unlock, .t-dark-metro .o-teresa-shop-button,
.t-inverted-metro .c-teresa-run-button, .t-inverted-metro .c-teresa-unlock, .t-inverted-metro .o-teresa-shop-button,
.t-s8 .c-teresa-run-button, .t-s8 .c-teresa-unlock, .t-s8 .o-teresa-shop-button {
border-radius: 0;
2019-10-11 18:03:25 +00:00
border-width: 0.1rem;
2019-04-17 20:54:36 +00:00
}
.c-effarig-relics {
padding: 20px;
font-size: 1.5em;
}
/*#endregion Teresa tab*/
/* #region effarig tab */
.o-effarig-shop-button {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
line-height: 1.5;
2020-04-30 23:38:20 +00:00
width: 35rem;
padding: 1rem;
font-size: 2rem;
background-color: #5151ec;
color: white;
border: none;
border-radius: 0.5rem;
margin: 1rem;
cursor: pointer;
2020-04-11 08:25:30 +00:00
transition-duration: 0.15s;
}
.o-effarig-shop-button:hover {
background-color: #d0d0d0;
color: #5151ec;
}
.effarig-unlock-bought {
background-color: #d0d0d0;
color: #5151ec;
cursor: default;
}
.l-effarig-run-button {
display: flex;
align-items: center;
justify-content: center;
flex-direction: column;
width: 15rem;
height: 15rem;
border-radius: 50%;
border-style: none;
position: relative;
margin: 2rem;
}
.c-effarig-run-button {
font-size: 10rem;
font-family: sans-serif;
font-weight: bold;
user-select: none;
cursor: pointer;
}
.c-effarig-run-button--not-running {
background-color: #5151ec;
color: white;
z-index: 0;
-webkit-animation: a-effarig-run-button--not-running-glow 2s ease-in-out infinite alternate;
-moz-animation: a-effarig-run-button--not-running-glow 2s ease-in-out infinite alternate;
animation: a-effarig-run-button--not-running-glow 2s ease-in-out infinite alternate;
}
.c-effarig-run-button--not-running:hover {
background-color: black;
}
@keyframes a-effarig-run-button--not-running-glow {
from {
text-shadow: 0 0 1rem #fff, 0 0 2rem #fff, 0 0 3rem #1000b0, 0 0 4rem #1000b0, 0 0 5rem #1000b0, 0 0 6rem #1000b0, 0 0 7rem #1000b0;
box-shadow: 0 0 0.5rem #1000b0, 0 0 1rem #1000b0, 0 0 1.5rem #1000b0;
}
to {
text-shadow: 0 0 2rem #fff, 0 0 3rem #2512d0, 0 0 4rem #2512d0, 0 0 5rem #2512d0, 0 0 6rem #2512d0, 0 0 7rem #2512d0, 0 0 8rem #2512d0;
box-shadow: 0 0 0.5rem #2512d0, 0 0 1rem #2512d0, 0 0 1.5rem #2512d0, 0 0 2rem #2512d0;
}
}
.c-effarig-run-button--running {
background: black;
z-index: 0;
-webkit-animation: a-effarig-run-button--running-glow 2s infinite alternate;
-moz-animation: a-effarig-run-button--running-glow 2s infinite alternate;
animation: a-effarig-run-button--running-glow 2s infinite alternate;
}
.c-effarig-run-button--running:hover {
background: #400000;
}
.c-effarig-run-button__inner--running {
background-image: url("../images/noise.png");
-webkit-background-clip: text;
background-clip: text;
-webkit-text-fill-color: rgba(255, 0, 0, 0.5);
-webkit-animation: a-effarig-run-button--running-noise 15s infinite alternate;
-moz-animation: a-effarig-run-button--running-noise 15s infinite alternate;
animation: a-effarig-run-button--running-noise 15s infinite alternate;
position: relative;
}
.c-effarig-run-button__inner--running:after {
background: none;
content: attr(button-symbol);
z-index: -1;
position: absolute;
-webkit-animation: a-effarig-run-button__inner--running-glow 2s infinite alternate;
-moz-animation: a-effarig-run-button__inner--running-glow 2s infinite alternate;
animation: a-effarig-run-button__inner--running-glow 2s infinite alternate;
left: 0;
top: 0;
}
@keyframes a-effarig-run-button--running-noise {
0% { -webkit-text-fill-color: rgba(255, 0, 0, 1); }
20% {
-webkit-text-fill-color: rgba(255, 0, 0, 1);
background-position: -50px 0;
}
22% {
-webkit-text-fill-color: rgba(255, 0, 0, 0.5);
background-position: 100px -10px;
}
24% {
-webkit-text-fill-color: rgba(255, 0, 0, 1);
background-position: 0 -150px;
}
50% {
-webkit-text-fill-color: rgba(255, 0, 0, 1);
background-position: -50px 0;
}
51% {
-webkit-text-fill-color: rgba(255, 0, 0, 0.5);
background-position: 100px -10px;
}
52% {
-webkit-text-fill-color: rgba(255, 0, 0, 1);
background-position: 0 -150px;
}
54% {
-webkit-text-fill-color: rgba(255, 0, 0, 1);
background-position: 50px 0;
}
56% {
-webkit-text-fill-color: rgba(255, 0, 0, 0.5);
background-position: -100px 10px;
}
58% {
-webkit-text-fill-color: rgba(255, 0, 0, 1);
background-position: 0 50px;
}
90% {
-webkit-text-fill-color: rgba(255, 0, 0, 1);
background-position: 50px 50px;
}
91% {
-webkit-text-fill-color: rgba(255, 0, 0, 0.5);
background-position: 100px -110px;
}
92% {
-webkit-text-fill-color: rgba(255, 0, 0, 1);
background-position: 0 70px;
}
100% { -webkit-text-fill-color: rgba(255, 0, 0, 1); }
}
@keyframes a-effarig-run-button--running-glow {
from {
box-shadow: 0 0 0.5rem #c20707 inset, 0 0 1rem #c20707 inset, 0 0 1.5rem #c20707 inset;
}
to {
box-shadow: 0 0 0.5rem #e21717 inset, 0 0 1rem #e21717 inset, 0 0 1.5rem #e21717 inset, 0 0 2rem #e21717 inset;
}
}
@keyframes a-effarig-run-button__inner--running-glow {
from {
text-shadow: 0 0 0.5rem #a20707, 0 0 1rem #a20707, 0 0 1.5rem #a20707;
}
to {
text-shadow: 0 0 0.5rem #c21717, 0 0 1rem #c21717, 0 0 1.5rem #c21717, 0 0 2rem #c21717;
}
}
.l-effarig-run-button__bg {
position: absolute;
width: 80%;
height: 80%;
}
.l-effarig-run-button__fg {
position: relative;
background-color: rgba(0, 0, 0, 0);
}
.l-effarig-shop {
display: inline-flex;
flex-direction: column;
align-items: center;
}
.l-effarig-shop-and-run {
margin-top: 2rem;
display: inline-flex;
flex-direction: row;
}
.l-effarig-run {
display: inline-flex;
flex-direction: column;
align-items: center;
margin-left: 3rem;
2020-05-18 05:23:32 +00:00
width: 520px;
}
.c-effarig-run-description {
font-size: larger;
margin-top: 1rem;
}
.l-effarig-tab__reward {
display: flex;
flex-direction: row;
2020-05-18 05:23:32 +00:00
align-items: left;
width: 100%;
margin: 0.5rem;
}
.c-effarig-tab__reward-label {
padding-right: 1rem;
font-weight: bold;
}
.c-effarig-tab__reward-symbol {
font-weight: bold;
margin-right: 0.5rem;
}
.l-effarig-tab__reward-descriptions {
display: inline-flex;
flex-direction: column;
align-items: flex-start;
}
.c-effarig-tab__reward-description {
text-align: left;
}
.sortable-drag {
cursor: grabbing;
}
.t-metro .o-effarig-shop-button,
.t-dark-metro .o-effarig-shop-button,
.t-inverted-metro .o-effarig-shop-button,
.t-s8 .o-effarig-shop-button {
border-radius: 0;
}
/* #endregion effarig tab*/
/* #startregion enslaved tab */
2019-04-07 23:07:38 +00:00
.l-enslaved-celestial-tab {
2020-04-30 23:38:20 +00:00
display: flex;
2020-05-08 05:14:04 +00:00
flex-direction: column;
align-items: center;
}
.l-enslaved-celestial-tab--inner {
display: flex;
2020-04-30 23:38:20 +00:00
}
.l-enslaved-upgrades-column {
2019-04-07 23:07:38 +00:00
display: flex;
flex-direction: column;
align-items: center;
}
.l-enslaved-run-container {
display: block;
margin-top: auto;
margin-bottom: auto;
}
2019-04-07 23:07:38 +00:00
.l-enslaved-top-container {
display: flex;
flex-direction: row;
align-items: flex-start;
}
.l-enslaved-top-container__half {
display: flex;
flex-direction: column;
align-items: stretch;
width: 24rem;
margin: 1rem;
}
.o-enslaved-stored-time, .o-enslaved-gained-infinities {
font-size: 1.6rem;
2019-04-07 23:07:38 +00:00
min-width: 18rem;
padding-bottom: 0.5rem;
}
.o-enslaved-mechanic-button {
padding: 0.5rem;
border-radius: 0.5rem;
border: 0.2rem solid sandybrown;
box-shadow: 0 0 2rem inset rgba(244, 164, 96, 0.5);
background-color: #fdd3b0;
cursor: pointer;
margin: 1rem 0.5rem;
2019-04-07 23:07:38 +00:00
min-width: 18rem;
min-height: 7rem;
2019-04-07 23:07:38 +00:00
padding-bottom: 1rem;
padding-top: 1rem;
font-family: Typewriter;
transition-duration: 0.2s;
}
.t-metro .o-enslaved-mechanic-button,
.t-dark-metro .o-enslaved-mechanic-button,
.t-inverted-metro .o-enslaved-mechanic-button,
.t-s8 .o-enslaved-mechanic-button {
border-radius: 0;
border-width: 0.1rem;
}
.o-enslaved-mechanic-button:hover {
background-color: #ffa337;
}
.o-enslaved-mechanic-button--storing-time {
background-color: #ffa337;
box-shadow: none;
}
.l-enslaved-shop-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
2020-04-20 05:50:24 +00:00
width: 65rem;
margin: auto;
}
.o-enslaved-shop-button {
padding: 1.7rem;
background-color: var(--color-celestials);
color: white;
border: none;
border-radius: 0.5rem;
margin: 1rem;
transition-duration: 0.2s;
width: 30rem;
2020-04-26 04:26:47 +00:00
height: 12rem;
font-family: Typewriter;
}
.t-metro .o-enslaved-shop-button,
.t-dark-metro .o-enslaved-shop-button,
.t-inverted-metro .o-enslaved-shop-button,
.t-s8 .o-enslaved-shop-button {
border-radius: 0;
}
.o-enslaved-shop-button--available {
background: aquamarine;
box-shadow: 0 0 1rem aquamarine;
cursor: pointer;
}
.o-enslaved-shop-button--available:hover {
background: #16c55e;
box-shadow: 0 0 1rem #16c55e;
}
.o-enslaved-shop-button--bought {
background: #16c55e;
pointer-events: none;
}
2019-06-18 10:08:07 +00:00
.o-enslaved-run-box {
width: 40rem;
padding: 2rem;
border-radius: 0.5rem;
border: 2px solid #cd945c;
2019-06-18 10:08:07 +00:00
background: none;
font-family: Typewriter;
font-size: 1.2rem;
margin-bottom: 1rem;
margin-top: 1rem;
2019-06-18 10:08:07 +00:00
display: flex;
flex-direction: column;
align-items: center;
}
.t-metro .o-enslaved-run-box,
.t-dark-metro .o-enslaved-run-box,
.t-inverted-metro .o-enslaved-run-box,
.t-s8 .o-enslaved-run-box {
border-radius: 0;
}
2019-06-18 10:08:07 +00:00
.o-enslaved-run-box__title {
font-weight: bold;
font-size: larger;
margin-bottom: 0.5rem;
}
2019-06-18 10:08:07 +00:00
.o-enslaved-run-button {
border-radius: 50%;
background: #f1aa7f;
2019-06-18 10:08:07 +00:00
width: 15rem;
height: 15rem;
margin: 1.5rem;
color: black;
cursor: pointer;
2019-06-18 10:08:07 +00:00
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
position: relative;
overflow: hidden;
}
.o-enslaved-run-button:hover {
color: #bebdb8;
background: black;
}
.o-enslaved-run-button__sigil {
font-size: 12rem;
transform: rotate(45deg);
}
.o-enslaved-run-button__glitch {
position: absolute;
background-image: linear-gradient(rgba(0, 0, 0, 0) 0%, black 20%, black 80%, rgba(0,0,0,0) 100%);
/*background: black;*/
border: none;
width: 1px;
}
.o-enslaved-release-header-button {
font-size: 1rem;
width: 20rem;
}
/* #endregion enslaved tab*/
/* #startregion v tab */
.l-v-unlocks-container {
display: flex;
flex-wrap: wrap;
justify-content: center;
width: 81.25rem;
margin: auto;
margin-top: 1rem;
2019-06-07 02:42:45 +00:00
margin-bottom: 1rem;
box-sizing: border-box;
overflow: hidden;
}
.l-v-unlocks-container li {
position: relative;
width: 22.5rem;
2020-04-29 22:04:57 +00:00
padding: 0 0 26rem;
2019-06-07 02:42:45 +00:00
list-style-type: none;
transform: rotate(-60deg) skewY(30deg);
overflow: hidden;
visibility: visible;
}
2019-06-07 21:07:48 +00:00
/* required for hex structure */
2019-06-07 02:42:45 +00:00
.l-v-unlocks-container li:nth-child(3n+2) {
margin: 0 1%;
}
.l-v-unlocks-container li:nth-child(6n+4), .l-v-unlocks-container li:nth-child(6n+5), .l-v-unlocks-container li:nth-child(6n+6) {
2019-06-07 21:07:48 +00:00
margin-top: -7%;
margin-bottom: -7%;
2019-06-07 02:42:45 +00:00
}
.l-v-unlocks-container li:nth-child(6n+1), .l-v-unlocks-container li:nth-child(6n+2), .l-v-unlocks-container li:nth-child(6n+3) {
transform: translateX(50%) rotate(-60deg) skewY(30deg);
}
2019-07-18 01:13:51 +00:00
.l-v-unlocks-container li:nth-child(6n+1) {
2019-06-07 02:42:45 +00:00
margin-left: 1%;
}
.c-v-unlock {
2020-04-18 18:35:00 +00:00
color: black;
background: whitesmoke;
}
.c-v-unlock-completed {
background: lightgreen;
}
.o-v-unlock-name {
font-weight: bold;
font-size: 1.6rem;
}
.o-v-unlock-amount {
font-weight: bold;
font-size: 1.3rem;
}
2020-02-02 01:04:52 +00:00
.l-v-milestones-grid {
display: flex;
2020-02-02 01:04:52 +00:00
flex-direction: column;
justify-content: center;
}
2020-02-02 01:04:52 +00:00
.l-v-milestones-grid__row {
display: flex;
2020-02-02 01:04:52 +00:00
flex-direction: row;
justify-content: center;
2020-02-02 01:04:52 +00:00
margin: 0.5rem;
}
.o-v-milestone {
width: 25rem;
height: 10rem;
padding: 1rem;
border: 2px solid gainsboro;
margin-right: 10px;
border-radius: 0.5rem;
font-size: 1.2rem;
display: flex;
flex-direction: column;
justify-content: space-around;
}
.o-v-milestone-unlocked {
background: lightgreen;
}
2019-06-07 02:42:45 +00:00
.l-v-hexagon {
position: absolute;
top: 0;
left: 0;
height: 100%;
width: 100%;
transform: skewY(-30deg) rotate(60deg);
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
}
.l-v-reduction {
width: 3rem;
height: 3rem;
border-radius: 50%;
font-size: 1.5rem;
}
2019-06-07 02:42:45 +00:00
.o-v-run-button {
color: black;
background: #ead584;
2019-06-07 02:42:45 +00:00
font-family: Typewriter;
font-size: 1.1rem;
cursor: pointer;
transition-duration: 0.2s;
}
.o-v-run-button:hover {
background: indianred;
}
/* #endregion v tab*/
/* #startregion ra tab */
2019-07-18 01:13:51 +00:00
.l-ra-celestial-tab {
display: flex;
flex-direction: column;
2019-07-18 01:13:51 +00:00
justify-content: center;
}
2019-07-18 01:13:51 +00:00
.c-ra-pet-header {
width: 35rem;
padding: 1rem;
margin: 2rem auto;
background: linear-gradient(#2f2f2f, #464646);
2019-08-28 06:39:03 +00:00
border-radius: 1.5rem;
}
.c-ra-pet-title {
font-size: 2.5rem;
}
2019-07-18 01:13:51 +00:00
.l-ra-bar-container {
2020-04-29 22:04:57 +00:00
margin: 1rem 0 3.5rem;
2019-07-18 01:13:51 +00:00
width: 100%;
2020-02-27 05:32:22 +00:00
height: 3rem;
2020-04-29 22:04:57 +00:00
flex-direction: row nowrap;
2019-07-18 01:13:51 +00:00
}
.l-ra-lvl-chevron {
position: absolute;
top: 0;
font-size: 1.2rem;
z-index: 2;
2020-02-23 01:08:33 +00:00
color: white;
height: 1.75rem;
2020-02-23 01:08:33 +00:00
border-left: 0.1rem solid white;
padding: 0 0.2rem;
user-select: none;
cursor: default;
}
2019-07-22 06:40:03 +00:00
.l-ra-lvl-chevron--no-bar {
border-left: none !important;
}
2019-07-18 01:13:51 +00:00
.c-important-chevron {
font-weight: bold;
font-size: 1.5rem;
height: 4.6rem;
border-left-width: 0.2rem;
2020-04-11 08:25:30 +00:00
text-shadow: 0.1rem 0.1rem 0.1rem black,
-0.1rem 0.1rem 0.1rem black,
0.1rem -0.1rem 0.1rem black,
-0.1rem -0.1rem 0.1rem black,
2020-04-11 08:35:44 +00:00
0.1rem -0.1rem 0 black;
2020-04-11 08:25:30 +00:00
z-index: 3;
}
.o-ra-unlock-hover-text {
background-color: black;
color: #fff;
text-align: center;
border-radius: 5px;
position: absolute;
z-index: 3;
font-size: 1rem;
left: -6.25rem;
bottom: 6rem;
width: 12.5rem;
height: fit-content;
display: flex;
padding: 1rem;
justify-content: center;
2019-07-18 01:13:51 +00:00
}
.l-ra-exp-bar {
position: relative;
2020-02-23 01:08:33 +00:00
border: 0.2rem solid white;
border-radius: 0.5rem;
2019-07-18 01:13:51 +00:00
width: 80%;
height: 5rem;
2020-02-23 01:08:33 +00:00
margin: auto;
2020-02-28 02:40:06 +00:00
margin-bottom: 2rem;
z-index: 1;
}
.t-dark .l-ra-exp-bar,
.t-dark-metro .l-ra-exp-bar,
.t-s6 .l-ra-exp-bar {
2019-07-20 04:02:50 +00:00
border-color: white;
}
2019-07-18 01:13:51 +00:00
.l-ra-exp-bar-inner {
position: relative;
z-index: -1;
height: 100%;
background-color: #35d035;
}
2019-07-18 01:13:51 +00:00
.l-ra-pet-container {
2020-02-23 01:08:33 +00:00
float: left;
width: 50%;
height: 50%;
2019-07-18 01:13:51 +00:00
}
.c-ra-memory-header {
font-size: 1.3rem;
margin-top: 1.5rem;
font-weight: bold;
}
.c-ra-upgrade-icon {
2020-02-27 05:32:22 +00:00
box-sizing: border-box;
align-items: center;
justify-content: center;
line-height: 3.9rem;
font-size: 2.3rem;
font-weight: bold;
box-shadow: 0.1rem 0.1rem 0.1rem rgba(0, 0, 0, 0.7);
width: 4rem;
height: 4rem;
background: #222;
border-radius: 3rem;
2020-04-18 05:41:52 +00:00
border: 0.1rem solid #111;
2020-02-28 02:40:06 +00:00
margin: 0 0.3rem;
2020-02-27 05:32:22 +00:00
}
.c-ra-upgrade-icon--inactive {
color: #555;
2020-02-27 05:32:22 +00:00
}
2019-07-18 01:13:51 +00:00
.l-ra-non-pets {
flex: 0.2 0 25rem;
justify-content: center;
flex-direction: row;
display: flex;
2019-07-18 01:13:51 +00:00
}
.l-ra-reality-container {
2020-03-03 06:31:04 +00:00
height: 25rem;
2019-07-18 01:13:51 +00:00
background: radial-gradient(ellipse at center, #35d035 55%, gainsboro);
border-radius: 2rem;
flex: none none 20rem;
width: 30rem;
2020-03-03 17:57:00 +00:00
margin: 2rem;
2019-08-26 13:38:09 +00:00
cursor: pointer;
2019-07-18 01:13:51 +00:00
}
.l-ra-reality-inner {
font-family: Typewriter;
margin: 2rem;
display: flex;
2019-07-18 01:13:51 +00:00
flex-direction: column;
justify-content: center;
}
.c-ra-rewards {
font-size: 1.5rem;
margin: 1rem;
display: flex;
flex-direction: row;
justify-content: center;
}
2019-07-22 06:40:03 +00:00
.c-ra-rewards-inner {
margin: 0 1rem;
}
.l-ra-recollection-unlock {
2020-03-03 06:31:04 +00:00
height: 25rem;
color: white;
background: linear-gradient(#333333, #464646);
2019-07-18 01:13:51 +00:00
border-radius: 2rem;
flex: none none 20rem;
width: 30rem;
2020-03-03 17:57:00 +00:00
margin: 2rem;
}
.l-ra-recollection-unlock-inner {
font-family: Typewriter;
2020-03-03 06:31:04 +00:00
margin: 1rem 3rem;
flex-direction: row;
justify-content: center;
}
2020-03-03 06:31:04 +00:00
.l-ra-pet-recollection-button-container {
float: left;
width: 48%;
2020-03-03 06:31:04 +00:00
height: 40%;
margin: 0.8% 0.2rem;
}
.c-ra-pet-recollection-button {
2020-03-03 06:31:04 +00:00
font-size: 1.2rem;
text-align: center;
font-family: Typewriter;
height: 6rem;
border-radius: 1rem;
border: 0.1rem solid #222;
user-select: none;
}
2019-07-18 01:13:51 +00:00
.l-ra-laitela-unlock {
2020-03-03 06:31:04 +00:00
height: 25rem;
2020-03-01 22:50:50 +00:00
width: 30rem;
2020-03-03 17:57:00 +00:00
margin: 2rem;
2019-07-18 01:13:51 +00:00
border-radius: 2rem;
flex: none none 20rem;
animation: a-ra-color-shift 10s infinite;
pointer-events: none;
}
@keyframes a-ra-color-shift {
0% { background-color: #86ea84; }
25% { background-color: #ea8585; }
50% { background-color: #f1aa7f; }
75% { background-color: #ead584; }
100% { background-color: #86ea84; }
2019-07-18 01:13:51 +00:00
}
.l-ra-laitela-unlock-inner {
font-family: Typewriter;
height: 15rem;
margin: 2rem;
2019-07-18 01:13:51 +00:00
display: flex;
flex-direction: column;
justify-content: center;
}
2019-07-18 01:13:51 +00:00
.l-ra-all-pets-container {
2020-02-23 01:08:33 +00:00
margin: auto;
width: 80rem;
height: 100%;
2019-07-18 01:13:51 +00:00
}
.l-ra-unlock {
position: relative;
height: 10rem;
top: -10rem;
left: 82.5%;
border: 0.2rem solid gainsboro;
2019-07-18 01:13:51 +00:00
background: #35d035;
width: 15%;
border-radius: 0.5rem;
2019-07-18 01:13:51 +00:00
flex-direction: column;
display: flex;
justify-content: center;
}
.l-ra-unlock-inner {
color: black;
2019-07-18 01:13:51 +00:00
margin: auto 0.5rem;
display: flex;
flex-direction: column;
2019-07-18 01:13:51 +00:00
flex: 1 0;
justify-content: center;
}
2019-07-03 11:51:27 +00:00
.l-ra-alchemy-tab {
display: flex;
flex-direction: column;
align-items: center;
position: relative;
}
2019-07-03 13:35:53 +00:00
.c-alchemy-resource-info {
display: flex;
flex-direction: column;
border: 0.1rem solid black;
padding: 0.25rem 1rem;
width: 60rem;
height: 10rem;
2019-07-03 13:35:53 +00:00
font-size: 1.2rem;
text-align: left;
margin-top: 0.5rem;
2019-07-03 13:35:53 +00:00
}
.c-reality-glyph-creation {
display: flex;
flex-direction: column;
padding: 0.25rem 1rem;
width: 60rem;
font-size: 1.2rem;
text-align: left;
}
2019-07-03 15:05:39 +00:00
.l-alchemy-orbit-canvas {
position: absolute;
overflow: visible;
width: 100%;
height: 100%;
left: 0;
}
.l-alchemy-arrow-canvas {
position: absolute;
overflow: visible;
width: 100%;
height: 100%;
left: 0;
}
2019-07-03 11:51:27 +00:00
.l-alchemy-circle {
position: relative;
margin: 3rem;
2019-07-01 16:38:23 +00:00
}
2019-07-03 15:05:39 +00:00
.o-alchemy-orbit {
stroke: #808080;
2019-07-03 15:05:39 +00:00
stroke-width: 1;
fill: none;
2019-07-03 15:10:53 +00:00
transition-duration: 0.2s;
2019-07-03 15:05:39 +00:00
}
.o-alchemy-orbit--unfocused {
stroke: lightgray;
}
.o-alchemy-reaction-arrow {
stroke: #29b6f6;
stroke-width: 2;
stroke-linecap: round;
2019-07-03 15:05:39 +00:00
transition-duration: 0.2s;
}
.t-s4 .o-alchemy-reaction-arrow {
animation: a-rainbow-stroke 2s infinite;
}
@keyframes a-rainbow-stroke {
0% {stroke: red}
14.2% {stroke: orange}
28.4% {stroke: yellow}
42.6% {stroke: green}
56.8% {stroke: blue}
71% {stroke: indigo}
85.2% {stroke: violet}
100% {stroke: red}
}
.o-alchemy-reaction-arrow--focused {
stroke-width: 3;
opacity: 1;
transition-duration: 0.2s;
}
.o-alchemy-reaction-path {
stroke: gray;
opacity: 0.1;
transition-duration: 0.2s;
}
.o-alchemy-reaction-path--focused {
stroke: rgb(204, 102, 102);
stroke-width: 2;
stroke-dasharray: 0.2rem;
opacity: 1;
transition-duration: 0.2s;
}
.o-alchemy-reaction-path--limited {
stroke: #ff9800;
stroke-width: 2;
opacity: 1;
transition-duration: 0.2s;
2019-07-03 15:05:39 +00:00
}
.o-alchemy-node {
2019-09-04 08:18:50 +00:00
color: black;
2019-07-03 11:51:27 +00:00
position: absolute;
2019-08-27 02:29:48 +00:00
width: 3rem;
height: 3rem;
margin-left: -1.5rem;
margin-top: -1.5rem;
2019-07-03 11:51:27 +00:00
user-select: none;
font-size: 2rem;
2019-07-03 13:35:53 +00:00
border: 0.1rem solid black;
2019-07-03 11:51:27 +00:00
border-radius: 50%;
background-color: white;
2019-07-03 15:05:39 +00:00
transition: all 0.2s, z-index 0s;
z-index: 1;
line-height: 1.9rem;
}
.o-alchemy-node-mask {
position: absolute;
width: 2.4rem;
height: 2.4rem;
left: 50%;
top: 50%;
margin-left: -1.2rem;
margin-top: -1.2rem;
background-color: #bbb;
border: 0.1rem solid black;
border-radius: 50%;
z-index: 4;
}
.o-alchemy-resource-arc-wrapper {
width: 2.8rem;
height: 2.8rem;
position: absolute;
background: white;
border-radius: 50%;
}
.o-alchemy-resource-arc-circle {
width: 50%;
height: 100%;
position: absolute;
background: #29b6f6;
}
.o-alchemy-resource-arc-spinner {
border-radius: 1.4rem 0 0 1.4rem;
z-index: 2;
transform-origin: 100% 50%;
}
.o-alchemy-resource-arc-filler {
border-radius: 0 1.4rem 1.4rem 0;
z-index: 1;
left: 50%;
opacity: 0;
}
.o-alchemy-resource-arc-mask {
width: 50%;
height: 100%;
border-radius: 1.4rem 0 0 1.4rem;
position: absolute;
z-index: 3;
opacity: 1;
background: inherit;
2019-07-03 11:51:27 +00:00
}
2019-07-03 15:05:39 +00:00
.o-alchemy-node--unfocused {
opacity: 0.5;
z-index: 4;
2019-07-03 15:05:39 +00:00
}
.o-alchemy-node--locked {
opacity: 0.1;
z-index: 4;
}
2019-07-03 15:05:39 +00:00
.o-alchemy-node--base {
background-color: #81d4fa;
2019-07-01 16:38:23 +00:00
}
2019-07-03 15:05:39 +00:00
.o-alchemy-node--active {
background-color: #9ccc65;
2019-07-03 15:05:39 +00:00
}
.c-ra-unlock-unlocked {
background: lightgreen;
}
.c-ra-teresa-switch-container {
display: flex;
width: 10rem;
margin: 1rem auto;
}
.o-ra-teresa-switch {
border: 0.2rem solid #292929;
width: 5rem;
margin-left: -0.2rem;
height: 2rem;
display: flex;
justify-content: center;
align-items: center;
font-weight: bold;
font-size: 1.1rem;
cursor: pointer;
color: black;
user-select: none;
}
.o-ra-teresa-switch-active {
background: #d89eb1;
}
.o-ra-teresa-switch-active-on {
background: orangered;
}
.o-ra-teresa-switch-idle {
background: #b7e3ff;
}
.o-ra-teresa-switch-idle-on {
background: #00e6ff
}
/* #endregion ra tab*/
/* #startregion laitela tab*/
.l-laitela-celestial-tab {
display: flex;
flex-direction: column;
align-items: center;
}
.o-laitela-run-button {
2020-04-10 09:05:47 +00:00
width: 22rem;
padding: 2rem;
border-radius: 0.5rem;
color: var(--color-laitela--accent);
border: 0.2rem solid var(--color-laitela--accent);
background: var(--color-laitela--base);
font-family: Typewriter;
font-size: 1.2rem;
cursor: pointer;
2020-05-09 13:30:13 +00:00
height: 84rem;
2020-04-08 15:07:42 +00:00
margin-right: 1rem;
}
.t-metro .o-laitela-run-button,
.t-dark-metro .o-laitela-run-button,
.t-inverted-metro .o-laitela-run-button,
.t-s8 .o-laitela-run-button {
border-width: 0.1rem;
border-radius: 0;
}
.o-laitela-matter-amount {
2020-05-08 05:14:04 +00:00
font-size: 1.5rem;
margin-bottom: 0.5rem;
}
.c-matter-dimension-container {
color: var(--color-laitela--accent);
border: 0.2rem solid var(--color-laitela--accent);
background: var(--color-laitela--base);
2020-05-09 13:30:13 +00:00
width: 50rem;
margin: auto;
2020-05-09 13:30:13 +00:00
padding: 1rem;
border-radius: 0.5rem;
margin-bottom: 1rem;
2020-05-09 13:30:13 +00:00
height: 15rem;
}
.t-metro .c-matter-dimension-container,
.t-dark-metro .c-matter-dimension-container,
.t-inverted-metro .c-matter-dimension-container,
.t-s8 .c-matter-dimension-container {
border-width: 0.1rem;
border-radius: 0;
}
.o-matter-dimension-amount {
font-size: 1.6rem;
font-weight: bold;
margin-bottom: 1rem;
}
2020-05-09 13:30:13 +00:00
.c-matter-dimension-buttons {
display: flex;
flex-direction: row;
justify-content: space-between;
width: 47.5rem;
height: 6rem;
}
.o-matter-dimension-button {
2019-08-31 00:44:07 +00:00
width: 15rem;
2020-05-09 13:30:13 +00:00
height: 5rem;
margin-bottom: 1rem;
font-family: Typewriter;
color: var(--color-laitela--accent);
background: var(--color-laitela--base);
border: 0.2rem solid var(--color-laitela--accent);
border-radius: 0.5rem;
2020-04-11 08:25:30 +00:00
transition-duration: 0.15s;
}
.t-metro .o-matter-dimension-button,
.t-dark-metro .o-matter-dimension-button,
.t-inverted-metro .o-matter-dimension-button,
.t-s8 .o-matter-dimension-button {
border-width: 0.1rem;
border-radius: 0;
}
.o-matter-dimension-button--available {
color: var(--color-laitela--base);
background: var(--color-laitela--accent);
border-color: var(--color-laitela--accent);
box-shadow: 0 0 0.5rem 0.1rem inset, 0 0 0.3rem 0;
cursor: pointer;
font-weight: bold;
2020-04-11 08:25:30 +00:00
}
.o-matter-dimension-button--available:hover {
color: var(--color-laitela--accent);
background: var(--color-laitela--base);
box-shadow: none;
}
.o-matter-dimension-button--ascend {
color: var(--color-laitela--base);
background: var(--color-laitela--accent);
border-color: var(--color-laitela--accent);
box-shadow: 0 0 0.5rem 0.1rem inset, 0 0 0.3rem 0;
cursor: pointer;
font-weight: bold;
animation: 3s a-laitela-flash infinite;
}
@keyframes a-laitela-flash {
0% {
color: var(--color-laitela--base);
background: var(--color-laitela--accent);
}
50% {
color: var(--color-laitela--accent);
background: var(--color-laitela--base);
}
100% {
color: var(--color-laitela--base);
background: var(--color-laitela--accent);
}
}
.o-matter-dimension-button--ascend:hover {
color: var(--color-laitela--accent);
background: var(--color-laitela--base);
box-shadow: none;
animation: none;
}
@keyframes a-laitela-flash {
0% {
color: black;
background: white;
}
50% {
color: white;
background: black;
}
100% {
color: black;
background: white;
}
}
2019-08-31 18:53:56 +00:00
.l-laitela-mechanics-container {
display: flex;
align-items: flex-start;
justify-content: center;
}
2020-04-08 15:07:42 +00:00
.c-laitela-milestone {
2020-05-09 13:30:13 +00:00
height: 16%;
2020-04-08 15:07:42 +00:00
width: 22rem;
background: var(--color-laitela--base);
padding: 0.6rem;
2020-05-09 13:30:13 +00:00
margin: 1rem 0 0;
2020-04-08 15:07:42 +00:00
border-radius: 0.5rem;
border: 0.2rem solid;
2020-04-08 15:07:42 +00:00
position: relative;
z-index: -2;
color: var(--color-laitela--accent);
}
.t-metro .c-laitela-milestone,
.t-dark-metro .c-laitela-milestone,
.t-inverted-metro .c-laitela-milestone,
.t-s8 .c-laitela-milestone {
border-width: 0.1rem;
border-radius: 0;
2020-04-08 15:07:42 +00:00
}
.l-singularity-milestone-modal-container-inner .c-laitela-milestone {
2020-04-11 08:25:30 +00:00
box-shadow: 0.1rem 0.1rem 0.3rem black;
}
2020-04-08 15:07:42 +00:00
.c-laitela-milestone__progress {
position: absolute;
top: 0;
left: 0;
height: 100%;
z-index: -1;
}
.l-singularity-milestone-modal-container .c-laitela-milestone--completed {
box-shadow: none;
}
.c-laitela-singularity-container {
color: var(--color-laitela--accent);
background: var(--color-laitela--base);
2020-05-09 13:30:13 +00:00
width: 96rem;
2020-04-08 15:07:42 +00:00
margin: auto;
border: 0.2rem solid var(--color-laitela--accent);
2020-04-08 15:07:42 +00:00
border-radius: 0.5rem;
margin-bottom: 1rem;
display: flex;
2020-05-09 13:30:13 +00:00
justify-content: space-around;
2020-04-08 15:07:42 +00:00
align-items: center;
padding: 1rem;
margin-top: 1rem;
}
.t-metro .c-laitela-singularity-container,
.t-dark-metro .c-laitela-singularity-container,
.t-inverted-metro .c-laitela-singularity-container,
.t-s8 .c-laitela-singularity-container {
border-width: 0.1rem;
border-radius: 0;
}
.c-laitela-singularity-container h2 {
color: var(--color-laitela--accent);
}
2020-04-08 15:07:42 +00:00
.c-laitela-singularity {
padding: 2rem;
width: 40rem;
height: 11rem;
2020-04-08 15:07:42 +00:00
background: black;
border: 0.2rem solid white;
2020-04-08 15:07:42 +00:00
border-radius: 0.5rem;
2020-04-11 08:25:30 +00:00
transition-duration: 0.15s;
2020-04-08 15:07:42 +00:00
}
.t-metro .c-laitela-singularity,
.t-dark-metro .c-laitela-singularity,
.t-inverted-metro .c-laitela-singularity,
.t-s8 .c-laitela-singularity {
border-width: 0.1rem;
border-radius: 0;
}
2020-04-08 15:07:42 +00:00
.c-laitela-singularity h2 {
margin: 0;
color: white;
font-family: Typewriter;
2020-04-10 09:05:47 +00:00
font-size: 1.5rem;
2020-04-11 08:25:30 +00:00
transition-duration: 0.15s;
2020-04-08 15:07:42 +00:00
}
2020-04-11 08:25:30 +00:00
.c-laitela-singularity--active {
cursor: pointer;
}
.c-laitela-singularity--active:hover {
background: white;
border-color: black;
2020-04-11 08:25:30 +00:00
}
.c-laitela-singularity--active:hover h2 {
2020-04-08 15:07:42 +00:00
color: black;
}
.c-laitela-singularity__cap-control {
color: var(--color-laitela--accent);
background: var(--color-laitela--base);
2020-04-08 15:07:42 +00:00
padding: 1rem;
width: 20rem;
margin-bottom: 1rem;
border: 0.2rem solid var(--color-laitela--accent);
2020-04-08 15:07:42 +00:00
border-radius: .5rem;
cursor: pointer;
font-family: Typewriter;
2020-04-10 09:05:47 +00:00
font-size: 1.1rem;
2020-04-08 15:07:42 +00:00
font-weight: bold;
2020-04-11 08:25:30 +00:00
transition-duration: 0.15s;
2020-04-08 15:07:42 +00:00
}
.t-metro .c-laitela-singularity__cap-control,
.t-dark-metro .c-laitela-singularity__cap-control,
.t-inverted-metro .c-laitela-singularity__cap-control,
.t-s8 .c-laitela-singularity__cap-control {
border-width: 0.1rem;
border-radius: 0;
}
2020-04-08 15:07:42 +00:00
.c-laitela-singularity__cap-control:hover {
color: var(--color-laitela--base);
background: var(--color-laitela--accent);
2020-04-08 15:07:42 +00:00
}
2020-05-09 13:30:13 +00:00
.l-singularity-milestone-modal-container-outer {
height: 50rem;
overflow-y: scroll;
}
.l-singularity-milestone-modal-container-inner {
2020-04-08 15:07:42 +00:00
display: flex;
flex-wrap: wrap;
2020-05-09 13:30:13 +00:00
height: 120rem;
width: 93rem;
justify-content: space-evenly;
padding-bottom: 2rem;
2020-04-08 15:07:42 +00:00
}
.o-laitela-singularity-modal-button {
color: var(--color-laitela--accent);
background: var(--color-laitela--base);
2020-05-09 13:30:13 +00:00
padding: 0.6rem;
margin: 0;
2020-04-08 15:07:42 +00:00
font-weight: bold;
width: 22rem;
2020-05-09 13:30:13 +00:00
height: 4%;
2020-04-08 15:07:42 +00:00
border-radius: .5rem;
border: 0.2rem solid var(--color-laitela--accent);
2020-04-08 15:07:42 +00:00
cursor: pointer;
2020-04-11 08:25:30 +00:00
transition-duration: 0.15s;
}
.t-metro .o-laitela-singularity-modal-button,
.t-dark-metro .o-laitela-singularity-modal-button,
.t-inverted-metro .o-laitela-singularity-modal-button,
.t-s8 .o-laitela-singularity-modal-button {
border-width: 0.1rem;
border-radius: 0;
}
2020-04-11 08:25:30 +00:00
.o-laitela-singularity-modal-button:hover {
color: var(--color-laitela--base);
background: var(--color-laitela--accent);
2020-04-08 15:07:42 +00:00
}
.c-laitela-next-milestones {
margin-left: 1rem;
display: flex;
flex-direction: column;
2020-05-09 13:30:13 +00:00
height: 84rem;
2020-04-08 15:07:42 +00:00
}
@keyframes a-dark-energy-glow {
0% { box-shadow: 0 0 0 rgb(53, 10, 53); }
50% { box-shadow: 0 0 5px rgb(53, 10, 53); }
100% { box-shadow: 0 0 0 rgb(53, 10, 53); }
2019-08-31 19:43:24 +00:00
}
2019-08-31 00:44:07 +00:00
.o-laitela-run-button__icon {
height: 12rem;
width: 12rem;
border-radius: 50%;
background-color: black;
2019-08-31 21:00:05 +00:00
background-image: url(../images/laitela-icon.svg);
background-position: center;
background-repeat: repeat-y;
background-size: 4.95rem;
2019-08-31 00:44:07 +00:00
align-items: center;
margin: 1.5rem auto;
border: 0.4rem solid var(--color-laitela--accent);
animation: a-laitela-run-button__icon--scroll 15s infinite linear;
2019-08-31 21:00:05 +00:00
transition-duration: 0.2s;
2019-08-31 00:44:07 +00:00
}
2019-08-31 21:00:05 +00:00
.o-laitela-run-button__icon:hover {
background-image: url(../images/laitela-icon-dark.svg);
background-color: white;
}
2019-08-31 00:44:07 +00:00
2019-08-31 21:00:05 +00:00
.o-laitela-run-button__icon--running {
animation: a-laitela-run-button__icon--scroll 5s infinite linear;
2019-08-31 00:44:07 +00:00
}
@keyframes a-laitela-run-button__icon--scroll {
0% {background-position-y: 0}
2019-08-31 21:00:05 +00:00
100% {background-position-y: 24rem}
2019-08-31 00:44:07 +00:00
}
.c-laitela-annihilation-button {
2020-05-14 04:57:50 +00:00
color: var(--color-laitela--accent);
background: var(--color-laitela--base);
2020-05-09 13:30:13 +00:00
padding: 1rem;
2020-04-08 15:07:42 +00:00
width: 50rem;
2020-05-09 13:30:13 +00:00
height: 20rem;
2020-05-14 04:57:50 +00:00
border: 0.2rem solid var(--color-laitela--accent);
border-radius: 0.5rem;
2019-08-31 00:44:07 +00:00
font-family: Typewriter, serif;
cursor: pointer;
transition-duration: 0.3s;
2020-04-08 15:07:42 +00:00
display: block;
2019-08-31 00:44:07 +00:00
}
2020-05-14 04:57:50 +00:00
.t-metro .c-laitela-annihilation-button,
.t-dark-metro .c-laitela-annihilation-button,
.t-inverted-metro .c-laitela-annihilation-button
.t-s8 .c-laitela-annihilation-button {
border-width: 0.1rem;
border-radius: 0;
}
2019-08-31 00:44:07 +00:00
.c-laitela-annihilation-button h2 {
color: inherit;
}
.c-laitela-annihilation-button b {
color: inherit;
}
.c-laitela-annihilation-button:hover {
2020-05-14 04:57:50 +00:00
background: var(--color-laitela--accent);
color: var(--color-laitela--base) !important; /* h2 color overrides this */
2019-08-31 00:44:07 +00:00
}
.c-laitela-automation-toggle {
color: var(--color-laitela--accent);
background: var(--color-laitela--base);
padding: 0.5rem;
width: 20rem;
height: 3rem;
border: 0.2rem solid var(--color-laitela--accent);
border-radius: .5rem;
cursor: pointer;
font-family: Typewriter;
font-size: 1.1rem;
font-weight: bold;
transition-duration: 0.15s;
}
.c-laitela-automation-toggle:hover {
color: var(--color-laitela--base) !important;
background: var(--color-laitela--accent) !important;
}
/* #endregion laitela tab*/
.c-performance-stats {
width: 25rem;
padding: 0.3rem;
position: fixed;
top: 0;
left: 0;
border: 0.1rem solid black;
text-align: left;
background-color: whitesmoke;
z-index: 999;
}
.c-glyph-level-factors-dropdown-header {
color: #d5ffd7;
width: auto;
font-weight: bold;
text-align: center;
background: black;
border: 0.2rem solid var(--color-reality);
border-radius: 0.5rem;
padding-top: 0.3rem;
padding-bottom: 0.3rem;
}
.t-metro .c-glyph-level-factors-dropdown-header,
.t-dark-metro .c-glyph-level-factors-dropdown-header,
.t-inverted-metro .c-glyph-level-factors-dropdown-header,
.t-s8 .c-glyph-level-factors-dropdown-header {
border-width: 0.1rem;
border-radius: 0;
}
.l-glyph-levels-and-weights {
display: -ms-grid;
display: grid;
width: 100%;
padding-top: 1rem;
}
.c-glyph-levels-and-weights {
font-weight: bold;
background: black;
}
.l-glyph-levels-and-weights__adjust-label {
grid-column: 4;
-ms-grid-column: 4;
-ms-grid-column-span: 2;
grid-row: 5;
-ms-grid-row: 5;
white-space: nowrap;
font-weight: bold;
padding: 0.25em 0 .25em 1em;
z-index: 2;
}
2020-04-12 01:10:08 +00:00
.l-glyph-levels-and-weights__adjust-auto {
grid-column: 4;
-ms-grid-column: 4;
-ms-grid-column-span: 2;
grid-row: 6;
-ms-grid-row: 6;
white-space: nowrap;
font-weight: bold;
padding: 0.25em 0 .25em 1em;
z-index: 2;
}
.l-glyph-levels-and-weights__adjust-outline {
grid-column: 4 / 5;
-ms-grid-column: 4;
-ms-grid-column-span: 1;
-ms-grid-row: 1;
position:relative;
}
.l-glyph-levels-and-weights__adjust-outline::after {
content: '';
position: absolute;
border: 0.2rem solid #d5ffd7;
border-radius: 0.5em;
top: -0.5em;
bottom: -0.5em;
left: -0.5em;
right: -0.5em;
}
.t-metro .l-glyph-levels-and-weights__adjust-outline::after,
.t-dark-metro .l-glyph-levels-and-weights__adjust-outline::after,
.t-inverted-metro .l-glyph-levels-and-weights__adjust-outline::after,
.t-s8 .l-glyph-levels-and-weights__adjust-outline::after {
border-width: 0.1rem;
border-radius: 0;
}
.l-glyph-levels-and-weights__factor {
grid-column: 1;
-ms-grid-column: 1;
text-align: left;
padding-left: 1em;
padding-top: 0.3em;
padding-bottom: 0.3em;
display:flex;
align-items: center;
}
.l-glyph-levels-and-weights__operator {
grid-column: 2;
-ms-grid-column: 2;
display:flex;
align-items: center;
padding-left: 1em;
}
.l-glyph-levels-and-weights__factor-val {
grid-column: 3;
-ms-grid-column: 3;
text-align: right;
padding-left: 1em;
display: flex;
align-items: center;
justify-content: flex-end;
padding-right: 2em;
}
.l-glyph-levels-and-weights__slider {
grid-column: 4;
-ms-grid-column: 4;
display: flex;
align-items: center;
margin-top: 0.4rem;
margin-bottom: 0.4rem;
}
.c-glyph-levels-and-weights__slider-process {
background-color: #d5ffd7;
}
.c-glyph-levels-and-weights__slider-bg {
background-color: var(--color-reality);
}
.c-glyph-levels-and-weights__slider-handle {
color: #d5ffd7;
background-color: black;
box-shadow: 0 0 0 0.1rem #d5ffd7;
border-radius: 0.8rem;
}
.l-glyph-levels-and-weights__reset-btn-outer {
z-index:2;
display: inline-flex;
align-items: center;
justify-content: center;
}
.l-glyph-levels-and-weights__reset-btn {
display: inline-block;
2020-04-12 01:13:16 +00:00
padding: 0.2rem 0.5rem;
}
.c-glyph-levels-and-weights__reset-btn {
color: #d5ffd7;
background-color: black;
border-radius: 0.5rem;
border: 0.1rem solid #d5ffd7;
}
.c-glyph-levels-and-weights__reset-btn:hover {
color: black;
background-color: #d5ffd7;
}
2020-04-12 01:10:08 +00:00
.l-glyph-levels-and-weights__auto-btn {
display: inline-block;
2020-04-12 01:13:16 +00:00
padding: 0.2rem 0.5rem;
2020-04-12 01:10:08 +00:00
font-size: 10px;
}
.c-glyph-levels-and-weights__auto-btn {
color: #d5ffd7;
background-color: black;
border-radius: 0.5rem;
border: 0.1rem solid #d5ffd7;
}
.c-glyph-levels-and-weights__auto-btn:hover {
color: black;
background-color: #d5ffd7;
}
.o-questionmark {
border-radius: 50%;
border: 0.1rem solid;
width: 1.2em;
height: 1.2em;
font-size: smaller;
display: inline-flex;
align-items: center;
justify-content: center;
z-index: 5;
}
.l-glyphs-tab {
display: flex;
flex-direction: row;
justify-content: center;
}
@keyframes a-reality-glyph-outer-cycle {
2019-09-10 06:20:45 +00:00
0% {
background-color: #b67f33;
box-shadow: #b67f33 0 0 1rem 0.2rem;
2019-09-10 06:20:45 +00:00
}
20% {
background-color: #64dd17;
box-shadow: #64dd17 0 0 1rem 0.2rem;
2019-09-10 06:20:45 +00:00
}
40% {
background-color: #22aa48;
box-shadow: #22aa48 0 0 1rem 0.2rem;
2019-09-10 06:20:45 +00:00
}
60% {
background-color: #03a9f4;
box-shadow: #03a9f4 0 0 1rem 0.2rem;
2019-09-10 06:20:45 +00:00
}
80% {
background-color: #b241e3;
box-shadow: #b241e3 0 0 1rem 0.2rem;
2019-09-10 06:20:45 +00:00
}
100% {
background-color: #b67f33;
box-shadow: #b67f33 0 0 1rem 0.2rem;
2019-09-10 06:20:45 +00:00
}
}
@keyframes a-reality-glyph-over-cycle {
2019-09-10 06:20:45 +00:00
0% {
box-shadow: #b67f33 0 0 1rem calc(0.3rem) inset;
2019-09-10 06:20:45 +00:00
}
20% {
box-shadow: #64dd17 0 0 1rem calc(0.3rem) inset;
2019-09-10 06:20:45 +00:00
}
40% {
box-shadow: #22aa48 0 0 1rem calc(0.3rem) inset;
2019-09-10 06:20:45 +00:00
}
60% {
box-shadow: #03a9f4 0 0 1rem calc(0.3rem) inset;
2019-09-10 06:20:45 +00:00
}
80% {
box-shadow: #b241e3 0 0 1rem calc(0.3rem) inset;
2019-09-10 06:20:45 +00:00
}
100% {
box-shadow: #b67f33 0 0 1rem calc(0.3rem) inset;
2019-09-10 06:20:45 +00:00
}
}
@keyframes a-reality-glyph-icon-cycle {
0% {
color: #b67f33;
text-shadow: #b67f33 -0.04em 0.04em 0.08em;
}
20% {
color: #64dd17;
text-shadow: #64dd17 -0.04em 0.04em 0.08em;
}
40% {
color: #22aa48;
text-shadow: #22aa48 -0.04em 0.04em 0.08em;
}
60% {
color: #03a9f4;
text-shadow: #03a9f4 -0.04em 0.04em 0.08em;
}
80% {
color: #b241e3;
text-shadow: #b241e3 -0.04em 0.04em 0.08em;
}
100% {
color: #b67f33;
text-shadow: #b67f33 -0.04em 0.04em 0.08em;
}
}
@keyframes a-reality-glyph-description-cycle {
0% {
color: #b67f33;
text-shadow: black -1px 1px 1px, black 1px 1px 1px, black -1px -1px 1px, black 1px -1px 1px, #b67f33 0 0 3px
}
20% {
color: #64dd17;
text-shadow: black -1px 1px 1px, black 1px 1px 1px, black -1px -1px 1px, black 1px -1px 1px, #64dd17 0 0 3px
}
40% {
color: #22aa48;
text-shadow: black -1px 1px 1px, black 1px 1px 1px, black -1px -1px 1px, black 1px -1px 1px, #22aa48 0 0 3px
}
60% {
color: #03a9f4;
text-shadow: black -1px 1px 1px, black 1px 1px 1px, black -1px -1px 1px, black 1px -1px 1px, #03a9f4 0 0 3px
}
80% {
color: #b241e3;
text-shadow: black -1px 1px 1px, black 1px 1px 1px, black -1px -1px 1px, black 1px -1px 1px, #b241e3 0 0 3px
}
100% {
color: #b67f33;
text-shadow: black -1px 1px 1px, black 1px 1px 1px, black -1px -1px 1px, black 1px -1px 1px, #b67f33 0 0 3px
}
}
@keyframes a-reality-glyph-dot-cycle {
0% {
background: #b67f33;
}
20% {
background: #64dd17;
}
40% {
background: #22aa48;
}
60% {
background: #03a9f4;
}
80% {
background: #b241e3;
}
100% {
background: #b67f33;
}
}
.l-reality-button-column {
display: flex;
flex-direction: column;
padding-top: 5rem;
align-items: center;
margin-right: 2rem;
}
.l-player-glyphs-column {
display: flex;
flex-direction: column;
padding-top: 2rem;
justify-content: flex-start;
}
.l-reality-upgrade-grid {
display: flex;
flex-direction: column;
margin-top: 1.2rem;
width: 100%;
align-items: center;
}
.l-reality-upgrade-grid__row {
display: flex;
flex-direction: row;
}
.l-reality-upgrade-btn {
height: 10rem;
2020-04-29 22:04:57 +00:00
padding: 0 1rem;
display: flex;
justify-content: center;
align-items: center;
flex-direction: column;
position: relative;
width: 25rem;
margin: 1.2rem;
flex: 1 1 0;
}
.c-reality-upgrade-btn {
background-color: black;
border: 0.2rem solid var(--color-reality);
border-radius: 0.5rem;
color: #d5ffd7;
cursor: pointer;
2020-04-11 08:25:30 +00:00
transition-duration: 0.15s;
text-align: center;
font-size: 1rem;
font-family: Typewriter, serif;
}
.c-reality-upgrade-btn__requirement {
font-weight: bold;
}
.c-reality-upgrade-btn:hover {
color: black;
background-color: #d5ffd7;
}
.c-reality-upgrade-btn--unavailable {
background-color: #656565;
cursor: default;
}
.c-reality-upgrade-btn--unavailable:hover {
background-color: #656565;
color: #d5ffd7;
}
.c-reality-upgrade-btn--bought {
background-color: var(--color-reality);
border-color: #094E0B;
cursor: default;
}
.c-reality-upgrade-btn--bought:hover {
color: #d5ffd7;
background-color: var(--color-reality);
}
.c-reality-upgrade-btn--possible {
background-color: #8b8529;
cursor: default;
}
2020-04-21 23:04:31 +00:00
.c-reality-upgrade-btn--possible:hover {
background-color: #8b8529;
color: #d5ffd7;
}
.c-reality-upgrade-btn--locked {
background-color: #a53939;
cursor: default;
}
.c-reality-upgrade-btn--locked:hover {
background-color: #a53939;
color: #d5ffd7;
}
2019-04-05 21:36:15 +00:00
.c-reality-upgrade-btn--black-hole-unlock {
margin: auto;
2019-04-05 21:36:15 +00:00
text-shadow: -0.1rem 0.1rem 0.3rem #d5ffd7
}
.t-metro .c-reality-upgrade-btn,
.t-dark-metro .c-reality-upgrade-btn,
.t-inverted-metro .c-reality-upgrade-btn,
.t-s8 .c-reality-upgrade-btn {
border-width: 0.1rem;
border-radius: 0;
}
2019-04-17 20:54:36 +00:00
.t-dark .c-reality-upgrade-btn--unavailable {
color: #d5ffd7;
2019-04-17 20:54:36 +00:00
background-color: #37474f;
}
2019-04-17 20:54:36 +00:00
.t-dark .c-reality-upgrade-btn--locked {
color: #d5ffd7;
background-color: var(--color-bad);
}
.t-s6.c-reality-upgrade-btn:hover {
background-color: #d5ffd7;
}
.t-s6.c-reality-upgrade-btn--unavailable:hover {
background-color: #656565;
color: #d5ffd7;
}
.t-s6.c-reality-upgrade-btn--bought {
background-color: var(--color-reality);
border-color: #094E0B;
}
.t-s6.c-reality-upgrade-btn--bought:hover {
color: #d5ffd7;
background-color: var(--color-reality);
2019-04-05 21:36:15 +00:00
}
.l-black-hole-tab {
display: flex;
flex-direction: column;
align-items: center;
}
.l-black-hole-upgrade-grid {
display: flex;
flex-direction: column;
width: 75rem;
align-items: center;
}
.l-black-hole-upgrade-grid__row {
display: flex;
flex-direction: row;
}
.c-black-hole-canvas {
margin-top: 0.5rem;
border: 0.1rem solid black;
2019-04-05 22:27:31 +00:00
}
2019-09-04 08:18:50 +00:00
.t-s1 .c-black-hole-canvas {
background: black;
border-radius: 50%;
}
2019-04-05 22:27:31 +00:00
.c-pp-label {
position: absolute;
left: 50%;
transform: translateX(-50%);
2019-04-10 12:54:09 +00:00
}
/*#region reality-tab*/
.c-reality-tab__header {
font-size: 1.5rem;
margin: 1.5rem 0;
}
G420 automator work (#616) * WIP automator backend * backend is now capable of running a really tiny test program * Automator WIP * Make nested things in AutomatorBackend lower case * For now, translate strings to Decimals in stored scripts as possible * change "currency" to "comparable" in automator backend * rebase razen's automator work onto current master, fix rebase errors * block automator code that doesn't even work * update vue-draggable version * update index.html for new vue draggable * trying to get draggable to work * update sortable.min.js * more block automator work * plenty of more functionality like nesting and deleting rows * add while * text parse from blocks * parse blocks into automator and delete nested commands * scratch file with grammar * scratch file with grammar * Automator grammar with CST visitor that reports some semantic errors * add in codemirror css and js * checkpoint of automator work so far * automator state of affairs * refactor big crunch code a bit * automator work checkpoint * small fixes to non-automato stuff * script storage in player sketched out * update to loading scripts from save * Nuke old code * include font awesome stylesheet * Add GAME_LOAD event * automato can now run a simple script (triggered from console at the moment) * Added automato controls * add repeat support to automato * a little more work on automato buttons * refactor code for getting current EC completions a bit to support automato * automato working well enough to run an automated reality script * Beautify automator UI * fix issue with numeric vars in automato; remove some console logs * fix auto eternity and script looping logic in automato * fix pause with variable-defined time and plain pause command * add support for black hole and stored time on/off in automato * crude support for renaming scripts * hide rename icon when renaming * support creating and opening scripts in automato * new tomato tutorials * add store time use to automator * add more automato command docs * add working tooltips for automato buttons * indicate which script is running in dropdown menu * remove more old automator cruft * remove console printouts * fix active button colors in automato * indicate active automato line in gutter
2019-06-30 03:04:57 +00:00
.c-reality-tab__reality-machines {
color: var(--color-reality);
}
/*#region themes*/
/*#region t-dark t-s6*/
.t-dark .c-reality-tab__reality-machines,
.t-s6 .c-reality-tab__reality-machines {
text-shadow: 0 0 0.7rem;
}
/*#endregion t-dark t-s6*/
/*#region t-s1*/
.t-s1 .c-reality-tab__reality-machines {
text-shadow: 0.1rem 0.1rem 0 black;
}
G420 automator work (#616) * WIP automator backend * backend is now capable of running a really tiny test program * Automator WIP * Make nested things in AutomatorBackend lower case * For now, translate strings to Decimals in stored scripts as possible * change "currency" to "comparable" in automator backend * rebase razen's automator work onto current master, fix rebase errors * block automator code that doesn't even work * update vue-draggable version * update index.html for new vue draggable * trying to get draggable to work * update sortable.min.js * more block automator work * plenty of more functionality like nesting and deleting rows * add while * text parse from blocks * parse blocks into automator and delete nested commands * scratch file with grammar * scratch file with grammar * Automator grammar with CST visitor that reports some semantic errors * add in codemirror css and js * checkpoint of automator work so far * automator state of affairs * refactor big crunch code a bit * automator work checkpoint * small fixes to non-automato stuff * script storage in player sketched out * update to loading scripts from save * Nuke old code * include font awesome stylesheet * Add GAME_LOAD event * automato can now run a simple script (triggered from console at the moment) * Added automato controls * add repeat support to automato * a little more work on automato buttons * refactor code for getting current EC completions a bit to support automato * automato working well enough to run an automated reality script * Beautify automator UI * fix issue with numeric vars in automato; remove some console logs * fix auto eternity and script looping logic in automato * fix pause with variable-defined time and plain pause command * add support for black hole and stored time on/off in automato * crude support for renaming scripts * hide rename icon when renaming * support creating and opening scripts in automato * new tomato tutorials * add store time use to automator * add more automato command docs * add working tooltips for automato buttons * indicate which script is running in dropdown menu * remove more old automator cruft * remove console printouts * fix active button colors in automato * indicate active automato line in gutter
2019-06-30 03:04:57 +00:00
/*#endregion t-s1*/
/*#endregion themes*/
/*#endregion reality-tab*/
G420 automator work (#616) * WIP automator backend * backend is now capable of running a really tiny test program * Automator WIP * Make nested things in AutomatorBackend lower case * For now, translate strings to Decimals in stored scripts as possible * change "currency" to "comparable" in automator backend * rebase razen's automator work onto current master, fix rebase errors * block automator code that doesn't even work * update vue-draggable version * update index.html for new vue draggable * trying to get draggable to work * update sortable.min.js * more block automator work * plenty of more functionality like nesting and deleting rows * add while * text parse from blocks * parse blocks into automator and delete nested commands * scratch file with grammar * scratch file with grammar * Automator grammar with CST visitor that reports some semantic errors * add in codemirror css and js * checkpoint of automator work so far * automator state of affairs * refactor big crunch code a bit * automator work checkpoint * small fixes to non-automato stuff * script storage in player sketched out * update to loading scripts from save * Nuke old code * include font awesome stylesheet * Add GAME_LOAD event * automato can now run a simple script (triggered from console at the moment) * Added automato controls * add repeat support to automato * a little more work on automato buttons * refactor code for getting current EC completions a bit to support automato * automato working well enough to run an automated reality script * Beautify automator UI * fix issue with numeric vars in automato; remove some console logs * fix auto eternity and script looping logic in automato * fix pause with variable-defined time and plain pause command * add support for black hole and stored time on/off in automato * crude support for renaming scripts * hide rename icon when renaming * support creating and opening scripts in automato * new tomato tutorials * add store time use to automator * add more automato command docs * add working tooltips for automato buttons * indicate which script is running in dropdown menu * remove more old automator cruft * remove console printouts * fix active button colors in automato * indicate active automato line in gutter
2019-06-30 03:04:57 +00:00
.c-automator-blocks {
width: 100%;
2019-08-26 07:36:06 +00:00
padding-bottom: 5rem;
G420 automator work (#616) * WIP automator backend * backend is now capable of running a really tiny test program * Automator WIP * Make nested things in AutomatorBackend lower case * For now, translate strings to Decimals in stored scripts as possible * change "currency" to "comparable" in automator backend * rebase razen's automator work onto current master, fix rebase errors * block automator code that doesn't even work * update vue-draggable version * update index.html for new vue draggable * trying to get draggable to work * update sortable.min.js * more block automator work * plenty of more functionality like nesting and deleting rows * add while * text parse from blocks * parse blocks into automator and delete nested commands * scratch file with grammar * scratch file with grammar * Automator grammar with CST visitor that reports some semantic errors * add in codemirror css and js * checkpoint of automator work so far * automator state of affairs * refactor big crunch code a bit * automator work checkpoint * small fixes to non-automato stuff * script storage in player sketched out * update to loading scripts from save * Nuke old code * include font awesome stylesheet * Add GAME_LOAD event * automato can now run a simple script (triggered from console at the moment) * Added automato controls * add repeat support to automato * a little more work on automato buttons * refactor code for getting current EC completions a bit to support automato * automato working well enough to run an automated reality script * Beautify automator UI * fix issue with numeric vars in automato; remove some console logs * fix auto eternity and script looping logic in automato * fix pause with variable-defined time and plain pause command * add support for black hole and stored time on/off in automato * crude support for renaming scripts * hide rename icon when renaming * support creating and opening scripts in automato * new tomato tutorials * add store time use to automator * add more automato command docs * add working tooltips for automato buttons * indicate which script is running in dropdown menu * remove more old automator cruft * remove console printouts * fix active button colors in automato * indicate active automato line in gutter
2019-06-30 03:04:57 +00:00
}
.o-automator-command {
border: 0.1rem solid #353535;
padding: 0.5rem;
G420 automator work (#616) * WIP automator backend * backend is now capable of running a really tiny test program * Automator WIP * Make nested things in AutomatorBackend lower case * For now, translate strings to Decimals in stored scripts as possible * change "currency" to "comparable" in automator backend * rebase razen's automator work onto current master, fix rebase errors * block automator code that doesn't even work * update vue-draggable version * update index.html for new vue draggable * trying to get draggable to work * update sortable.min.js * more block automator work * plenty of more functionality like nesting and deleting rows * add while * text parse from blocks * parse blocks into automator and delete nested commands * scratch file with grammar * scratch file with grammar * Automator grammar with CST visitor that reports some semantic errors * add in codemirror css and js * checkpoint of automator work so far * automator state of affairs * refactor big crunch code a bit * automator work checkpoint * small fixes to non-automato stuff * script storage in player sketched out * update to loading scripts from save * Nuke old code * include font awesome stylesheet * Add GAME_LOAD event * automato can now run a simple script (triggered from console at the moment) * Added automato controls * add repeat support to automato * a little more work on automato buttons * refactor code for getting current EC completions a bit to support automato * automato working well enough to run an automated reality script * Beautify automator UI * fix issue with numeric vars in automato; remove some console logs * fix auto eternity and script looping logic in automato * fix pause with variable-defined time and plain pause command * add support for black hole and stored time on/off in automato * crude support for renaming scripts * hide rename icon when renaming * support creating and opening scripts in automato * new tomato tutorials * add store time use to automator * add more automato command docs * add working tooltips for automato buttons * indicate which script is running in dropdown menu * remove more old automator cruft * remove console printouts * fix active button colors in automato * indicate active automato line in gutter
2019-06-30 03:04:57 +00:00
display: inline-block;
2019-07-14 00:47:32 +00:00
background: #000115;
color: #c080ff;
border-radius: 0.5rem;
2019-07-14 00:47:32 +00:00
width: 8.5rem;
G420 automator work (#616) * WIP automator backend * backend is now capable of running a really tiny test program * Automator WIP * Make nested things in AutomatorBackend lower case * For now, translate strings to Decimals in stored scripts as possible * change "currency" to "comparable" in automator backend * rebase razen's automator work onto current master, fix rebase errors * block automator code that doesn't even work * update vue-draggable version * update index.html for new vue draggable * trying to get draggable to work * update sortable.min.js * more block automator work * plenty of more functionality like nesting and deleting rows * add while * text parse from blocks * parse blocks into automator and delete nested commands * scratch file with grammar * scratch file with grammar * Automator grammar with CST visitor that reports some semantic errors * add in codemirror css and js * checkpoint of automator work so far * automator state of affairs * refactor big crunch code a bit * automator work checkpoint * small fixes to non-automato stuff * script storage in player sketched out * update to loading scripts from save * Nuke old code * include font awesome stylesheet * Add GAME_LOAD event * automato can now run a simple script (triggered from console at the moment) * Added automato controls * add repeat support to automato * a little more work on automato buttons * refactor code for getting current EC completions a bit to support automato * automato working well enough to run an automated reality script * Beautify automator UI * fix issue with numeric vars in automato; remove some console logs * fix auto eternity and script looping logic in automato * fix pause with variable-defined time and plain pause command * add support for black hole and stored time on/off in automato * crude support for renaming scripts * hide rename icon when renaming * support creating and opening scripts in automato * new tomato tutorials * add store time use to automator * add more automato command docs * add working tooltips for automato buttons * indicate which script is running in dropdown menu * remove more old automator cruft * remove console printouts * fix active button colors in automato * indicate active automato line in gutter
2019-06-30 03:04:57 +00:00
user-select: none;
cursor: grab;
}
2019-07-14 00:47:32 +00:00
.c-automator-docs .o-automator-command {
margin-bottom: 0.5rem;
margin-right: 0.5rem;
2019-07-14 00:47:32 +00:00
}
.o-automator-command--ghost {
color: red;
}
G420 automator work (#616) * WIP automator backend * backend is now capable of running a really tiny test program * Automator WIP * Make nested things in AutomatorBackend lower case * For now, translate strings to Decimals in stored scripts as possible * change "currency" to "comparable" in automator backend * rebase razen's automator work onto current master, fix rebase errors * block automator code that doesn't even work * update vue-draggable version * update index.html for new vue draggable * trying to get draggable to work * update sortable.min.js * more block automator work * plenty of more functionality like nesting and deleting rows * add while * text parse from blocks * parse blocks into automator and delete nested commands * scratch file with grammar * scratch file with grammar * Automator grammar with CST visitor that reports some semantic errors * add in codemirror css and js * checkpoint of automator work so far * automator state of affairs * refactor big crunch code a bit * automator work checkpoint * small fixes to non-automato stuff * script storage in player sketched out * update to loading scripts from save * Nuke old code * include font awesome stylesheet * Add GAME_LOAD event * automato can now run a simple script (triggered from console at the moment) * Added automato controls * add repeat support to automato * a little more work on automato buttons * refactor code for getting current EC completions a bit to support automato * automato working well enough to run an automated reality script * Beautify automator UI * fix issue with numeric vars in automato; remove some console logs * fix auto eternity and script looping logic in automato * fix pause with variable-defined time and plain pause command * add support for black hole and stored time on/off in automato * crude support for renaming scripts * hide rename icon when renaming * support creating and opening scripts in automato * new tomato tutorials * add store time use to automator * add more automato command docs * add working tooltips for automato buttons * indicate which script is running in dropdown menu * remove more old automator cruft * remove console printouts * fix active button colors in automato * indicate active automato line in gutter
2019-06-30 03:04:57 +00:00
.c-automator-command-list {
display: flex;
align-items: center;
2019-07-14 00:47:32 +00:00
flex-wrap: wrap;
G420 automator work (#616) * WIP automator backend * backend is now capable of running a really tiny test program * Automator WIP * Make nested things in AutomatorBackend lower case * For now, translate strings to Decimals in stored scripts as possible * change "currency" to "comparable" in automator backend * rebase razen's automator work onto current master, fix rebase errors * block automator code that doesn't even work * update vue-draggable version * update index.html for new vue draggable * trying to get draggable to work * update sortable.min.js * more block automator work * plenty of more functionality like nesting and deleting rows * add while * text parse from blocks * parse blocks into automator and delete nested commands * scratch file with grammar * scratch file with grammar * Automator grammar with CST visitor that reports some semantic errors * add in codemirror css and js * checkpoint of automator work so far * automator state of affairs * refactor big crunch code a bit * automator work checkpoint * small fixes to non-automato stuff * script storage in player sketched out * update to loading scripts from save * Nuke old code * include font awesome stylesheet * Add GAME_LOAD event * automato can now run a simple script (triggered from console at the moment) * Added automato controls * add repeat support to automato * a little more work on automato buttons * refactor code for getting current EC completions a bit to support automato * automato working well enough to run an automated reality script * Beautify automator UI * fix issue with numeric vars in automato; remove some console logs * fix auto eternity and script looping logic in automato * fix pause with variable-defined time and plain pause command * add support for black hole and stored time on/off in automato * crude support for renaming scripts * hide rename icon when renaming * support creating and opening scripts in automato * new tomato tutorials * add store time use to automator * add more automato command docs * add working tooltips for automato buttons * indicate which script is running in dropdown menu * remove more old automator cruft * remove console printouts * fix active button colors in automato * indicate active automato line in gutter
2019-06-30 03:04:57 +00:00
}
.c-automator-block-row {
display: flex;
align-items: center;
margin-bottom: 0.5rem;
G420 automator work (#616) * WIP automator backend * backend is now capable of running a really tiny test program * Automator WIP * Make nested things in AutomatorBackend lower case * For now, translate strings to Decimals in stored scripts as possible * change "currency" to "comparable" in automator backend * rebase razen's automator work onto current master, fix rebase errors * block automator code that doesn't even work * update vue-draggable version * update index.html for new vue draggable * trying to get draggable to work * update sortable.min.js * more block automator work * plenty of more functionality like nesting and deleting rows * add while * text parse from blocks * parse blocks into automator and delete nested commands * scratch file with grammar * scratch file with grammar * Automator grammar with CST visitor that reports some semantic errors * add in codemirror css and js * checkpoint of automator work so far * automator state of affairs * refactor big crunch code a bit * automator work checkpoint * small fixes to non-automato stuff * script storage in player sketched out * update to loading scripts from save * Nuke old code * include font awesome stylesheet * Add GAME_LOAD event * automato can now run a simple script (triggered from console at the moment) * Added automato controls * add repeat support to automato * a little more work on automato buttons * refactor code for getting current EC completions a bit to support automato * automato working well enough to run an automated reality script * Beautify automator UI * fix issue with numeric vars in automato; remove some console logs * fix auto eternity and script looping logic in automato * fix pause with variable-defined time and plain pause command * add support for black hole and stored time on/off in automato * crude support for renaming scripts * hide rename icon when renaming * support creating and opening scripts in automato * new tomato tutorials * add store time use to automator * add more automato command docs * add working tooltips for automato buttons * indicate which script is running in dropdown menu * remove more old automator cruft * remove console printouts * fix active button colors in automato * indicate active automato line in gutter
2019-06-30 03:04:57 +00:00
}
.c-automator-block-row > * {
margin-right: 0.5rem
G420 automator work (#616) * WIP automator backend * backend is now capable of running a really tiny test program * Automator WIP * Make nested things in AutomatorBackend lower case * For now, translate strings to Decimals in stored scripts as possible * change "currency" to "comparable" in automator backend * rebase razen's automator work onto current master, fix rebase errors * block automator code that doesn't even work * update vue-draggable version * update index.html for new vue draggable * trying to get draggable to work * update sortable.min.js * more block automator work * plenty of more functionality like nesting and deleting rows * add while * text parse from blocks * parse blocks into automator and delete nested commands * scratch file with grammar * scratch file with grammar * Automator grammar with CST visitor that reports some semantic errors * add in codemirror css and js * checkpoint of automator work so far * automator state of affairs * refactor big crunch code a bit * automator work checkpoint * small fixes to non-automato stuff * script storage in player sketched out * update to loading scripts from save * Nuke old code * include font awesome stylesheet * Add GAME_LOAD event * automato can now run a simple script (triggered from console at the moment) * Added automato controls * add repeat support to automato * a little more work on automato buttons * refactor code for getting current EC completions a bit to support automato * automato working well enough to run an automated reality script * Beautify automator UI * fix issue with numeric vars in automato; remove some console logs * fix auto eternity and script looping logic in automato * fix pause with variable-defined time and plain pause command * add support for black hole and stored time on/off in automato * crude support for renaming scripts * hide rename icon when renaming * support creating and opening scripts in automato * new tomato tutorials * add store time use to automator * add more automato command docs * add working tooltips for automato buttons * indicate which script is running in dropdown menu * remove more old automator cruft * remove console printouts * fix active button colors in automato * indicate active automato line in gutter
2019-06-30 03:04:57 +00:00
}
.c-automator-block-row-active {
background: #50316f;
}
2019-08-26 07:36:06 +00:00
.c-automator-block-row-ghost {
display: block;
margin: auto;
margin-left: 0;
margin-bottom: 0.5rem;
}
G420 automator work (#616) * WIP automator backend * backend is now capable of running a really tiny test program * Automator WIP * Make nested things in AutomatorBackend lower case * For now, translate strings to Decimals in stored scripts as possible * change "currency" to "comparable" in automator backend * rebase razen's automator work onto current master, fix rebase errors * block automator code that doesn't even work * update vue-draggable version * update index.html for new vue draggable * trying to get draggable to work * update sortable.min.js * more block automator work * plenty of more functionality like nesting and deleting rows * add while * text parse from blocks * parse blocks into automator and delete nested commands * scratch file with grammar * scratch file with grammar * Automator grammar with CST visitor that reports some semantic errors * add in codemirror css and js * checkpoint of automator work so far * automator state of affairs * refactor big crunch code a bit * automator work checkpoint * small fixes to non-automato stuff * script storage in player sketched out * update to loading scripts from save * Nuke old code * include font awesome stylesheet * Add GAME_LOAD event * automato can now run a simple script (triggered from console at the moment) * Added automato controls * add repeat support to automato * a little more work on automato buttons * refactor code for getting current EC completions a bit to support automato * automato working well enough to run an automated reality script * Beautify automator UI * fix issue with numeric vars in automato; remove some console logs * fix auto eternity and script looping logic in automato * fix pause with variable-defined time and plain pause command * add support for black hole and stored time on/off in automato * crude support for renaming scripts * hide rename icon when renaming * support creating and opening scripts in automato * new tomato tutorials * add store time use to automator * add more automato command docs * add working tooltips for automato buttons * indicate which script is running in dropdown menu * remove more old automator cruft * remove console printouts * fix active button colors in automato * indicate active automato line in gutter
2019-06-30 03:04:57 +00:00
.c-automator-block-editor {
overflow-y: scroll;
height: 100%;
background-color: black;
border-top-left-radius: 1rem;
border-bottom-left-radius: 1rem;
box-sizing: border-box;
padding: 0.5rem;
G420 automator work (#616) * WIP automator backend * backend is now capable of running a really tiny test program * Automator WIP * Make nested things in AutomatorBackend lower case * For now, translate strings to Decimals in stored scripts as possible * change "currency" to "comparable" in automator backend * rebase razen's automator work onto current master, fix rebase errors * block automator code that doesn't even work * update vue-draggable version * update index.html for new vue draggable * trying to get draggable to work * update sortable.min.js * more block automator work * plenty of more functionality like nesting and deleting rows * add while * text parse from blocks * parse blocks into automator and delete nested commands * scratch file with grammar * scratch file with grammar * Automator grammar with CST visitor that reports some semantic errors * add in codemirror css and js * checkpoint of automator work so far * automator state of affairs * refactor big crunch code a bit * automator work checkpoint * small fixes to non-automato stuff * script storage in player sketched out * update to loading scripts from save * Nuke old code * include font awesome stylesheet * Add GAME_LOAD event * automato can now run a simple script (triggered from console at the moment) * Added automato controls * add repeat support to automato * a little more work on automato buttons * refactor code for getting current EC completions a bit to support automato * automato working well enough to run an automated reality script * Beautify automator UI * fix issue with numeric vars in automato; remove some console logs * fix auto eternity and script looping logic in automato * fix pause with variable-defined time and plain pause command * add support for black hole and stored time on/off in automato * crude support for renaming scripts * hide rename icon when renaming * support creating and opening scripts in automato * new tomato tutorials * add store time use to automator * add more automato command docs * add working tooltips for automato buttons * indicate which script is running in dropdown menu * remove more old automator cruft * remove console printouts * fix active button colors in automato * indicate active automato line in gutter
2019-06-30 03:04:57 +00:00
tab-size: 1.5em;
-moz-tab-size: 1.5em;
-o-tab-size: 1.5em;
G420 automator work (#616) * WIP automator backend * backend is now capable of running a really tiny test program * Automator WIP * Make nested things in AutomatorBackend lower case * For now, translate strings to Decimals in stored scripts as possible * change "currency" to "comparable" in automator backend * rebase razen's automator work onto current master, fix rebase errors * block automator code that doesn't even work * update vue-draggable version * update index.html for new vue draggable * trying to get draggable to work * update sortable.min.js * more block automator work * plenty of more functionality like nesting and deleting rows * add while * text parse from blocks * parse blocks into automator and delete nested commands * scratch file with grammar * scratch file with grammar * Automator grammar with CST visitor that reports some semantic errors * add in codemirror css and js * checkpoint of automator work so far * automator state of affairs * refactor big crunch code a bit * automator work checkpoint * small fixes to non-automato stuff * script storage in player sketched out * update to loading scripts from save * Nuke old code * include font awesome stylesheet * Add GAME_LOAD event * automato can now run a simple script (triggered from console at the moment) * Added automato controls * add repeat support to automato * a little more work on automato buttons * refactor code for getting current EC completions a bit to support automato * automato working well enough to run an automated reality script * Beautify automator UI * fix issue with numeric vars in automato; remove some console logs * fix auto eternity and script looping logic in automato * fix pause with variable-defined time and plain pause command * add support for black hole and stored time on/off in automato * crude support for renaming scripts * hide rename icon when renaming * support creating and opening scripts in automato * new tomato tutorials * add store time use to automator * add more automato command docs * add working tooltips for automato buttons * indicate which script is running in dropdown menu * remove more old automator cruft * remove console printouts * fix active button colors in automato * indicate active automato line in gutter
2019-06-30 03:04:57 +00:00
}
.o-automator-block-input {
border: 0.1rem solid #353535;
padding: 0.5rem;
G420 automator work (#616) * WIP automator backend * backend is now capable of running a really tiny test program * Automator WIP * Make nested things in AutomatorBackend lower case * For now, translate strings to Decimals in stored scripts as possible * change "currency" to "comparable" in automator backend * rebase razen's automator work onto current master, fix rebase errors * block automator code that doesn't even work * update vue-draggable version * update index.html for new vue draggable * trying to get draggable to work * update sortable.min.js * more block automator work * plenty of more functionality like nesting and deleting rows * add while * text parse from blocks * parse blocks into automator and delete nested commands * scratch file with grammar * scratch file with grammar * Automator grammar with CST visitor that reports some semantic errors * add in codemirror css and js * checkpoint of automator work so far * automator state of affairs * refactor big crunch code a bit * automator work checkpoint * small fixes to non-automato stuff * script storage in player sketched out * update to loading scripts from save * Nuke old code * include font awesome stylesheet * Add GAME_LOAD event * automato can now run a simple script (triggered from console at the moment) * Added automato controls * add repeat support to automato * a little more work on automato buttons * refactor code for getting current EC completions a bit to support automato * automato working well enough to run an automated reality script * Beautify automator UI * fix issue with numeric vars in automato; remove some console logs * fix auto eternity and script looping logic in automato * fix pause with variable-defined time and plain pause command * add support for black hole and stored time on/off in automato * crude support for renaming scripts * hide rename icon when renaming * support creating and opening scripts in automato * new tomato tutorials * add store time use to automator * add more automato command docs * add working tooltips for automato buttons * indicate which script is running in dropdown menu * remove more old automator cruft * remove console printouts * fix active button colors in automato * indicate active automato line in gutter
2019-06-30 03:04:57 +00:00
display: inline-block;
2019-07-14 00:47:32 +00:00
background: #000115;
color: #007f7f;
border-radius: 0.5rem;
G420 automator work (#616) * WIP automator backend * backend is now capable of running a really tiny test program * Automator WIP * Make nested things in AutomatorBackend lower case * For now, translate strings to Decimals in stored scripts as possible * change "currency" to "comparable" in automator backend * rebase razen's automator work onto current master, fix rebase errors * block automator code that doesn't even work * update vue-draggable version * update index.html for new vue draggable * trying to get draggable to work * update sortable.min.js * more block automator work * plenty of more functionality like nesting and deleting rows * add while * text parse from blocks * parse blocks into automator and delete nested commands * scratch file with grammar * scratch file with grammar * Automator grammar with CST visitor that reports some semantic errors * add in codemirror css and js * checkpoint of automator work so far * automator state of affairs * refactor big crunch code a bit * automator work checkpoint * small fixes to non-automato stuff * script storage in player sketched out * update to loading scripts from save * Nuke old code * include font awesome stylesheet * Add GAME_LOAD event * automato can now run a simple script (triggered from console at the moment) * Added automato controls * add repeat support to automato * a little more work on automato buttons * refactor code for getting current EC completions a bit to support automato * automato working well enough to run an automated reality script * Beautify automator UI * fix issue with numeric vars in automato; remove some console logs * fix auto eternity and script looping logic in automato * fix pause with variable-defined time and plain pause command * add support for black hole and stored time on/off in automato * crude support for renaming scripts * hide rename icon when renaming * support creating and opening scripts in automato * new tomato tutorials * add store time use to automator * add more automato command docs * add working tooltips for automato buttons * indicate which script is running in dropdown menu * remove more old automator cruft * remove console printouts * fix active button colors in automato * indicate active automato line in gutter
2019-06-30 03:04:57 +00:00
font-size: 1.1rem;
font-family: Typewriter, serif;
}
2019-07-14 00:47:32 +00:00
input.o-automator-block-input {
color: #0f0;
}
G420 automator work (#616) * WIP automator backend * backend is now capable of running a really tiny test program * Automator WIP * Make nested things in AutomatorBackend lower case * For now, translate strings to Decimals in stored scripts as possible * change "currency" to "comparable" in automator backend * rebase razen's automator work onto current master, fix rebase errors * block automator code that doesn't even work * update vue-draggable version * update index.html for new vue draggable * trying to get draggable to work * update sortable.min.js * more block automator work * plenty of more functionality like nesting and deleting rows * add while * text parse from blocks * parse blocks into automator and delete nested commands * scratch file with grammar * scratch file with grammar * Automator grammar with CST visitor that reports some semantic errors * add in codemirror css and js * checkpoint of automator work so far * automator state of affairs * refactor big crunch code a bit * automator work checkpoint * small fixes to non-automato stuff * script storage in player sketched out * update to loading scripts from save * Nuke old code * include font awesome stylesheet * Add GAME_LOAD event * automato can now run a simple script (triggered from console at the moment) * Added automato controls * add repeat support to automato * a little more work on automato buttons * refactor code for getting current EC completions a bit to support automato * automato working well enough to run an automated reality script * Beautify automator UI * fix issue with numeric vars in automato; remove some console logs * fix auto eternity and script looping logic in automato * fix pause with variable-defined time and plain pause command * add support for black hole and stored time on/off in automato * crude support for renaming scripts * hide rename icon when renaming * support creating and opening scripts in automato * new tomato tutorials * add store time use to automator * add more automato command docs * add working tooltips for automato buttons * indicate which script is running in dropdown menu * remove more old automator cruft * remove console printouts * fix active button colors in automato * indicate active automato line in gutter
2019-06-30 03:04:57 +00:00
.l-automator-nested-block {
width: fit-content;
padding: 1rem;
border: 2px dotted #55ff55;
margin-left: 3rem;
margin-top: 0.5rem;
G420 automator work (#616) * WIP automator backend * backend is now capable of running a really tiny test program * Automator WIP * Make nested things in AutomatorBackend lower case * For now, translate strings to Decimals in stored scripts as possible * change "currency" to "comparable" in automator backend * rebase razen's automator work onto current master, fix rebase errors * block automator code that doesn't even work * update vue-draggable version * update index.html for new vue draggable * trying to get draggable to work * update sortable.min.js * more block automator work * plenty of more functionality like nesting and deleting rows * add while * text parse from blocks * parse blocks into automator and delete nested commands * scratch file with grammar * scratch file with grammar * Automator grammar with CST visitor that reports some semantic errors * add in codemirror css and js * checkpoint of automator work so far * automator state of affairs * refactor big crunch code a bit * automator work checkpoint * small fixes to non-automato stuff * script storage in player sketched out * update to loading scripts from save * Nuke old code * include font awesome stylesheet * Add GAME_LOAD event * automato can now run a simple script (triggered from console at the moment) * Added automato controls * add repeat support to automato * a little more work on automato buttons * refactor code for getting current EC completions a bit to support automato * automato working well enough to run an automated reality script * Beautify automator UI * fix issue with numeric vars in automato; remove some console logs * fix auto eternity and script looping logic in automato * fix pause with variable-defined time and plain pause command * add support for black hole and stored time on/off in automato * crude support for renaming scripts * hide rename icon when renaming * support creating and opening scripts in automato * new tomato tutorials * add store time use to automator * add more automato command docs * add working tooltips for automato buttons * indicate which script is running in dropdown menu * remove more old automator cruft * remove console printouts * fix active button colors in automato * indicate active automato line in gutter
2019-06-30 03:04:57 +00:00
min-widtH: 30rem;
}
.o-automator-block-delete {
color: #ff3333;
font-size: 1.7rem;
cursor: pointer;
2019-07-03 11:51:27 +00:00
}
2019-07-23 17:42:22 +00:00
2019-07-25 12:52:03 +00:00
.c-perk-tab {
display: flex;
flex-direction: column;
align-items: center;
position: relative;
2019-07-25 12:52:03 +00:00
}
2019-07-23 17:42:22 +00:00
.c-perk-network {
position: relative;
overflow: hidden;
touch-action: pan-y;
user-select: none;
-webkit-user-drag: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
width: 90rem;
height: 50rem;
border: 0.1rem solid black;
}
.c-perk-network__canvas {
position: relative;
touch-action: none;
user-select: none;
-webkit-user-drag: none;
-webkit-tap-highlight-color: rgba(0, 0, 0, 0);
width: 100%;
height: 100%;
}
2019-08-11 06:59:50 +00:00
/* #startregion h2p tab*/
.l-h2p-modal {
display: flex;
flex-direction: column;
margin: 0.5rem;
2019-08-15 22:18:49 +00:00
width: calc(100vw - 20vh);
height: calc(100vh - 20vh);
}
2019-08-20 18:58:45 +00:00
.l-h2p-container {
display: flex;
flex-direction: row;
flex: 1 1 50rem;
2020-04-29 22:04:57 +00:00
margin: 2rem 0;
2019-08-20 18:58:45 +00:00
}
.l-h2p-header {
2019-08-15 22:18:49 +00:00
flex: 0 0.2 5rem;
2019-08-20 18:58:45 +00:00
text-align: center;
}
.l-h2p-search-tab {
display: flex;
2019-08-20 18:58:45 +00:00
flex-direction: column;
2020-04-11 08:25:30 +00:00
width: 15rem;
2019-08-20 18:58:45 +00:00
}
.l-h2p-info {
flex: 1 1 50rem;
display: flex;
flex-direction: column;
}
.c-h2p-title {
user-select: none;
font-size: 3rem;
}
.c-h2p-body {
text-align: left;
2019-08-15 22:18:49 +00:00
font-size: 1.6rem;
}
.l-h2p-body {
2019-08-15 22:18:49 +00:00
flex: 0.8 0.8 30rem;
overflow-y: scroll;
margin: 1rem;
2019-08-15 22:18:49 +00:00
padding: 0.5rem;
}
.l-h2p-body::-webkit-scrollbar {
width: 1rem;
}
.l-h2p-body::-webkit-scrollbar-thumb {
2019-08-20 18:58:45 +00:00
background: grey;
2019-08-15 22:18:49 +00:00
border-radius: 0.5rem;
}
2019-09-08 09:32:41 +00:00
2019-08-20 18:58:45 +00:00
.c-h2p-body--title {
font-size: 2.5rem;
}
.c-h2p-search-bar {
2020-04-11 08:25:30 +00:00
font-size: 1.5rem;
2019-08-20 18:58:45 +00:00
width: calc(100% - 1rem);
padding: 0.2rem;
}
.l-h2p-tab-list {
display: flex;
justify-content: flex-start;
2019-08-20 18:58:45 +00:00
flex-direction: column;
overflow-y: scroll;
margin: 0.5rem;
2019-08-20 18:58:45 +00:00
flex: 1 0.8 40rem;
}
2019-08-20 18:58:45 +00:00
.l-h2p-tab-list::-webkit-scrollbar {
width: 0.5rem;
}
.l-h2p-tab-list::-webkit-scrollbar-thumb {
background: grey;
border-radius: 0.5rem;
}
.o-h2p-tab-button {
font-size: 1.25rem;
cursor: pointer;
border-bottom: 0.1rem solid black;
padding: 0.3rem 0.5rem 0.3rem 0;
2020-04-11 08:25:30 +00:00
transition: font-size 0.2s;
}
.o-h2p-tab-button:hover {
color: white;
text-shadow:
0.1rem 0.1rem 0.1rem black,
-0.1rem -0.1rem 0.1rem black,
-0.1rem 0.1rem 0.1rem black,
0.1rem -0.1rem 0.1rem black;
2019-08-20 18:58:45 +00:00
}
2019-08-27 03:38:28 +00:00
2019-08-20 18:58:45 +00:00
.t-dark .o-h2p-tab-button,
.t-dark-metro .o-h2p-tab-button,
.t-s6 .o-h2p-tab-button{
border-bottom: 0.1rem solid white;
}
.o-h2p-tab-button--selected {
2020-04-11 08:25:30 +00:00
font-size: 1.5rem;
color: white;
text-shadow:
0.1rem 0.1rem 0.1rem black,
-0.1rem -0.1rem 0.1rem black,
-0.1rem 0.1rem 0.1rem black,
0.1rem -0.1rem 0.1rem black;
2019-08-11 06:59:50 +00:00
}
2019-08-20 08:48:39 +00:00
.l-help-me {
position: absolute;
top: 1rem;
width: 2rem;
right: 1rem;
height: 2rem;
border-radius: 50%;
line-height: 1.9rem;
font-size: 1.5rem;
cursor: pointer;
font-weight: 500;
2019-09-08 09:32:41 +00:00
}
/* Prevent any themes overriding font awesome */
.fa, .far, .fas {
font-family: "Font Awesome 5 Free" !important;
2020-01-28 19:42:10 +00:00
}
@keyframes opacity {
0% { opacity: 0; }
50% { opacity: 0.4; }
100% { opacity: 0; }
}
.tutorial--glow {
position: relative;
}
.tutorial--glow:after {
content: "";
position: absolute;
width: 100%;
height: 100%;
background: gold;
2020-04-11 12:40:44 +00:00
animation: opacity 3s infinite;
2020-01-28 19:42:10 +00:00
top: 0;
left: 0;
border-radius: inherit;
2020-04-11 12:40:44 +00:00
}
.o-celestial-nav__hoverable .tooltiptext { display: none; }
.o-celestial-nav__hoverable:hover .tooltiptext,
.o-celestial-nav__force-hover .tooltiptext { display: block; }
.c-celestial-nav__test-ring {
fill: blue;
}
.c-celestial-nav__test-ring:hover {
fill: red;
stroke: black;
stroke-width: 2;
}
.c-celestial-nav__test-complete {
fill: #4EF;
}
.c-celestial-nav__effarig {
fill: #5151ec;
}
.c-celestial-nav__test-incomplete {
fill: #888;
}
.o-celestial-nav__symbol {
text-anchor: middle;
2019-11-21 12:45:10 +00:00
font-family: sans-serif;
}
.o-celestial-nav__legend-arrow {
stroke: #CCC;
fill: none;
stroke-linecap: butt;
stroke-width: 2;
}
.o-celestial-nav__hoverable:hover .o-celestial-nav__legend-arrow {
stroke: #FFF;
}
.o-celestial-nav__legend-outline {
stroke: none;
fill: none;
stroke-linecap: butt;
stroke-width: 2;
}
.o-celestial-nav__hoverable:hover .o-celestial-nav__legend-outline {
stroke: #FFF;
}
.o-celestial-nav__node-overlay {
stroke: transparent;
fill: transparent;
stroke-width: 12;
}
.o-celestial-nav__legend-text {
2020-02-26 13:53:55 +00:00
fill: rgb(238, 135, 17);
font-weight: bold;
}
.o-celestial-nav__hoverable:hover .o-celestial-nav__legend-text {
2020-02-26 13:53:55 +00:00
fill: rgb(197, 112, 14);
}
.o-no-mouse {
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
pointer-events: none;
}
.tooltiptext {
-moz-user-select: none;
-khtml-user-select: none;
-webkit-user-select: none;
-ms-user-select: none;
user-select: none;
pointer-events: none;
}
2020-02-26 13:53:55 +00:00
.l-celestial-navigation {
margin: auto;
border: 2px solid black;
border-radius: 5px;
/* background: #1a1a1a; */
}
/* STD-shop */
.c-shop-header {
display: flex;
justify-content: center;
align-items: center;
font-size: 2rem;
margin: 1rem 0;
}
.c-shop-header img {
margin: 0 1rem;
}
.l-shop-buttons-container {
display: flex;
flex-wrap: wrap;
width: 62rem;
margin: auto;
}
.c-shop-button-container {
width: 30rem;
padding: 1rem;
border: .2rem solid #1f7d1f;
border-radius: .5rem;
margin: .5rem;
background: #3c3c3c;
color: white;
}
.o-shop-button-button {
background: turquoise;
border: none;
border-radius: .5rem;
display: flex;
margin: auto;
align-items: center;
font-family: Typewriter;
padding: .5rem 2rem;
margin-top: 1rem;
cursor: pointer;
}
.c-shop-header .o-shop-button-button {
margin: 0;
}
.o-shop-button-button img {
margin-left: 1rem;
}
.o-shop-button-multiplier {
font-weight: bold;
font-size: 1.5rem;
margin: 0.5rem 0;
display: block;
2020-04-10 22:41:59 +00:00
}
.c-autobuyer-buy-box {
display: flex;
justify-content: center;
align-items: center;
height: 6.4rem;
font-weight: bold;
font-size: 1.4rem;
color: var(--color-text);
background-color: var(--color-disabled);
border: 0.2rem solid var(--color-bad);
transition-duration: 0.2s;
2020-04-10 22:41:59 +00:00
border-radius: .5rem;
margin: .5rem;
padding: 1rem;
width: 90rem;
cursor: default;
}
.c-autobuyer-buy-box--purchaseable:hover {
color: #FFF;
background-color: var(--color-good);
2020-04-11 08:50:57 +00:00
}
.c-autobuyer-buy-box--purchaseable {
background-color: var(--color-base);
border-color: var(--color-good);
2020-04-11 08:50:57 +00:00
cursor: pointer;
}