diff --git a/index.html b/index.html index 7f83595..c5fa7bc 100644 --- a/index.html +++ b/index.html @@ -1 +1,19 @@ -Temporary + + + + + + Utilies for Scratch Mods + + + +

Extension Builder to Turbowarp Extension Format

+ +
+
+
+ + + + + \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..b73b04a --- /dev/null +++ b/script.js @@ -0,0 +1,3 @@ +document.getElementById("converter").onclick = () => { + window.location.href = "https://obviousstudios.github.io/Scratch-Ext-Utils/EB2TW/" +} \ No newline at end of file diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..e657a0e --- /dev/null +++ b/styles.css @@ -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; +} \ No newline at end of file