Skip to content

Commit

Permalink
Add files via upload
Browse files Browse the repository at this point in the history
  • Loading branch information
AlexSchoolOH authored Oct 26, 2023
1 parent ebdb990 commit 16575c7
Show file tree
Hide file tree
Showing 3 changed files with 94 additions and 1 deletion.
20 changes: 19 additions & 1 deletion index.html
Original file line number Diff line number Diff line change
@@ -1 +1,19 @@
Temporary
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Utilies for Scratch Mods</title>
<link rel="stylesheet" href="styles.css">
</head>
<body>
<p class="BigText">Extension Builder to Turbowarp Extension Format</p>

<br>
<br>
<br>

<button id="converter">Convert</button>
<script src="script.js"></script>
</body>
</html>
3 changes: 3 additions & 0 deletions script.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
document.getElementById("converter").onclick = () => {
window.location.href = "https://obviousstudios.github.io/Scratch-Ext-Utils/EB2TW/"
}
72 changes: 72 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,72 @@
body{
background-color: #111111;
color: #FAFAFA;
}

.BigText {
position: relative;
font-weight: bolder;
text-align: center;
font-size: xx-large;
width: 100%;
font-family: Arial, Helvetica, sans-serif;
}

.MediumText {
position: relative;
font-weight: bolder;
text-align: center;
font-size: x-large;
width: 100%;
font-family: Arial, Helvetica, sans-serif;
}

TEXTAREA {
color: #FAFAFA;
font-family: Arial, Helvetica, sans-serif;

position: relative;

background-color: #1e1e1e;

padding-left: 1rem;
padding-right: 1rem;
margin-bottom: 2.5rem;

left: 25%;

width: 50%;
height: 15rem;

border-radius: 4px;
border-width: 1px;

border-style: solid;
border-color: #404040;

font-size: 1rem;

font-weight: bold;
}

button{
color: #FAFAFA;
font-family: Arial, Helvetica, sans-serif;
font-weight: bold;

cursor: pointer;
background-color: #ff4d4d;

position: relative;

left: calc(50% - 5rem);

margin-bottom: 5rem;

width: 10rem;
height: 2.5rem;
border-radius: 1.375rem;
border-width: 0px;

font-size: 1rem;
}

0 comments on commit 16575c7

Please sign in to comment.