Update index.html

This commit is contained in:
Preston 2024-01-03 20:14:09 -08:00 committed by GitHub
parent e9fa5bf6c9
commit a441e76148
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -66,36 +66,6 @@
display: block; display: block;
} }
.splitter {
border-right: 1.5px solid #888; /* Adjust color as needed */
height: 50px; /* Adjust height as needed */
margin: 0 10px; /* Adjust margin as needed */
}
.main-reset-buttons {
display: flex;
flex-direction: row;
align-items: center;
}
.dropdown-btn-container {
display: flex;
flex-direction: row;
align-items: center;
}
.column-1-8 {
display: flex;
flex-direction: column;
align-items: center;
}
.column-1-5 {
display: flex;
flex-direction: column;
align-items: center;
}
.source-btn { .source-btn {
background-color: black; background-color: black;
color: white; color: white;
@ -112,19 +82,33 @@
.source-btn:hover { .source-btn:hover {
background-color: #333; background-color: #333;
} }
.pick-client {
color: #555;
}
.line {
width: 100%;
border-top: 1px solid #888;
margin: 10px 0;
}
.version-text {
margin: 10px 0;
color: #555;
}
</style> </style>
</head> </head>
<body> <body>
<h1>Welcome to EaglerCraftX</h1> <h1>Welcome to EaglerCraftX</h1>
<h2 class="pick-client">Pick a Client:</h2>
<p class="version-text">Version 1.8</p>
<div class="column-1-8">
<a href="main.html"><button>Main Client</button></a> <a href="main.html"><button>Main Client</button></a>
<div class="splitter"></div>
<a href="resent.html"><button>Resent Client</button></a> <a href="resent.html"><button>Resent Client</button></a>
</div> <hr class="line">
<p class="version-text">Version 1.5</p>
<div class="column-1-5">
<div class="splitter"></div>
<div class="dropdown-btn"> <div class="dropdown-btn">
Precision Client Precision Client
<div class="dropdown-content"> <div class="dropdown-content">
@ -132,8 +116,7 @@
<a href="PrecisionBeta.html">Precision Beta Client</a> <a href="PrecisionBeta.html">Precision Beta Client</a>
</div> </div>
</div> </div>
</div>
<a href="https://github.com/PrestonT500/EaglerCraftX-1.8" class="source-btn">Source</a> <a href="https://github.com/PrestonT500/EaglerCraftX-1.8" class="source-btn" target="_blank">Source</a>
</body> </body>
</html> </html>