.main {
background: var(--page-bg);
background-size: 300%;
height: 100vh;
width: 100vw;
position: absolute;
top: 0;
left: 0;
}
#main-page-content {
padding: 30px 50px;
border: 2px solid var(--page-border-color);
border-radius: 6px;
position: absolute;
top: calc(50%);
overflow-y: auto;
height: 140px;
left: 50%;
background: var(--main-bg);
width: 60%;
text-align: center;
transform: translate(-50%, -50%);
z-index: 1;
transition: 0.25s ease height;
}
.main-page-about-init {
width: 25px;
height: 25px;
color: var(--text-color);
position: absolute;
top: 10px;
right: 10px;
cursor: pointer;
font-size: 23px;
z-index: 999;
}
.main-page-apps-init {
width: 25px;
height: 25px;
color: var(--text-color);
position: absolute;
top: 10px;
left: 10px;
cursor: pointer;
font-size: 23px;
z-index: 999;
}
.main-page-games-init {
width: 25px;
height: 25px;
color: var(--text-color);
position: absolute;
top: 10px;
left: 45px;
cursor: pointer;
font-size: 23px;
z-index: 999;
}
.main-page-about-init:hover, .main-page-apps-init:hover, .main-page-games-init:hover {
transform: scale(1.1);
}
.main-page-about-init, .main-page-apps-init, .main-page-games-init {
transition: 0.15s ease;
}
.app {
width: 180px;
transition: 0.2s ease;
height: 234px;
cursor: pointer;
padding: 10px;
border: 2px solid var(--text-color);
border-radius: 5px;
margin-left: 10px;
margin-right: 10px;
margin-top: 10px;
position: relative;
margin-bottom: 10px;
display: inline-flex;
justify-content: center;
align-items: center;
}
.app h3 {
color: var(--text-color);
margin-top: 10px;
font-weight: bold;
font-size: 20px;
width: 100%;
position: absolute;
bottom: 10px;
left: 50%;
transform: translateX(-50%);
}
.app:hover {
background: rgb(255, 255, 255, 0.1);
}
.app img {
width: 90% !important;
height: auto !important;
margin-bottom: 50px !important;
max-height: 180px !important;
background: white;
border-radius: 3px;
}
#inside-content-scroller {
min-height: calc(100% + 1px);
position: absolute;
top: 0;
left: 0;
width: 100%;
transition: 0.15s ease;
opacity: 0;
}
#main-page-content::-webkit-scrollbar {
width: 3px;
}
#main-page-content::-webkit-scrollbar-thumb {
background: var(--text-color);
border-radius: 3px;
}
#main-page-content::-webkit-scrollbar-track {
background: var(--main-bg);
}
#main-page-content h2 {
-moz-user-select: none;
-webkit-user-select: none;
user-select: none;
}
#main-page-content h2, #main-page-content h1, #main-page-content h5 {
color: var(--text-color);
}
#no-bottom-margin {
margin-bottom: 0;
}
#main-page-content h5, #main-page-content h2 {
width: 50%;
margin: auto;
text-align: left;
}
.type-sep {
width: 50%;
background: var(--text-color);
}
.apps-hidden {
height: 200px;
display: flex;
align-items: center;
justify-content: center;
margin: 0;
}
.down-chevron {
vertical-align: bottom;
margin-top: 6px;
margin-left: 10px;
cursor: pointer;
transition: 0.1s ease;
}
#games-over {
color: var(--text-color);
columns: 4 auto;
flex-direction: row;
display: flex;
flex-wrap: wrap;
text-align: center;
justify-content: center;
}
#launch-over {
content: none;
}
#exploits-over {
content: none;
}
#credits-over {
color: white;
content: none;
}
#exploits-over, #launch-over, #games-over, #credits-over {
margin-top: 10px;
margin-bottom: 10px;
overflow: hidden;
height: 0;
}
.visible {
height: 100% !important;
}
.toggle-chevron {
vertical-align: middle;
cursor: pointer;
transition: 0.25s ease;
}
.toggle-chevron path {
pointer-events: none;
}
.flip-chevron {
transform: rotate(180deg);
}
.bdesc {
color: #fff;
border-bottom: 0;
position: absolute;
overflow-wrap: anywhere;
white-space: break-spaces;
margin-top: 35px;
width: calc(100% - 20px);
margin-bottom: 2px;
}
.smol-exp-div {
width: min-content;
height: auto;
display: inline-flex;
}