mirror of
https://github.com/OxyZin/LegacyConsoleLauncher.git
synced 2026-07-16 03:00:47 +00:00
152 lines
1.8 KiB
CSS
152 lines
1.8 KiB
CSS
body {
|
|
margin: 0;
|
|
font-family: Arial, Helvetica, sans-serif;
|
|
color: white;
|
|
|
|
background: #1a1a1a;
|
|
background-image: url("Assets/stone.png");
|
|
}
|
|
|
|
header {
|
|
|
|
display: flex;
|
|
align-items: center;
|
|
|
|
padding: 3px 25px;
|
|
|
|
background-image: url("Assets/dirt.png");
|
|
background-repeat: repeat;
|
|
background-size: 64px;
|
|
|
|
border-bottom: 2px solid #000;
|
|
|
|
}
|
|
|
|
.logo img {
|
|
height: 40px;
|
|
padding-top: 10px;
|
|
margin-right: 30px;
|
|
}
|
|
|
|
nav a {
|
|
|
|
color: white;
|
|
text-decoration: none;
|
|
margin-right: 18px;
|
|
font-weight: bold;
|
|
font-size: 14px;
|
|
|
|
}
|
|
|
|
nav a:hover {
|
|
text-decoration: underline;
|
|
}
|
|
|
|
main {
|
|
|
|
max-width: 1100px;
|
|
margin: auto;
|
|
padding: 40px;
|
|
|
|
}
|
|
|
|
.content {
|
|
|
|
display: flex;
|
|
gap: 60px;
|
|
|
|
}
|
|
|
|
.left {
|
|
|
|
flex: 2;
|
|
|
|
}
|
|
|
|
.screenshot img {
|
|
|
|
width: 100%;
|
|
border: 3px solid #000;
|
|
|
|
}
|
|
|
|
.left p {
|
|
|
|
font-size: 14px;
|
|
line-height: 1.6;
|
|
color: #ddd;
|
|
|
|
}
|
|
|
|
.right {
|
|
|
|
flex: 1;
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
.steve {
|
|
padding-top: 70px;
|
|
width: 260px;
|
|
margin-bottom: 20px;
|
|
|
|
}
|
|
|
|
.play {
|
|
|
|
background: #d9822b;
|
|
border: none;
|
|
|
|
padding: 14px 40px;
|
|
|
|
font-size: 20px;
|
|
font-weight: bold;
|
|
|
|
color: white;
|
|
|
|
border-radius: 6px;
|
|
|
|
cursor: pointer;
|
|
|
|
}
|
|
|
|
.play:hover {
|
|
|
|
background: #c77425;
|
|
|
|
}
|
|
|
|
.dot {
|
|
|
|
height: 10px;
|
|
width: 10px;
|
|
|
|
background: #00ff55;
|
|
|
|
border-radius: 50%;
|
|
|
|
display: inline-block;
|
|
|
|
margin-right: 8px;
|
|
|
|
}
|
|
|
|
footer {
|
|
|
|
margin-top: 60px;
|
|
padding: 20px;
|
|
|
|
text-align: center;
|
|
|
|
background: rgba(0, 0, 0, 0.6);
|
|
border-top: 2px solid #000;
|
|
|
|
color: #ccc;
|
|
|
|
font-size: 13px;
|
|
|
|
}
|
|
|
|
footer p {
|
|
margin: 5px 0;
|
|
} |