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

680 lines
11 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;
}
*: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-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-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-09-14 19:26:10 +00:00
box-shadow: 0px 0px 20px var(--points)
2020-09-07 16:54:23 +00:00
}
2020-11-08 04:34:53 +00:00
.resetNotify {
box-shadow: var(--hqProperty2a), 0px 0px 8px #ffffff;
2020-09-08 23:22:22 +00:00
z-index: 3
}
2020-09-07 16:54:23 +00:00
.treeNode.can:hover {
transform: scale(1.15, 1.15);
2020-09-14 19:26:10 +00:00
box-shadow: var(--hqProperty2a), 0px 0px 20px var(--points);
2020-09-08 23:22:22 +00:00
z-index: 4
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);
box-shadow: var(--hqProperty2a), 0px 0px 20px #ff0000;
z-index: 3
}
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;
top: 0px;
left: 0px;
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;
top: 0px;
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-09-14 19:26:10 +00:00
text-shadow: 0px 0px 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;
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;
padding: 5px 20px 5px 20px;
margin: 5px 5px 5px 5px;
border-radius: 10px;
border: 2px solid;
2020-10-15 03:24:34 +00:00
border-color: rgba(0, 0, 0, 0.125);
2020-10-04 17:10:04 +00:00
}
.tabButton:hover {
transform: scale(1.1, 1.1);
text-shadow: 0px 0px 7px var(--color);
}
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 {
height: 120px;
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;
}
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;
text-shadow: 0px 0px 2px #000000;
}
.achievement:hover {
box-shadow: 0px 0px 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;
}
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);
text-shadow: 0px 0px 10px var(--points);
}
2020-08-19 02:50:24 +00:00
#optionWheel {
position: absolute;
top: 0px;
2020-08-19 19:53:14 +00:00
left: 0px;
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);
text-shadow: 5px 0px 10px #02f2f2,
-3px 0px 12px #02f2f2;
}
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);
text-shadow: 0px 0px 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;
text-decoration-line: none;
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);
text-shadow: 5px 0px 10px #02f2f2,
-3px 0px 12px #02f2f2;
}
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-09-07 16:54:23 +00:00
border-color: rgba(255, 255, 255, 0.125) rgba(0, 0, 0, 0.25) rgba(0, 0, 0, 0.25) rgba(255, 255, 255, 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;
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
}
2020-08-19 02:50:24 +00:00
[tooltip] {
position: relative;
2020-10-07 20:41:45 +00:00
z-index: 999999 !important
2020-08-19 02:50:24 +00:00
}
[tooltip]:before,
[tooltip]:after {
visibility: hidden;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=0);
opacity: 0;
pointer-events: none;
white-space: pre-wrap;
}
[tooltip]:before {
position: absolute;
bottom: 100%;
left: 50%;
margin-bottom: 5px;
margin-left: -80px;
padding: 7px;
width: 160px;
-webkit-border-radius: 3px;
-moz-border-radius: 3px;
border-radius: 3px;
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);
text-align: center;
font-size: 14px;
line-height: 1.2;
transition-duration: 0.5s;
white-space: pre-wrap;
}
[tooltip]:after {
position: absolute;
bottom: 100%;
left: 50%;
margin-left: -5px;
width: 0;
2020-09-14 21:18:02 +00:00
border-top: 5px solid var(--background_tooltip);
2020-08-19 02:50:24 +00:00
border-right: 5px solid transparent;
border-left: 5px solid transparent;
content: " ";
font-size: 0;
line-height: 0;
transition-duration: 0.5s;
white-space: pre-wrap;
}
[tooltip]:hover:before,
[tooltip]:hover:after {
visibility: visible;
-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
filter: progid: DXImageTransform.Microsoft.Alpha(Opacity=100);
opacity: 1;
white-space: pre-wrap;
}
#loadingSection {
display: flex;
flex-direction: column;
justify-content: center;
2020-10-12 22:28:12 +00:00
}
.treeOverlay {
z-index: 200000;
pointer-events:none;
2020-10-15 01:43:16 +00:00
overflow:hidden;
}
.overlayThing {
pointer-events:auto;
background-color: var(--background);
2020-10-14 23:34:15 +00:00
}
.sideLayers {
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 {
margin: 0 10px 0 10px;
2020-12-04 04:19:14 +00:00
}