1
0
Fork 0
mirror of https://github.com/Acamaeda/The-Modding-Tree.git synced 2024-11-22 00:21:32 +00:00
The-Modding-Tree/style.css

757 lines
12 KiB
CSS
Raw Normal View History

2020-08-19 02:50:24 +00:00
* {
transition-duration: 0.5s;
text-align: center;
2020-09-08 23:22:22 +00:00
font-family: "Inconsolata", monospace;
font-weight: bold;
2020-08-19 02:50:24 +00:00
table-align: center;
margin: auto;
-webkit-text-size-adjust: none;
text-size-adjust: none;
2020-08-19 02:50:24 +00:00
}
*:focus {
outline: none;
2020-08-19 22:12:31 +00:00
webkit-outline: none;
2020-08-19 02:50:24 +00:00
}
body {
2020-09-14 19:26:10 +00:00
background-color: var(--background);
color: var(--color);
2020-08-19 19:53:14 +00:00
overflow: hidden;
2020-09-14 21:18:02 +00:00
--background: #0f0f0f;
2020-09-14 19:26:10 +00:00
--color: #dfdfdf;
--points: #ffffff;
2020-08-19 19:53:14 +00:00
}
html, body {
min-height: 100%;
height: 100%;
2020-08-19 02:50:24 +00:00
}
2020-09-11 02:15:05 +00:00
td {
padding: 0
}
2020-08-24 02:01:14 +00:00
.upgTable {
display: flex !important;
flex-flow: column wrap;
justify-content: center;
align-items: center;
max-width: 100%;
margin: 0 auto;
}
.upgRow {
display: flex !important;
flex-flow: row wrap;
justify-content: center;
align-items: center;
max-width: 100%;
margin: 0 auto;
}
2020-09-07 14:16:04 +00:00
.upgAlign {
vertical-align: 0
}
.bigUpgAlign {
vertical-align: 0
}
h1, h2, h3, b, input {
2020-08-19 02:50:24 +00:00
display: inline;
2020-09-08 23:22:22 +00:00
font-family: "Lucida Console", "Courier New", monospace
2020-08-19 02:50:24 +00:00
}
2020-10-28 02:35:07 +00:00
2020-08-19 02:50:24 +00:00
.treeNode {
height: 100px;
width: 100px;
2020-09-07 16:54:23 +00:00
border: var(--hqProperty1);
2020-10-15 03:24:34 +00:00
border-color: rgba(0, 0, 0, 0.125);
2020-08-19 02:50:24 +00:00
border-radius: 50%;
2020-09-07 16:54:23 +00:00
box-shadow: var(--hqProperty2a), var(--hqProperty2b);
2020-08-19 02:50:24 +00:00
font-size: 40px;
2020-09-08 23:22:22 +00:00
font-family: "Lucida Console", "Courier New", monospace;
color: rgba(0, 0, 0, 0.5);
2020-09-07 16:54:23 +00:00
text-shadow: var(--hqProperty3);
padding: 0;
2020-12-17 02:41:31 +00:00
margin: 0 10px 0 10px;
2020-08-19 02:50:24 +00:00
}
2020-10-28 02:35:07 +00:00
.treeButton {
height: 100px;
width: 100px;
border: var(--hqProperty1);
border-color: rgba(0, 0, 0, 0.125);
border-radius: 33%;
box-shadow: var(--hqProperty2a), var(--hqProperty2b);
font-size: 40px;
font-family: "Lucida Console", "Courier New", monospace;
color: rgba(0, 0, 0, 0.5);
text-shadow: var(--hqProperty3);
padding: 0;
2020-12-17 02:41:31 +00:00
margin: 0 10px 0 10px;
2020-10-28 02:35:07 +00:00
}
2020-11-08 04:34:53 +00:00
2020-10-14 23:34:15 +00:00
.smallNode {
height: 60px;
width: 60px;
font-size: 30px;
}
2020-08-19 02:50:24 +00:00
.locked {
2020-10-07 20:41:45 +00:00
background-color: #bf8f8f;
2020-08-19 02:50:24 +00:00
cursor: not-allowed;
}
.can {
cursor: pointer;
}
.can:hover {
2020-09-07 14:16:04 +00:00
transform: scale(1.15, 1.15);
2020-12-13 02:59:58 +00:00
box-shadow: 0 0 20px var(--points)
2020-09-07 16:54:23 +00:00
}
2021-05-25 02:37:36 +00:00
.can.upg:hover {
z-index: 2
}
.can.buyable:hover {
z-index: 2
}
2020-11-08 04:34:53 +00:00
.resetNotify {
2020-12-13 02:59:58 +00:00
box-shadow: var(--hqProperty2a), 0 0 8px #ffffff;
2020-09-08 23:22:22 +00:00
}
2020-09-07 16:54:23 +00:00
.treeNode.can:hover {
transform: scale(1.15, 1.15);
2020-12-13 02:59:58 +00:00
box-shadow: var(--hqProperty2a), 0 0 20px var(--points);
2020-08-19 02:50:24 +00:00
}
2020-11-08 04:34:53 +00:00
.notify {
2020-10-27 23:25:03 +00:00
transform: scale(1.05, 1.05);
border-color: rgba(0, 0, 0, 0.125);
2020-12-13 02:59:58 +00:00
box-shadow: var(--hqProperty2a), 0 0 20px #ff0000;
2020-10-27 23:25:03 +00:00
}
2020-08-19 02:50:24 +00:00
.bought {
2020-10-07 20:41:45 +00:00
background-color: #77bf5f;
2020-08-19 02:50:24 +00:00
cursor: default;
}
.back {
position: absolute;
2020-12-13 02:59:58 +00:00
top: 0;
left: 0;
background-color: transparent;
border: 1px solid transparent;
2020-09-14 19:26:10 +00:00
color: var(--color);
2020-08-19 02:50:24 +00:00
font-size: 40px;
cursor: pointer;
}
2020-10-30 23:40:48 +00:00
.other-back {
position: absolute;
2020-12-13 02:59:58 +00:00
top: 0;
2020-10-30 23:40:48 +00:00
left: 60px;
background-color: transparent;
border: 1px solid transparent;
color: var(--color);
font-size: 60px;
cursor: pointer;
}
2020-08-19 02:50:24 +00:00
.back:hover {
transform: scale(1.1, 1.1);
2020-12-13 02:59:58 +00:00
text-shadow: 0 0 7px var(--color);
2020-08-19 02:50:24 +00:00
}
.barBase {
overflow: hidden;
-webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
2020-10-16 22:45:44 +00:00
display:table
}
2020-10-12 22:28:12 +00:00
.barBorder {
border: 2px solid;
border-radius: 10px;
2020-10-12 22:28:12 +00:00
border-color: var(--color);
2020-10-16 22:45:44 +00:00
overflow: hidden;
-webkit-mask-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAEAAAABCAIAAACQd1PeAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAA5JREFUeNpiYGBgAAgwAAAEAAGbA+oJAAAAAElFTkSuQmCC);
margin:0
2020-10-12 22:28:12 +00:00
}
.overlayTextContainer {
z-index: 3;
border-radius: 10px;
2020-10-12 22:28:12 +00:00
vertical-align: middle;
display: flex;
justify-content: center;
align-items: left;
position: absolute;
}
.fill {
background-color: var(--color);
2020-10-16 22:45:44 +00:00
z-index:2;
2020-10-12 22:28:12 +00:00
position: absolute;
overflow: hidden;
2020-10-16 22:45:44 +00:00
margin-left: -0.5px;
2021-05-16 06:02:43 +00:00
transition-duration: 0.2s;
2020-10-12 22:28:12 +00:00
}
.overlayText {
z-index: 6;
}
2020-10-04 17:10:04 +00:00
.tabButton {
background-color: transparent;
color: var(--color);
2020-10-04 17:19:01 +00:00
font-size: 20px;
2020-10-04 17:10:04 +00:00
cursor: pointer;
2020-12-13 02:59:58 +00:00
padding: 5px 20px;
margin: 5px;
border-radius: 10px;
border: 2px solid;
2020-12-22 03:09:33 +00:00
color: var(--color);
2020-10-04 17:10:04 +00:00
}
.tabButton:hover {
transform: scale(1.1, 1.1);
2020-12-13 02:59:58 +00:00
text-shadow: 0 0 7px var(--color);
2020-10-04 17:10:04 +00:00
}
2020-08-19 02:50:24 +00:00
.reset {
2020-09-11 02:15:05 +00:00
height: 120px;
width: 180px;
border-radius: 25%;
2020-09-07 16:54:23 +00:00
border: 4px solid;
2020-10-15 03:24:34 +00:00
border-color: rgba(0, 0, 0, 0.125);
2020-08-19 02:50:24 +00:00
}
.upg {
2021-04-07 21:25:56 +00:00
min-height: 120px;
2020-08-19 02:50:24 +00:00
width: 120px;
border-radius: 25%;
2020-09-08 23:22:22 +00:00
border: 2px solid;
2020-10-15 03:24:34 +00:00
border-color: rgba(0, 0, 0, 0.125);
2020-08-19 02:50:24 +00:00
font-size: 10px;
2021-04-07 21:25:56 +00:00
overflow: visible;
2020-08-19 02:50:24 +00:00
}
2020-10-15 01:43:16 +00:00
.achievement {
height: 90px;
width: 90px;
border-radius: 25%;
border: 2px solid;
2020-10-15 03:24:34 +00:00
border-color: rgba(0, 0, 0, 0.125);
2020-10-15 01:43:16 +00:00
font-size: 10px;
color: white;
2020-12-13 02:59:58 +00:00
text-shadow: 0 0 2px #000000;
2020-10-15 01:43:16 +00:00
}
.achievement:hover {
2020-12-13 02:59:58 +00:00
box-shadow: 0 0 10px var(--points);
2020-10-21 17:03:39 +00:00
z-index: 7;
2020-10-15 01:43:16 +00:00
}
.buyable {
height: 200px;
width: 200px;
border-radius: 25%;
border: 2px solid;
2020-10-15 03:24:34 +00:00
border-color: rgba(0, 0, 0, 0.125);
font-size: 10px;
2021-05-14 19:32:20 +00:00
position:relative;
}
2021-05-11 06:27:50 +00:00
.tile {
height: 80px;
width: 80px;
border-radius: 15%;
2021-05-11 06:27:50 +00:00
border: 2px solid;
border-color: rgba(0, 0, 0, 0.125);
font-size: 10px;
overflow: visible;
}
.tile.can:hover {
2021-05-11 06:27:50 +00:00
box-shadow: 0 0 10px var(--points);
transform: scale(1.1, 1.1);
z-index: 7;
}
2020-08-19 02:50:24 +00:00
.upgBig {
height: 200px;
width: 200px;
border-radius: 25%;
2020-09-08 23:22:22 +00:00
border: 2px solid;
2020-10-15 03:24:34 +00:00
border-color: rgba(0, 0, 0, 0.125);
2020-08-19 02:50:24 +00:00
}
.longUpg {
height: 50px;
width: 120px;
2020-09-14 19:26:10 +00:00
background: var(--points);
2020-08-19 02:50:24 +00:00
border-radius: 50%;
2020-09-08 23:22:22 +00:00
border: 2px solid;
2020-10-15 03:24:34 +00:00
border-color: rgba(0, 0, 0, 0.125);
2020-08-19 02:50:24 +00:00
font-size: 10px;
}
2020-08-20 04:55:26 +00:00
.smallUpg {
height: 40px;
width: 40px;
border-radius: 25%;
2020-09-08 23:22:22 +00:00
border: 2px solid;
2020-10-15 03:24:34 +00:00
border-color: rgba(0, 0, 0, 0.125);
2020-08-20 04:55:26 +00:00
}
#points {
2020-09-14 19:26:10 +00:00
color: var(--points);
2020-12-13 02:59:58 +00:00
text-shadow: 0 0 10px var(--points);
}
2020-08-19 02:50:24 +00:00
#optionWheel {
position: absolute;
2020-12-13 02:59:58 +00:00
top: 0;
left: 0;
2020-08-27 15:38:26 +00:00
height: 50px;
width: 50px;
2020-08-19 02:50:24 +00:00
cursor: pointer;
}
#optionWheel:hover {
transform: rotate(360deg);
}
2020-08-19 22:12:31 +00:00
#info {
font-size: 20px;
color: white;
position: absolute;
2020-09-02 02:30:37 +00:00
top: 50px;
left: 4px;
2020-08-19 22:12:31 +00:00
cursor: pointer;
width: 40px;
height: 40px;
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #02f2f2;
}
#info:hover {
transform: scale(1.2, 1.2);
2020-12-13 02:59:58 +00:00
text-shadow: 5px 0 10px #02f2f2,
-3px 0 12px #02f2f2;
2020-08-19 22:12:31 +00:00
}
2020-09-14 19:26:10 +00:00
#discord {
position: absolute;
top: 120px;
left: 4px;
width: 40px;
height: 40px;
}
#discord img {
width: 100%;
height: 100%;
}
#discord-links {
position: absolute;
top: 0;
padding-top: 44px;
left: -244px;
width: 200px;
transition: left .3s ease;
}
#discord:hover #discord-links {
left: -4px;
2020-09-14 19:26:10 +00:00
}
2020-09-11 02:15:05 +00:00
#version {
position: absolute;
right: 4px;
top: 4px;
text-align: right;
2020-09-14 19:26:10 +00:00
color: var(--points);
2020-12-13 02:59:58 +00:00
text-shadow: 0 0 10px var(--points);
2020-09-11 02:15:05 +00:00
cursor: pointer;
}
#version:hover {
2020-10-17 04:21:59 +00:00
transform: scale(1.1, 1.1);
2020-09-11 02:15:05 +00:00
right: 4.8px;
}
2020-09-07 02:33:31 +00:00
a {
color: #007fff;
text-decoration-line: none;
cursor: pointer
}
.link {
display: block;
2020-08-20 04:55:26 +00:00
font-size: 20px;
2020-09-07 02:33:31 +00:00
color: #41f5f5;
2020-08-20 04:55:26 +00:00
cursor: pointer;
2020-09-08 23:22:22 +00:00
font-family: "Lucida Console", "Courier New", monospace;
2020-08-20 04:55:26 +00:00
-webkit-text-stroke-width: 1px;
-webkit-text-stroke-color: #02f2f2;
2020-09-05 20:00:21 +00:00
text-decoration: none;
2020-08-20 04:55:26 +00:00
}
2020-09-07 02:33:31 +00:00
.link:hover {
2020-08-20 04:55:26 +00:00
transform: scale(1.2, 1.2);
2020-12-13 02:59:58 +00:00
text-shadow: 5px 0 10px #02f2f2,
-3px 0 12px #02f2f2;
2020-08-20 04:55:26 +00:00
}
2020-08-19 02:50:24 +00:00
.opt {
height: 100px;
width: 100px;
border-radius: 25%;
2020-09-07 16:56:08 +00:00
border: 4px solid;
2020-09-14 19:26:10 +00:00
background-color: var(--color);
2020-12-06 19:23:46 +00:00
border-color: rgba(0, 0, 0, 0.125);
color: rgba(0, 0, 0, 0.5);
2020-08-19 02:50:24 +00:00
cursor: pointer;
}
.opt:hover {
background-color: #439ea3;
}
.hidden {
visibility: hidden;
height: 50px !important;
}
.canvas {
top: 0;
left: 0;
position: absolute;
z-index: -999;
}
.milestone {
width: 100%;
min-width: 120px;
padding-left: 5px;
padding-right: 5px;
2020-08-19 02:50:24 +00:00
height: 75px;
background-color: #bf8f8f;
border: 4px solid;
border-radius: 4px;
2020-10-15 03:24:34 +00:00
border-color: rgba(0, 0, 0, 0.125);
color: rgba(0, 0, 0, 0.5);
2020-08-19 02:50:24 +00:00
}
.milestoneDone {
width: 100%;
min-width: 120px;
padding-left: 5px;
padding-right: 5px;
2020-08-19 02:50:24 +00:00
height: 75px;
background-color: #77bf5f;
border: 4px solid;
border-radius: 4px;
2020-10-15 03:24:34 +00:00
border-color: rgba(0, 0, 0, 0.125);
color: rgba(0, 0, 0, 0.5);
2020-08-19 02:50:24 +00:00
}
.left {
position: absolute;
left: 0;
}
.remove {
height: 24px;
width: 24px;
cursor: pointer;
}
.remove:hover {
transform: scale(1.1, 1.1);
}
2020-08-19 19:53:14 +00:00
.col {
min-width: 49.5%;
max-width: 49.5%;
width: 49.5%;
height: 100%;
min-height: 100%;
column-span: 1;
position: absolute;
overflow-y: auto;
2020-09-09 15:20:39 +00:00
overflow-x: auto;
2020-09-08 23:22:22 +00:00
transition-duration: 0s
}
2020-10-12 22:28:12 +00:00
.instant {
transition-duration: 0s !important
}
.fast {
transition:color none
}
2020-08-19 19:53:14 +00:00
.col.right {
top: 0;
right: 0;
}
#app {
column-count: 2;
column-width: 50%;
min-height: 100%;
}
.vl {
2020-09-14 19:26:10 +00:00
border-left: 6px solid var(--color);
2020-08-19 19:53:14 +00:00
height: 100%;
position: absolute;
left: 50%;
margin-left: -3px;
2020-09-10 01:46:36 +00:00
top: 0
2020-08-19 19:53:14 +00:00
}
.vl2 {
border-left: 3px solid var(--color);
height: 100%;
}
.hl {
border-top: 3px solid var(--color);
}
2020-08-20 04:55:26 +00:00
ul {
list-style-type: none;
}
.hChallenge {
2020-09-14 21:18:02 +00:00
background-color: #bf8f8f;
2021-05-14 19:32:20 +00:00
position: relative;
2020-09-14 21:18:02 +00:00
border: 4px solid;
2020-10-15 03:24:34 +00:00
border-color: rgba(0, 0, 0, 0.125);
2020-09-14 21:18:02 +00:00
color: rgba(0, 0, 0, 0.5);
2020-08-26 16:26:46 +00:00
width: 300px;
height: 300px;
font-size: 15px;
2020-08-26 16:26:46 +00:00
border-radius: 33.33%;
}
.hChallenge.done {
2020-09-14 21:18:02 +00:00
background-color: #77bf5f;
2020-08-26 16:26:46 +00:00
}
.hChallenge.canComplete {
2020-09-14 21:18:02 +00:00
background-color: #ffbf00;
2020-08-27 15:38:26 +00:00
}
2020-09-10 01:28:47 +00:00
.fullWidth {
position: absolute;
2020-09-10 01:46:36 +00:00
height: 100%;
2020-09-10 01:28:47 +00:00
width: 100%;
min-width: 100%;
2020-09-10 01:46:36 +00:00
overflow-y: auto;
overflow-x: auto;
transition-duration: 0s
2020-09-10 01:28:47 +00:00
}
2021-04-27 05:26:07 +00:00
.tooltipBox {
2020-08-19 02:50:24 +00:00
position: relative;
2021-04-27 05:26:07 +00:00
display: inline-block;
}
.tooltipBox:hover .tooltip{
opacity: 1;
}
2020-08-19 02:50:24 +00:00
2021-04-27 05:26:07 +00:00
.forceTooltip .tooltip{
opacity: 1;
}
.tooltip {
pointer-events: none;
2021-04-27 05:26:07 +00:00
text-align: center;
width: 150px;
font-size: 16px;
line-height: 1.2;
2020-08-19 02:50:24 +00:00
bottom: 100%;
left: 50%;
margin-bottom: 5px;
margin-left: -80px;
padding: 7px;
2021-04-27 05:26:07 +00:00
font-family: "Lucida Console", "Courier New", monospace;
2020-08-19 02:50:24 +00:00
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
2021-04-27 05:26:07 +00:00
opacity: 0;
transition: opacity 0.5s;
position: absolute;
z-index: 20000 ;
2021-04-27 05:26:07 +00:00
2020-09-14 21:18:02 +00:00
background-color: var(--background_tooltip);
color: var(--points);
2020-08-19 02:50:24 +00:00
content: attr(tooltip);
2021-04-27 05:26:07 +00:00
font-size:14px;
2020-08-19 02:50:24 +00:00
2021-04-27 05:26:07 +00:00
}
.tooltip::after {
content: " ";
2020-08-19 02:50:24 +00:00
position: absolute;
bottom: 100%;
left: 50%;
2021-04-27 05:26:07 +00:00
top: 100%;
left: 50%;
margin-left: -5px;
border-width: 5px;
border-style: solid;
border-color: var(--background_tooltip) transparent transparent transparent;
}
#loadingSection {
display: flex;
flex-direction: column;
justify-content: center;
2020-10-12 22:28:12 +00:00
}
.treeOverlay {
2020-12-13 02:59:58 +00:00
pointer-events:none;
2020-10-15 01:43:16 +00:00
overflow:hidden;
}
.front {
z-index: 30000
}
.overlayThing {
z-index: 10000;
pointer-events:auto;
background-color: var(--background);
2020-10-14 23:34:15 +00:00
}
.sideLayers {
z-index: 10000;
2020-10-14 23:34:15 +00:00
pointer-events:auto;
position: absolute;
2020-10-15 01:43:16 +00:00
right: 55px;
top: 65px;
2020-10-16 16:20:33 +00:00
}
button > * {
pointer-events:none;
2020-10-16 22:45:44 +00:00
}
.ghost {
visibility: hidden
2020-10-24 16:40:56 +00:00
}
.story {
width: 600px;
max-width: 95%;
2020-10-25 00:47:42 +00:00
border-bottom: solid 4px;
border-radius: 8px;
2020-10-24 16:40:56 +00:00
margin-bottom: 8px;
2020-10-25 00:47:42 +00:00
text-align: left;
2020-10-24 16:40:56 +00:00
}
.story-title {
text-align: left;
font-size: 24px;
color: black;
cursor: pointer;
border: none;
padding: 2px;
2020-10-25 00:47:42 +00:00
border-radius: 8px 8px 0 0;
}
.story-toggle {
border: none;
background: black;
color: white;
font-size: 20px;
pointer-events: none;
width: 1em;
display: inline-block;
}
.story-text {
padding: 2px;
2020-10-25 00:47:42 +00:00
border: solid 4px;
border-color: inherit;
border-radius: inherit;
border-top-left-radius: 0;
margin-bottom: -2px;
}
#treeTab td button {
2020-12-13 02:59:58 +00:00
margin: 0 10px;
2020-12-04 04:19:14 +00:00
}
2021-05-12 03:04:59 +00:00
.mark {
position: relative;
display: inline-block;
width: 30px;
height: 30px;
z-index: 10000;
margin-left: 0.9em;
margin-right: 0.9em;
margin-bottom: 1.2em;
border-right: 0.3em solid transparent;
border-bottom: 0.7em solid transparent;
border-left: 0.3em solid transparent;
font-size: 10px;
2021-05-14 06:17:12 +00:00
overflow:auto;
2021-05-14 19:32:20 +00:00
pointer-events: none;
2021-05-12 03:04:59 +00:00
}
.star {
position: relative;
display: inline-block;
width: 0;
height: 0;
z-index: 10000;
margin-left: 0.9em;
margin-right: 0.9em;
margin-bottom: 1.2em;
border-right: 0.3em solid transparent;
border-bottom: 0.7em solid #ffcc00;
border-left: 0.3em solid transparent;
font-size: 10px;
2021-05-14 19:32:20 +00:00
pointer-events: none;
2021-05-12 03:04:59 +00:00
}
.star:before, .star:after {
content: "";
width: 0;
height: 0;
position: absolute;
top: .6em;
left: -1em;
border-right: 1em solid transparent;
border-bottom: 0.7em solid #ffcc00;
border-left: 1em solid transparent;
transform: rotate(-35deg);
}
.star:after {
transform: rotate(35deg);
}