diff --git a/apps/famous/Moon.jpg b/apps/famous/Moon.jpg new file mode 100644 index 0000000..b8ec22a Binary files /dev/null and b/apps/famous/Moon.jpg differ diff --git a/apps/famous/canyon.jpg b/apps/famous/canyon.jpg new file mode 100644 index 0000000..06cadfb Binary files /dev/null and b/apps/famous/canyon.jpg differ diff --git a/apps/famous/easter.jpg b/apps/famous/easter.jpg new file mode 100644 index 0000000..84396af Binary files /dev/null and b/apps/famous/easter.jpg differ diff --git a/apps/famous/henge.jpg b/apps/famous/henge.jpg new file mode 100644 index 0000000..66a95ec Binary files /dev/null and b/apps/famous/henge.jpg differ diff --git a/apps/famous/index.html b/apps/famous/index.html new file mode 100644 index 0000000..12955ac --- /dev/null +++ b/apps/famous/index.html @@ -0,0 +1,43 @@ + + + + + + Famous rocks + + + + + + +

Famous Rocks

+ + from wikipedia +

The Grand Canyon is one of the largest collectives of rock mass on earth. I haven't been there before, but someday I'd love to go get a bite to eat.

+ + from wikipedia +

Easter Island is where all the most popular rocks host their annual gathering, before venturing forth to forge the future of rock-kind. Truly a wonder of nature.

+ + from wikipedia +

This stone is named Rosetta. How could they trap her in a glass box like that? To rot in there for all of eternity??? Poor Rosetta...

+ + from xitter +

Despite his name, Dwayne "The Rock" Johnson is actually not a rock, but a human boy! I know, he had me fooled too. And what's this? He's about to dig into a nice tasty stone of his own?? Save some for me, Dwayne!

+ + from wikipedia +

Legend has it that once repaired, if you perform the right spell here you can unlock a special mask like no other.

+ + from wikimedia +

Dude who wrote on my rock? What the hell man??? I was gonna eat that. People these days...

+ + from jased +

Here we see a group of small rocks at the annual family reunion. They sit peacefully, unaware of the horrors to come. What's that on the rock in front of them? Whatever it is, its probably not important.

+ + from wikimedia +

Many young rocks aspire to someday become a large space rock like the moon. Little do they know, the moon was actually put there by NASA to give people something to do and they stopped hiring rocks years ago.

+ + \ No newline at end of file diff --git a/apps/famous/reunion.jpg b/apps/famous/reunion.jpg new file mode 100644 index 0000000..5196225 Binary files /dev/null and b/apps/famous/reunion.jpg differ diff --git a/apps/famous/rock.png b/apps/famous/rock.png new file mode 100644 index 0000000..eeeee91 Binary files /dev/null and b/apps/famous/rock.png differ diff --git a/apps/famous/rosetta.jpg b/apps/famous/rosetta.jpg new file mode 100644 index 0000000..1b497df Binary files /dev/null and b/apps/famous/rosetta.jpg differ diff --git a/apps/famous/written.jpg b/apps/famous/written.jpg new file mode 100644 index 0000000..31b69c8 Binary files /dev/null and b/apps/famous/written.jpg differ diff --git a/apps/info.html b/apps/info.html index 3142ca2..96901b5 100644 --- a/apps/info.html +++ b/apps/info.html @@ -44,7 +44,7 @@

i-eat.rocks

-

Rock-OS v0.1.2

+

Rock-OS v0.1.3

Created by PossiblyAxolotl

Contact

diff --git a/apps/notepad.html b/apps/notepad.html index 109c1e8..e352a26 100644 --- a/apps/notepad.html +++ b/apps/notepad.html @@ -24,6 +24,7 @@ - + + \ No newline at end of file diff --git a/apps/standard.css b/apps/standard.css index 96b3447..3d2653a 100644 --- a/apps/standard.css +++ b/apps/standard.css @@ -34,4 +34,28 @@ input { *:focus, *:active { outline: none; +} + +h1 { + text-align: center; +} + +@keyframes hue { + 0% { + filter: hue-rotate(0deg); + } + + 100% { + filter: hue-rotate(360deg); + } +} + +.rainbow { + color:red; + animation: hue infinite 2s linear; +} + +a { + color:purple; + text-decoration: underline; } \ No newline at end of file diff --git a/apps/welcome.html b/apps/welcome.html index 3556642..f00e9c3 100644 --- a/apps/welcome.html +++ b/apps/welcome.html @@ -19,10 +19,13 @@ window.top.postMessage(`win ${url} ${name} ${w} ${h}`) } -

Hihi

+

Hey rock fan!

-

Page coming soon!

+

If you're seeing this that means you must really like rocks.

+

Don't worry, I'm the same way, which is why I developed Rock-OS

+

Rock-OS is chock-full of rock-related activities to keep your brain stimulated, but of course you know that after paying the modest $1,999 license fee.

+

Now without further ado, please enjoy Rock-OS!

- + \ No newline at end of file diff --git a/commands.js b/commands.js index ef45e87..cbe048f 100644 --- a/commands.js +++ b/commands.js @@ -9,6 +9,8 @@ window.onmessage = function(e) { window.location.href='/favicon.ico'; } else if (dat[0] == "url") { window.location.href = dat[1]; + } else if (dat[0] == "urlt") { + window.open(dat[1]); } else if (dat[0] == "wg") { createWindow("/apps/windowgen.html", "WINDOWGEN™", "250px", "150px") } diff --git a/index.html b/index.html index 188141e..fe87b8c 100644 --- a/index.html +++ b/index.html @@ -26,6 +26,9 @@

rock

+
+

famous rocks

+

terminal

@@ -44,7 +47,7 @@ diff --git a/style.css b/style.css index 4a8090c..d8b48b9 100644 --- a/style.css +++ b/style.css @@ -135,4 +135,19 @@ body, html { margin:4px; display: flex; flex-wrap: wrap; +} + +@keyframes hue { + 0% { + filter: hue-rotate(0deg); + } + + 100% { + filter: hue-rotate(360deg); + } +} + +.rainbow { + color:red; + animation: hue infinite 2s linear; } \ No newline at end of file