This commit is contained in:
2025-04-30 05:01:03 +02:00
parent 4b8d7f1679
commit 7789bde384
10 changed files with 417 additions and 33 deletions

View File

@@ -116,10 +116,11 @@ button.classic {
border: none;
cursor: pointer;
outline: none;
margin-left: 2%;
margin-top: 5px;
transition: .3s;
margin-top: 5px;
font-weight: 900;
border-radius: 5px;
z-index: 9;
background-color: #39aa6d;
}
@@ -247,6 +248,130 @@ main > section.twitch {
right: 60px;
}
input[type="range"] {
width: 100%;
border: none;
accent-color: #2E8B57;
background-color: #2E8B57;
}
input[type="range"]#audioVolume {
width: 83%;
}
input[type="text"],
input[type="password"] {
width: 90%;
border: 0px;
color: #ffffff;
outline: 0px;
height: 30px;
padding-left: 10px;
margin-top: 4px;
margin-bottom: 4px;
border-radius: 5px;
background-color: #292929;
}
main > article.loginchoice {
position: absolute;
top: 50%;
left: 50%;
width: 25%;
height: 25%;
color: #ffffff;
text-align: center;
border-radius: 10px;
padding-top: 20px;
transform: translate(-50%, -50%);
background-color: #343434;
}
main > article.loginchoice > input:nth-of-type(1) {
margin-top: 10px;
}
button {
text-align: center;
}
button.login {
width: 90%;
height: 60px;
border: none;
outline: none;
color: #ffffff;
cursor: pointer;
font-size: larger;
font-weight: 900;
border-radius: 10px;
background-color: #292929;
border: 3px #292929 solid;
transition: .23s;
margin-top: 13px;
line-height: 40px;
}
button.login:hover {
border-color: #12865c;
}
button.login > img {
width: 40px;
margin-right: 10px;
vertical-align: middle;
}
div[frame="mojang"] > p {
width: 90%;
margin-left: 5%;
text-align: left;
font-size: small;
margin-top: 4px;
margin-bottom: 4px;
}
a {
text-decoration: underline;
color: #12865c;
}
article.game {
text-align: center;
}
article.game > label {
font-size: small;
margin-top: 7px;
}
article.game > div.ranges {
display: flex;
flex-wrap: wrap;
justify-content: space-evenly;
}
article.game > div.ranges > span {
font-size: small;
}
article.game > div.ranges > input {
width: 60%;
}
div.checkboxes {
width: 100%;
text-align: left;
}
input[type="checkbox"] {
accent-color: #12865c;
}
div.checkboxes > input[type="checkbox"] {
font-size: small;
}
[hidden] {
display: none;
visibility: hidden;