-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
19 changed files
with
436 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Topaz Marketplace Selector</title> | ||
<link rel="stylesheet" href="../resources/styles.css"> | ||
<link rel="stylesheet" href="../resources/css/marketplace-selector.css"> | ||
<script defer src="../resources/js/marketplace-selector.js"></script> | ||
<script src="../resources/functions.js"></script> | ||
<script src="../resources/bootstrapping.js"></script> | ||
<script src="https://kit.fontawesome.com/71ea2e3f82.js" crossorigin="anonymous"></script> | ||
</head> | ||
<body class="vertical-flex" style="height: 100%; margin: 0;"> | ||
<header class="text-center"> | ||
<h1>Marketplace Selector</h1> | ||
</header> | ||
<main class="vertical-flex" style="flex-grow: 1; overflow: hidden;"> | ||
<section class="horizontal-flex" id="topbar"> | ||
<button class="no-button-style" onclick="openSelector()"><i class="fa-solid fa-arrow-left"></i>Back</button> | ||
<button class="no-button-style" onclick="newMarketplace()"><i class="fa-solid fa-plus"></i>New</button> | ||
</section> | ||
<section class="vertical-flex" id="marketplaces" style="flex-grow: 1; overflow-y: auto;"></section> | ||
</main> | ||
</body> | ||
</html> |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<meta http-equiv="Content-Type" content="text/html;charset=UTF-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1.0"> | ||
<title>Topaz Prompt</title> | ||
<link rel="stylesheet" href="../resources/styles.css"> | ||
<link rel="stylesheet" href="../resources/css/prompt.css"> | ||
<script defer src="../resources/js/prompt.js"></script> | ||
<script src="../resources/functions.js"></script> | ||
<script src="../resources/bootstrapping.js"></script> | ||
<script src="../resources/scripting.js"></script> | ||
<script src="https://kit.fontawesome.com/71ea2e3f82.js" crossorigin="anonymous"></script> | ||
</head> | ||
<body> | ||
<header> | ||
<h1>Prompt</h1> | ||
</header> | ||
<main class="vertical-flex"> | ||
|
||
</main> | ||
<button id="submit" onclick="submit()">Submit</button> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,72 @@ | ||
html, body { | ||
height: 100%; | ||
width: 100%; | ||
max-height: 100%; | ||
max-width: 100%; | ||
margin: 0; | ||
} | ||
|
||
header { | ||
app-region: drag; | ||
} | ||
|
||
h1 { | ||
font-size: 40px; | ||
color: var(--heading); | ||
} | ||
|
||
#topbar > button { | ||
margin: 2vh 1vw; | ||
color: var(--buttons); | ||
} | ||
#topbar > button:hover { | ||
color: var(--buttons-hover); | ||
} | ||
#topbar > button > i { | ||
margin: 0 0.5vw; | ||
} | ||
|
||
.marketplace { | ||
margin: 2vh 1%; | ||
padding: 1vh 1%; | ||
background-color: var(--marketplace-background); | ||
width: 96%; | ||
display: flex; | ||
flex-direction: column; | ||
overflow: auto; | ||
} | ||
|
||
.marketplace > h2 { | ||
font-size: 20px; | ||
color: var(--marketplace-name); | ||
margin: 1vh; | ||
font-weight: bold; | ||
} | ||
.marketplace > h3 { | ||
font-size: 16px; | ||
color: var(--marketplace-url); | ||
margin: 1vh; | ||
font-weight: normal; | ||
} | ||
|
||
.marketplace:hover { | ||
background-color: var(--marketplace-hover); | ||
cursor: pointer; | ||
} | ||
|
||
.marketplace::-webkit-scrollbar { | ||
width: 0; | ||
height: 0; | ||
} | ||
|
||
#marketplaces { | ||
flex-grow: 1; | ||
overflow-y: auto; | ||
overflow-x: hidden; | ||
} | ||
|
||
body, main { | ||
height: 100%; | ||
display: flex; | ||
flex-direction: column; | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.