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

678 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 19:26:10 +00:00
--background: #000000;
--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 {
height: 120px;
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
}
.treeNode {
height: 100px;
width: 100px;
2020-09-07 16:54:23 +00:00
border: var(--hqProperty1);
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);
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);
2020-08-19 02:50:24 +00:00
}
.locked {
2020-09-10 02:44:25 +00:00
background-color: #bf8f8f !important;
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-09-08 23:22:22 +00:00
.treeNode.notify {
transform: scale(1.1, 1.1);
border-color: rgba(255, 0, 0, 0.125) rgba(255, 0, 0, 0.25) rgba(255, 0, 0, 0.25) rgba(255, 0, 0, 0.125);
box-shadow: var(--hqProperty2a), 0px 0px 20px #ff0000 !important;
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
}
.bought {
background-color: #77bf5f !important;
2020-08-19 02:50:24 +00:00
cursor: default;
}
.back {
position: absolute;
top: 0px;
left: 0px;
2020-09-14 19:26:10 +00:00
background-color: var(--background);
border: 1px solid var(--background);
color: var(--color);
2020-08-19 02:50:24 +00:00
font-size: 40px;
cursor: pointer;
}
.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
}
.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;
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);
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-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);
2020-08-19 02:50:24 +00:00
font-size: 10px;
}
.upgBig {
height: 200px;
width: 200px;
border-radius: 25%;
2020-09-08 23:22:22 +00:00
border: 2px solid;
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);
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-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);
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-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);
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
.p {
2020-09-11 02:15:05 +00:00
background-color: #00bfbf;
2020-09-08 23:22:22 +00:00
color: rgba(0, 0, 0, 0.5);
2020-08-19 02:50:24 +00:00
}
.p_txt {
2020-09-11 02:15:05 +00:00
color: #00bfbf;
text-shadow: 0px 0px 10px #00bfbf;
2020-08-19 02:50:24 +00:00
}
.b {
background-color: #415a9e;
2020-09-08 23:22:22 +00:00
color: rgba(0, 0, 0, 0.5);
2020-08-19 02:50:24 +00:00
}
.b_txt {
color: #415a9e;
text-shadow: 0px 0px 10px #415a9e;
}
.g {
background-color: #409c6e;
2020-09-08 23:22:22 +00:00
color: rgba(0, 0, 0, 0.5);
2020-08-19 02:50:24 +00:00
}
.g_txt {
color: #409c6e;
text-shadow: 0px 0px 10px #409c6e;
}
.e {
background-color: #9643a3;
2020-09-08 23:22:22 +00:00
color: rgba(0, 0, 0, 0.5);
2020-08-19 02:50:24 +00:00
}
.e_txt {
color: #9643a3;
text-shadow: 0px 0px 10px #9643a3;
}
.t {
background-color: #3f993d;
2020-09-08 23:22:22 +00:00
color: rgba(0, 0, 0, 0.5);
2020-08-19 02:50:24 +00:00
}
.t_txt {
color: #3f993d;
text-shadow: 0px 0px 10px #3f993d;
}
.s {
background-color: #dfdfdf;
2020-09-08 23:22:22 +00:00
color: rgba(0, 0, 0, 0.5);
2020-08-19 02:50:24 +00:00
}
.s_txt {
color: #dfdfdf;
text-shadow: 0px 0px 10px #dfdfdf;
2020-08-19 02:50:24 +00:00
}
2020-08-22 01:16:23 +00:00
.sb {
2020-09-07 14:16:04 +00:00
background-color: #494b99;
2020-09-08 23:22:22 +00:00
color: rgba(0, 0, 0, 0.5);
2020-08-22 01:16:23 +00:00
}
.sb_txt {
2020-09-07 14:16:04 +00:00
color: #494b99;
text-shadow: 0px 0px 10px #494b99;
2020-08-22 01:16:23 +00:00
}
2020-08-26 01:45:22 +00:00
.h {
background-color: #a14040;
2020-09-08 23:22:22 +00:00
color: rgba(0, 0, 0, 0.5);
2020-08-26 01:45:22 +00:00
}
.h_txt {
color: #a14040;
text-shadow: 0px 0px 10px #a14040;
}
.q {
background-color: #ff2bf2;
2020-09-08 23:22:22 +00:00
color: rgba(0, 0, 0, 0.5);
2020-08-26 01:45:22 +00:00
}
.q_txt {
color: #ff2bf2;
text-shadow: 0px 0px 10px #ff2bf2;
}
2020-08-29 23:43:53 +00:00
.hb {
background-color: #513d94;
2020-09-08 23:22:22 +00:00
color: rgba(0, 0, 0, 0.5);
2020-08-29 23:43:53 +00:00
}
.hb_txt {
color: #513d94;
text-shadow: 0px 0px 10px #513d94;
}
.ss {
2020-09-08 16:51:24 +00:00
background-color: #eff7ff;
2020-09-08 23:22:22 +00:00
color: rgba(0, 0, 0, 0.5);
2020-08-29 23:43:53 +00:00
}
.ss_txt {
2020-09-08 16:51:24 +00:00
color: #eff7ff;
text-shadow: 0px 0px 10px #eff7ff;
2020-08-29 23:43:53 +00:00
}
2020-09-09 15:20:39 +00:00
.hg {
background-color: #3d9989;
color: rgba(0, 0, 0, 0.5);
}
.hg_txt {
color: #3d9989;
text-shadow: 0px 0px 10px #3d9989;
2020-08-29 23:43:53 +00:00
}
2020-09-03 21:59:23 +00:00
.m {
background-color: #eb34c0;
2020-09-08 23:22:22 +00:00
color: rgba(0, 0, 0, 0.5);
2020-09-03 21:59:23 +00:00
}
.m_txt {
color: #eb34c0;
text-shadow: 0px 0px 10px #eb34c0;
}
.ba {
background-color: #ebc88f;
2020-09-08 23:22:22 +00:00
color: rgba(0, 0, 0, 0.5);
2020-09-03 21:59:23 +00:00
}
.ba_txt {
color: #ebc88f;
text-shadow: 0px 0px 10px #ebc88f;
}
2020-09-04 17:45:22 +00:00
.sg {
2020-09-07 14:16:04 +00:00
background-color: #3d997a;
2020-09-08 23:22:22 +00:00
color: rgba(0, 0, 0, 0.5);
2020-09-04 17:45:22 +00:00
}
.sg_txt {
2020-09-07 14:16:04 +00:00
color: #3d997a;
text-shadow: 0px 0px 10px #3d997a;
2020-09-04 17:45:22 +00:00
}
2020-09-07 02:33:31 +00:00
.sp {
2020-09-11 02:15:05 +00:00
background-color: #00a7bf;
2020-09-08 23:22:22 +00:00
color: rgba(0, 0, 0, 0.5);
2020-09-07 02:33:31 +00:00
}
2020-09-09 02:10:25 +00:00
.sp_txt {
2020-09-11 02:15:05 +00:00
color: #00a7bf;
text-shadow: 0px 0px 10px #00a7bf;
2020-09-09 15:20:39 +00:00
}
2020-09-07 02:33:31 +00:00
.l {
background-color: #7fbf7f;
2020-09-08 23:22:22 +00:00
color: rgba(0, 0, 0, 0.5);
2020-09-07 02:33:31 +00:00
}
2020-09-09 15:20:39 +00:00
.l_txt {
color: #7fbf7f;
text-shadow: 0px 0px 10px #7fbf7f;
}
2020-09-07 02:33:31 +00:00
.ps {
background-color: #b38fbf;
2020-09-08 23:22:22 +00:00
color: rgba(0, 0, 0, 0.5);
2020-09-07 02:33:31 +00:00
}
2020-09-09 15:20:39 +00:00
.ps_txt {
color: #b38fbf;
text-shadow: 0px 0px 10px #b38fbf;
}
2020-09-07 02:33:31 +00:00
.hs {
background-color: #dfdfff;
2020-09-08 23:22:22 +00:00
color: rgba(0, 0, 0, 0.5);
2020-09-07 02:33:31 +00:00
}
2020-09-09 15:20:39 +00:00
.hs_txt {
color: #dfdfff;
text-shadow: 0px 0px 10px #dfdfff;
}
2020-09-07 02:33:31 +00:00
.i {
background-color: #e5dab7;
2020-09-08 23:22:22 +00:00
color: rgba(0, 0, 0, 0.5);
2020-09-07 02:33:31 +00:00
}
2020-09-09 15:20:39 +00:00
.i_txt {
color: #e5dab7;
text-shadow: 0px 0px 10px #e5dab7;
2020-09-09 02:10:25 +00:00
}
2020-09-10 02:44:25 +00:00
.mb {
background-color: #ff9f7f;
color: rgba(0, 0, 0, 0.5);
}
.mb_txt {
color: #ff9f7f;
text-shadow: 0px 0px 10px #ff9f7f;
}
.ge {
background-color: #bfbfbf;
color: rgba(0, 0, 0, 0.5);
}
.ge_txt {
color: #bfbfbf;
text-shadow: 0px 0px 10px #bfbfbf;
}
.ma {
background-color: #9f9f9f;
color: rgba(0, 0, 0, 0.5);
}
.ma_txt {
color: #9f9f9f;
text-shadow: 0px 0px 10px #9f9f9f;
}
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;
cursor: pointer
}
#discord:hover {
transform: scale(1.2, 1.2);
}
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 {
transform: scale(1.2, 1.2);
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-05 20:00:21 +00:00
width: 100%;
min-width: 100%;
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%;
height: 75px;
background-color: #bf8f8f;
border: 4px solid;
border-radius: 4px;
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
}
.milestoneDone {
width: 100%;
height: 75px;
background-color: #77bf5f;
border: 4px solid;
border-radius: 4px;
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
}
.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-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
}
2020-08-20 04:55:26 +00:00
ul {
list-style-type: none;
}
2020-08-26 16:26:46 +00:00
.hChall {
background-color: #fa7f8a;
border: 2px solid #ff0017;
2020-08-26 16:26:46 +00:00
color: #ff0017;
width: 300px;
height: 300px;
font-size: 15px;
2020-08-26 16:26:46 +00:00
border-radius: 33.33%;
}
.hChall.done {
background-color: #95fcb4;
border: 2px solid #038c2c;
2020-08-26 16:26:46 +00:00
color: #038c2c;
}
2020-08-27 15:38:26 +00:00
.hChall.canComplete {
background-color: #93f0fa;
border: 2px solid #03858f;
2020-08-27 15:38:26 +00:00
color: #03858f;
}
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-09-11 02:15:05 +00:00
z-index: 2
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;
background-color: #000;
background-color: hsla(0, 0%, 5%, 0.9);
color: #fff;
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;
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: 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;
}