diff --git a/apps/info.html b/apps/info.html index 5d44e15..beb9e83 100644 --- a/apps/info.html +++ b/apps/info.html @@ -31,8 +31,9 @@ text-align: center; } +

i-eat.rocks

-

v0.0.0

+

v0.0.1

Created by PossiblyAxolotl
\ No newline at end of file diff --git a/apps/notepad.html b/apps/notepad.html index d65048c..9a195dd 100644 --- a/apps/notepad.html +++ b/apps/notepad.html @@ -1 +1,29 @@ - \ No newline at end of file + + + + + + Notepad + + + + + + + \ No newline at end of file diff --git a/apps/standard.css b/apps/standard.css new file mode 100644 index 0000000..9d2cb8d --- /dev/null +++ b/apps/standard.css @@ -0,0 +1,25 @@ +@font-face { + font-family: "PC"; + src: url("/images/ui/joystix monospace.otf"); + font-smooth: never; +} +* { + font-family: "PC", monospace; +} + +button, button:hover { + border: outset white 4px; + background-color: rgb(219, 219, 219); + color:black; + + text-align: center; + + margin:2px; + + box-shadow: 0px 0px 2px rgba(0,0,0,0.25); +} + +button:active { + border: inset white 4px; + background-color: lightgray; +} diff --git a/apps/terminal.html b/apps/terminal.html new file mode 100644 index 0000000..928bd71 --- /dev/null +++ b/apps/terminal.html @@ -0,0 +1,69 @@ + + + + + + Terminal + + + + + + +
+ + + +
+ + + + \ No newline at end of file diff --git a/apps/welcome.html b/apps/welcome.html new file mode 100644 index 0000000..8ea270e --- /dev/null +++ b/apps/welcome.html @@ -0,0 +1,30 @@ + + + + + + Welcome + + + + + + + +

Hihi

+ +

Page coming soon!

+ + + +

PossiblyAxolotl Directory

+ + \ No newline at end of file diff --git a/apps/windowgen.html b/apps/windowgen.html index 15e19f8..c025437 100644 --- a/apps/windowgen.html +++ b/apps/windowgen.html @@ -17,7 +17,7 @@ diff --git a/commands.js b/commands.js new file mode 100644 index 0000000..00feb37 --- /dev/null +++ b/commands.js @@ -0,0 +1,13 @@ +window.onmessage = function(e) { + const dat = e.data.split(" "); + + console.log(dat) + /* CREATE WINDOW */ + if (dat[0] == "win") { + createWindow(dat[1],dat[2],dat[3]+"px",dat[4]+"px") + } else if (dat[0] == "rock") { + window.location.href='/favicon.ico'; + } else if (dat[0] == "url") { + window.location.href = dat[1]; + } +} \ No newline at end of file diff --git a/drag.js b/drag.js index ea02159..bc0ef8f 100644 --- a/drag.js +++ b/drag.js @@ -131,14 +131,4 @@ function createWindow(url, title, width, height) { win.style.zIndex = zIndex; document.body.appendChild(win); -} - -/* SUBWINDOW CREATE WINDOW */ -window.onmessage = function(e) { - const dat = e.data.split("|"); - - console.log(dat) - if (dat[0] == "WIN") { - createWindow(dat[1],dat[2],dat[3]+"px",dat[4]+"px") - } } \ No newline at end of file diff --git a/index.html b/index.html index d8297ba..e10aaf8 100644 --- a/index.html +++ b/index.html @@ -7,32 +7,17 @@ - + - + + -
-
-

Home

-
-
-

Hihi

-

Page coming soon!

- - - - - - - - - - -

PossiblyAxolotl Directory

-
- -
+ \ No newline at end of file diff --git a/style.css b/style.css index 632a868..efc23ff 100644 --- a/style.css +++ b/style.css @@ -22,7 +22,7 @@ p, h1, button { animation: appear cubic-bezier(0.34, 1.56, 0.64, 1) 0.5s; position: absolute; border: outset 4px white; - background:white; + background:rgb(219, 219, 219); text-align: center; padding:0; @@ -36,23 +36,6 @@ p, h1, button { box-shadow: 4px 4px rgba(0,0,0,0.5), 0px 0px 4px rgba(0,0,0,0.5); } -.body { - border: outset 4px white; - background:white; - text-align: center; - - padding:0; - margin:auto; - - margin-top: 64px; - - max-width: 800px; - width: calc(100% - 48px); - - box-shadow: 4px 4px rgba(0,0,0,0.5); - margin-bottom: 8px; -} - @media only screen and (max-width:800px) { .body { margin-top: 24px; @@ -63,7 +46,7 @@ p, h1, button { background-color: #4592b5; color: white; - border-bottom: inset 4px rgb(219, 219, 219); + border: solid 4px rgb(219, 219, 219); display: flex; padding:3px; @@ -92,7 +75,7 @@ p, h1, button { button, button:hover { border: outset white 4px; - background-color: white; + background-color: rgb(219, 219, 219); color:black; text-align: center;