mirror of
https://github.com/Expand-sys/ccashfrontend
synced 2025-12-16 23:02:13 +11:00
e4tu1n89023ny16v-8t91m2qu4[n31mt
This commit is contained in:
parent
5c68481341
commit
2e9548858f
6 changed files with 87 additions and 8 deletions
8
.vs/VSWorkspaceState.json
Normal file
8
.vs/VSWorkspaceState.json
Normal file
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"ExpandedNodes": [
|
||||
"",
|
||||
"\\public"
|
||||
],
|
||||
"SelectedNode": "\\sovindex.html",
|
||||
"PreviewInSolutionExplorer": false
|
||||
}
|
||||
Binary file not shown.
BIN
.vs/slnx.sqlite
BIN
.vs/slnx.sqlite
Binary file not shown.
31
sovabout.html
Normal file
31
sovabout.html
Normal file
|
|
@ -0,0 +1,31 @@
|
|||
<!DOCTYPE html>
|
||||
|
||||
<html>
|
||||
<head>
|
||||
<link rel="stylesheet" href="sovstylesheet.css">
|
||||
</head>
|
||||
<body>
|
||||
<div class="navbar">
|
||||
<a href="sovindex.html">
|
||||
<img class="navelement " id="icon" src="https://cdn.discordapp.com/attachments/846806487426007080/858316372751810590/CCashLogo2.png" alt="e">
|
||||
</a>
|
||||
<a class="navelement-button" href="sovindex.html">Home</a>
|
||||
<a class="navelement-button" href="sovabout.html">About</a>
|
||||
<div class="navelement-status">Server Status: Online</div>
|
||||
<div class="navelement-button">Login</div>
|
||||
<div class="navelement-button">Register</div>
|
||||
</div>
|
||||
<div class="bodytext">
|
||||
<h1>CCash Links</h1>
|
||||
<a class="aboutelementlink" href="https://github.com/EntireTwix/CCash">Webserver</a><br>
|
||||
<a class="aboutelementlink" href="https://github.com/Expand-sys/ccashfrontend">Frontend</a><br>
|
||||
<a class="aboutelementlink" href="https://github.com/LukeeeeBennett/ccash-client-js">JavaScript API</a><br>
|
||||
<a class="aboutelementlink" href="https://github.com/Reactified/rpm/blob/main/packages/ccash-api/api.lua">Lua API</a><br>
|
||||
<a class="aboutelementlink" href="https://github.com/fearlessdoggo21/ccashpythonclient">Python API</a><br>
|
||||
<a class="aboutelementlink" href="https://github.com/Soverclysm/CCash-dotnet-api">C# API (Indev)</a><br>
|
||||
<a class="aboutelementlink" href="https://git.stboyden.com/STBoyden/ccash-rs">Rust API (Indev)</a><br>
|
||||
</div>
|
||||
<div class="defineborderleft"></div>
|
||||
<div class="defineborderright"></div>
|
||||
</body>
|
||||
</html>
|
||||
|
|
@ -9,8 +9,8 @@
|
|||
<a href="sovindex.html">
|
||||
<img class="navelement " id="icon" src="https://cdn.discordapp.com/attachments/846806487426007080/858316372751810590/CCashLogo2.png" alt="e">
|
||||
</a>
|
||||
<div class="navelement-button">Home</div>
|
||||
<div class="navelement-button">About</div>
|
||||
<a class="navelement-button" href="sovindex.html">Home</a>
|
||||
<a class="navelement-button" href="sovabout.html">About</a>
|
||||
<div class="navelement-status">Server Status: Online</div>
|
||||
<div class="navelement-button">Login</div>
|
||||
<div class="navelement-button">Register</div>
|
||||
|
|
@ -19,12 +19,15 @@
|
|||
<h1>Welcome to CCash!</h1>
|
||||
<text>A webserver hosting a bank system for Minecraft, accessible both here and through ComputerCraft.</text>
|
||||
<h2>Why CCash?</h2>
|
||||
<text><ul>
|
||||
<li>example</li>
|
||||
</ul></text>
|
||||
<h3>Section Title</h3>
|
||||
<h4>Section Subtitle</h4>
|
||||
<text>• An abstracted currency instead of resource-based, avoiding hyperinflation as minecraft worlds are infinite<br></text>
|
||||
<text>• API Support for numerous languages<br></text>
|
||||
<text>• Open-source<br></text>
|
||||
<text>• Extremely computationally fast<br></text>
|
||||
<text>• Safe: Tamper-proof in-game, autosaving, hashed passwords, HTTPS</text>
|
||||
<h1>Simply login to manage your CCash account.</h1>
|
||||
</div>
|
||||
<div class="defineborderleft"></div>
|
||||
<div class="defineborderright"></div>
|
||||
</body>
|
||||
</html>
|
||||
<script>
|
||||
|
|
|
|||
|
|
@ -14,6 +14,11 @@ body {
|
|||
font-family: "Segoe UI";
|
||||
color: #FFFFFF;
|
||||
background-color: var(--backgroundColour);
|
||||
overflow-x: hidden;
|
||||
}
|
||||
|
||||
a {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.navbar {
|
||||
|
|
@ -34,6 +39,7 @@ body {
|
|||
border-radius: 50%;
|
||||
border: var(--colourFive) solid;
|
||||
margin-right: 5em;
|
||||
left: 1em;
|
||||
}
|
||||
|
||||
.navelement-button {
|
||||
|
|
@ -48,6 +54,8 @@ body {
|
|||
border-radius: 0.4em;
|
||||
border: transparent solid inset;
|
||||
transition: 0.1s ease-in-out;
|
||||
text-decoration: none;
|
||||
color: #ffffff;
|
||||
}
|
||||
|
||||
.navelement-button:hover {
|
||||
|
|
@ -65,7 +73,7 @@ body {
|
|||
display: inline-block;
|
||||
position: relative;
|
||||
font-size: 2em;
|
||||
background-color: #227722;
|
||||
background-color: #272;
|
||||
padding-bottom: 0.3em;
|
||||
border-radius: 0.4em;
|
||||
border: transparent solid inset;
|
||||
|
|
@ -77,6 +85,27 @@ body {
|
|||
margin-bottom: 10vh;
|
||||
margin-left: 15vw;
|
||||
margin-right: 15vw;
|
||||
color: var(--colourOne);
|
||||
}
|
||||
|
||||
.defineborderleft {
|
||||
z-index: -99;
|
||||
position: absolute;
|
||||
height: 100vh;
|
||||
background-color: var(--colourOne);
|
||||
width: 8.4vw;
|
||||
left: 0;
|
||||
top: 0em;
|
||||
}
|
||||
|
||||
.defineborderright {
|
||||
z-index: -99;
|
||||
position: absolute;
|
||||
height: 100vh;
|
||||
background-color: var(--colourOne);
|
||||
width: 8.4vw;
|
||||
right: 0;
|
||||
top: 0em;
|
||||
}
|
||||
|
||||
h1 {
|
||||
|
|
@ -99,6 +128,14 @@ h4 {
|
|||
}
|
||||
|
||||
text {
|
||||
position: relative;
|
||||
margin-left: 2vw;
|
||||
font-size: 1.3em;
|
||||
}
|
||||
|
||||
.aboutelementlink {
|
||||
color: #339;
|
||||
font-size: 1.3em;
|
||||
margin-left: 2vw;
|
||||
position: relative;
|
||||
}
|
||||
Loading…
Reference in a new issue