251 lines
4.5 KiB
CSS
251 lines
4.5 KiB
CSS
main {
|
|
background-image: url("../img/wallpaper.png");
|
|
background-attachment: fixed;
|
|
background-size: cover;
|
|
background-repeat: no-repeat;
|
|
background-position-y: center;
|
|
}
|
|
|
|
main > aside {
|
|
position: absolute;
|
|
width: 100%;
|
|
height: 100%;
|
|
background-color: #2626261f;
|
|
backdrop-filter: blur(13px);
|
|
}
|
|
|
|
main > aside > nav {
|
|
position: absolute;
|
|
width: 80px;
|
|
height: 100%;
|
|
background-color: #414141;
|
|
|
|
display: flex;
|
|
flex-direction: column;
|
|
align-items: center;
|
|
padding: 13px 0;
|
|
}
|
|
|
|
main > aside > nav > button {
|
|
font-size: larger;
|
|
margin-top: 20px;
|
|
margin-bottom: 10px;
|
|
filter: brightness(0.75);
|
|
}
|
|
|
|
main > aside > nav > *.active {
|
|
filter: brightness(1);
|
|
}
|
|
|
|
main > aside > nav > button:hover {
|
|
filter: brightness(0.90);
|
|
}
|
|
|
|
main > aside > nav > button:first-of-type {
|
|
margin-top: 0px;
|
|
}
|
|
|
|
main > aside > nav > button:first-of-type,
|
|
main > aside > nav > button:first-of-type:hover {
|
|
filter: brightness(1);
|
|
}
|
|
|
|
main > aside > nav > button:first-of-type > img {
|
|
width: 60px;
|
|
height: 60px;
|
|
border-radius: 5px;
|
|
}
|
|
|
|
main > aside > nav > button:nth-child(2) {
|
|
margin-top: auto;
|
|
}
|
|
|
|
main > aside > nav > button:last-child {
|
|
margin-top: auto;
|
|
width: 40px;
|
|
height: 40px;
|
|
}
|
|
|
|
main > aside > nav > button:last-child {
|
|
margin-bottom: 0;
|
|
}
|
|
|
|
main > aside > nav > button:has(> i.fas.fa-sign-out-alt):hover {
|
|
color: #ff4747;
|
|
}
|
|
|
|
main > aside > section.frames {
|
|
position: absolute;
|
|
left: 80px;
|
|
height: 100%;
|
|
width: calc(100% - 80px);
|
|
}
|
|
|
|
main > aside > section.frames > article,
|
|
main > aside > section.frames > article.frame.dynmap > iframe {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
main > aside > section.frames > article.frame.dynmap > iframe {
|
|
background-color: #000000;
|
|
}
|
|
|
|
details {
|
|
width: 96%;
|
|
min-height: 84px;
|
|
color: #ffffff;
|
|
cursor: pointer;
|
|
margin-left: 2%;
|
|
margin-right: 2%;
|
|
margin-top: 2%;
|
|
margin-bottom: 2%;
|
|
border-radius: 10px;
|
|
background: #2a2a2a80;
|
|
border: 3px solid #929292;
|
|
border-radius: 15px;
|
|
backdrop-filter: blur(10px);
|
|
}
|
|
|
|
details:nth-of-type(1) {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
details > summary {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
list-style: none;
|
|
flex-direction: row;
|
|
}
|
|
|
|
details > summary > div > i {
|
|
font-size: 54px;
|
|
margin-left: 30px;
|
|
margin-right: 30px;
|
|
}
|
|
|
|
details > summary > div {
|
|
height: 80px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: center;
|
|
align-items: flex-start;
|
|
}
|
|
|
|
details > summary > div > h2 {
|
|
font-size: 17px;
|
|
}
|
|
|
|
details > summary > div > h3 {
|
|
font-size: 12px;
|
|
font-weight: 400;
|
|
}
|
|
|
|
details > div {
|
|
cursor: default;
|
|
margin-left: 30px;
|
|
margin-right: 30px;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
div.filePathSelector {
|
|
width: 100%;
|
|
text-align: center;
|
|
}
|
|
|
|
div.filePathSelector > input[type="text"] {
|
|
width: 87%;
|
|
height: 34px;
|
|
border: none;
|
|
padding-left: 15px;
|
|
border-radius: 10px;
|
|
color: #ffffff;
|
|
background-color: #262626b9;
|
|
margin-right: 0.5%;
|
|
}
|
|
|
|
div.filePathSelector > button {
|
|
width: 11%;
|
|
color: #ffffff;
|
|
border: none;
|
|
font-weight: 500;
|
|
height: 34px;
|
|
cursor: pointer;
|
|
font-size: 13px;
|
|
border-radius: 10px;
|
|
line-height: 18px;
|
|
background-color: #E89032;
|
|
}
|
|
|
|
div.filePathSelector > button > i {
|
|
margin-right: 4px;
|
|
}
|
|
|
|
details.ram > div > h5 > span {
|
|
font-weight: 500;
|
|
}
|
|
|
|
details.ram > div > .ramSelector {
|
|
font-weight: 500;
|
|
}
|
|
|
|
input[type="range"] {
|
|
border: none;
|
|
outline: none;
|
|
accent-color: #E89032;
|
|
}
|
|
|
|
section.ramSelector {
|
|
display: flex;
|
|
flex-wrap: wrap;
|
|
justify-content: space-evenly;
|
|
}
|
|
|
|
section.ramSelector > input[type="range"] {
|
|
width: calc(100% - ((30px * 2) + 80px));
|
|
}
|
|
|
|
div.container {
|
|
margin: 20px 20px 20px 20px;
|
|
border: 3px solid #929292;
|
|
background: #212121ce;
|
|
border-radius: 15px;
|
|
color: #fff;
|
|
padding: 20px 20px 20px 20px;
|
|
word-break: break-all;
|
|
overflow: auto;
|
|
}
|
|
|
|
div.logs {
|
|
width: calc(100% - 40px);
|
|
height: calc(100% - 40px);
|
|
}
|
|
|
|
div.profile {
|
|
width: calc(100% - 40px);
|
|
height: calc(100% - 40px);
|
|
}
|
|
|
|
div.profile {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
div.profile > section.skinview3d {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: calc(100% / 3);
|
|
height: 100%;
|
|
}
|
|
|
|
div.profile > section.cosmectics {
|
|
width: calc((100% / 3) * 2 - 20px);
|
|
height: 100%;
|
|
}
|
|
|
|
canvas#skin {
|
|
width: 85% !important;
|
|
height: 85% !important;
|
|
outline: none;
|
|
} |