From 6b81836e6b9815a2996a55ad37dcaa4d89f99e42 Mon Sep 17 00:00:00 2001 From: s1n Date: Sat, 28 Mar 2020 10:31:08 -0700 Subject: 3/28/2020, 10:30 --- directory/.htaccess | 1 + directory/css/main.css | 479 +++++++++++++++++++++++++++++++ directory/games/browser-games/index.html | 355 +++++++++++++++++++++++ directory/games/index.html | 129 +++++++++ directory/games/js/main.js | 5 + directory/index.html | 108 +++++++ directory/js/main.js | 5 + directory/tools/assets/SinAccessV.1.zip | Bin 0 -> 1601 bytes directory/tools/index.html | 227 +++++++++++++++ 9 files changed, 1309 insertions(+) create mode 100644 directory/.htaccess create mode 100644 directory/css/main.css create mode 100644 directory/games/browser-games/index.html create mode 100644 directory/games/index.html create mode 100644 directory/games/js/main.js create mode 100644 directory/index.html create mode 100644 directory/js/main.js create mode 100644 directory/tools/assets/SinAccessV.1.zip create mode 100644 directory/tools/index.html (limited to 'directory') diff --git a/directory/.htaccess b/directory/.htaccess new file mode 100644 index 0000000..45552cb --- /dev/null +++ b/directory/.htaccess @@ -0,0 +1 @@ +Options -Indexes \ No newline at end of file diff --git a/directory/css/main.css b/directory/css/main.css new file mode 100644 index 0000000..2c869f7 --- /dev/null +++ b/directory/css/main.css @@ -0,0 +1,479 @@ +table { + margin: 0 auto; +} + +.title { + text-align: center +} + +/* LOADING ANIMATION */ +/* +.loader-wrapper { + width: 100%; + height: 100%; + position: absolute; + top: 0; + left: 0; + background: #fdfdfd; + display: -webkit-box; + display: -ms-flexbox; + display: flex; + -webkit-box-pack: center; + -ms-flex-pack: center; + justify-content: center; + -webkit-box-align: center; + -ms-flex-align: center; + align-items: center; + font-size: 18px; +} + +.loader { + width: 100px; + height: 100px; + display: inline-table; + -webkit-box-sizing: border-box; + box-sizing: border-box; + position: relative; + border-spacing: 0.3em; +} + +.ascii-spinner-1 { + opacity: 0; + position: absolute; + margin-left: 65px; + margin-right: auto; + left: 0; + right: 0; + color: #999; + animation: loading-1 800ms ease-in infinite; + -webkit-animation: loading-1 800ms ease-in infinite; + -moz-animation: loading-1 800ms ease-in infinite; + -o-animation: loading-1 800ms ease-in infinite; +} + +.ascii-spinner-2 { + opacity: 0; + position: absolute; + margin-left: 65px; + margin-right: auto; + left: 0; + right: 0; + color: #999; + -webkit-animation: loading-2 800ms ease-in infinite; + -moz-animation: loading-2 800ms ease-in infinite; + -o-animation: loading-2 800ms ease-in infinite; + animation: loading-2 800ms ease-in infinite; +} + +.ascii-spinner-3 { + opacity: 0; + position: absolute; + margin-left: 65px; + margin-right: auto; + left: 0; + right: 0; + color: #999; + -webkit-animation: loading-3 800ms ease-in infinite; + -moz-animation: loading-3 800ms ease-in infinite; + -o-animation: loading-3 800ms ease-in infinite; + animation: loading-3 800ms ease-in infinite; +} + +.ascii-spinner-4 { + opacity: 0; + position: absolute; + margin-left: 65px; + margin-right: auto; + left: 0; + right: 0; + color: #999; + -webkit-animation: loading-4 800ms ease-in infinite; + -moz-animation: loading-4 800ms ease-in infinite; + -o-animation: loading-4 800ms ease-in infinite; + animation: loading-4 800ms ease-in infinite; +} + +@-webkit-keyframes loading-1 { + 0% { + opacity: 0; + } + + 1% { + opacity: 1; + } + + 24% { + opacity: 1; + } + + 25% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@-moz-keyframes loading-1 { + 0% { + opacity: 0; + } + + 1% { + opacity: 1; + } + + 24% { + opacity: 1; + } + + 25% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@-o-keyframes loading-1 { + 0% { + opacity: 0; + } + + 1% { + opacity: 1; + } + + 24% { + opacity: 1; + } + + 25% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@keyframes loading-1 { + 0% { + opacity: 0; + } + + 1% { + opacity: 1; + } + + 24% { + opacity: 1; + } + + 25% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@-webkit-keyframes loading-2 { + 0% { + opacity: 0; + } + + 24% { + opacity: 0; + } + + 25% { + opacity: 1; + } + + 49% { + opacity: 1; + } + + 50% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@-moz-keyframes loading-2 { + 0% { + opacity: 0; + } + + 24% { + opacity: 0; + } + + 25% { + opacity: 1; + } + + 49% { + opacity: 1; + } + + 50% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@-o-keyframes loading-2 { + 0% { + opacity: 0; + } + + 24% { + opacity: 0; + } + + 25% { + opacity: 1; + } + + 49% { + opacity: 1; + } + + 50% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@keyframes loading-2 { + 0% { + opacity: 0; + } + + 24% { + opacity: 0; + } + + 25% { + opacity: 1; + } + + 49% { + opacity: 1; + } + + 50% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@-webkit-keyframes loading-3 { + 0% { + opacity: 0; + } + + 49% { + opacity: 0; + } + + 50% { + opacity: 1; + } + + 74% { + opacity: 1; + } + + 75% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@-moz-keyframes loading-3 { + 0% { + opacity: 0; + } + + 49% { + opacity: 0; + } + + 50% { + opacity: 1; + } + + 74% { + opacity: 1; + } + + 75% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@-o-keyframes loading-3 { + 0% { + opacity: 0; + } + + 49% { + opacity: 0; + } + + 50% { + opacity: 1; + } + + 74% { + opacity: 1; + } + + 75% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@keyframes loading-3 { + 0% { + opacity: 0; + } + + 49% { + opacity: 0; + } + + 50% { + opacity: 1; + } + + 74% { + opacity: 1; + } + + 75% { + opacity: 0; + } + + 100% { + opacity: 0; + } +} + +@-webkit-keyframes loading-4 { + 0% { + opacity: 0; + } + + 74% { + opacity: 0; + } + + 75% { + opacity: 1; + } + + 99% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +@-moz-keyframes loading-4 { + 0% { + opacity: 0; + } + + 74% { + opacity: 0; + } + + 75% { + opacity: 1; + } + + 99% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +@-o-keyframes loading-4 { + 0% { + opacity: 0; + } + + 74% { + opacity: 0; + } + + 75% { + opacity: 1; + } + + 99% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} + +@keyframes loading-4 { + 0% { + opacity: 0; + } + + 74% { + opacity: 0; + } + + 75% { + opacity: 1; + } + + 99% { + opacity: 1; + } + + 100% { + opacity: 0; + } +} +*/ \ No newline at end of file diff --git a/directory/games/browser-games/index.html b/directory/games/browser-games/index.html new file mode 100644 index 0000000..3d797df --- /dev/null +++ b/directory/games/browser-games/index.html @@ -0,0 +1,355 @@ + + + + + + + s1nical - Browser Games + + + + + + + + + + + + + + + + + + + + +
+ +

/cyne.cf/Games/Browser Games/ Directory Listing

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/directory/games/index.html b/directory/games/index.html new file mode 100644 index 0000000..de50e78 --- /dev/null +++ b/directory/games/index.html @@ -0,0 +1,129 @@ + + + + + + + s1nical - Games + + + + + + + + + + + + + + + + + + + + +
+ +

/cyne.cf/Games/ Directory Listing

+
+ + + NameSize
+ + + Back + + + + Parent Directory -
+ + + Game + + + + SUPERHOTNULL
+ + + Game + + + + JustBuild.LOLNULL
+ + + Game + + + + 1v1.LOLNULL
+ + + Game + + + + KrunkerNULL
+ + + Game + + + + Unblocked Games WTFNULL
+ + + Game + + + + Shell ShockersNULL
+ + + Game + + + + Global StrikeNULL
+ + + Game + + + + Cartoon StrikeNULL
+ + + Game + + + + War BrokersNULL
+ + + Game + + + + DarkOrbit ReloadedNULL
+ + + Game + + + + DOOMNULL
+ + + Game + + + + Line RiderNULL
+ + + Game + + + + GeoGuessrNULL
+ + + Game + + + + Quick, Draw!NULL
+ + + Game + + + + Street SkaterNULL
+ + + Game + + + + powerline.ioNULL
+ + + Game + + + + Wolfenstein 3-DNULL
+ + + Game + + + + Dead FrontierNULL
+ + + Game + + + + NPlayNULL
+ + + Game + + + + Freefall TournamentNULL
+ + + Game + + + + Drakensang OnlineNULL
+ + + Game + + + + Red vs BlueNULL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/directory/games/js/main.js b/directory/games/js/main.js new file mode 100644 index 0000000..94f58d0 --- /dev/null +++ b/directory/games/js/main.js @@ -0,0 +1,5 @@ +$(document).ready(function () { + // $('.loader-wrapper').fadeOut("slow"); /*FadeOut after page loaded*/ + + console.log("You actually checked it out, enjoy!"); +}); \ No newline at end of file diff --git a/directory/index.html b/directory/index.html new file mode 100644 index 0000000..05c00a0 --- /dev/null +++ b/directory/index.html @@ -0,0 +1,108 @@ + + + + + + + s1nical - Directory + + + + + + + + + + + + + + + + + + + +
+ +

/cyne.cf/ Directory Listing

+
+ + + NameSize
+ + Back + + + Parent Directory -
+ + Game + + + Dino1.8K
+ + Game + + + Space Invaders11.5K
+ + Game + + + Cars386.0K
+ + Game + + + Browser Games Sub-DirectoryNULL
+ + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/directory/js/main.js b/directory/js/main.js new file mode 100644 index 0000000..c2c904f --- /dev/null +++ b/directory/js/main.js @@ -0,0 +1,5 @@ +$(document).ready(function () { + // $('.loader-wrapper').fadeOut("slow"); /*FadeOut after page loaded*/ + + console.log("Thanks for using my directory, check out the games!"); +}); \ No newline at end of file diff --git a/directory/tools/assets/SinAccessV.1.zip b/directory/tools/assets/SinAccessV.1.zip new file mode 100644 index 0000000..53e68a1 Binary files /dev/null and b/directory/tools/assets/SinAccessV.1.zip differ diff --git a/directory/tools/index.html b/directory/tools/index.html new file mode 100644 index 0000000..02ab698 --- /dev/null +++ b/directory/tools/index.html @@ -0,0 +1,227 @@ + + + + + + + + s1nical - Tools + + + + + + + + + + + + + + + + + + + + + + +
+ +

/cyne.cf/Tools/ Directory Listing

+
+ + + NameSize
+ + Back + + + Parent Directory -
+ + Game + + + Games/NULL
+ + Tools + + + Tools/NULL
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.3
+ + + NameSize
+ + + Back + + + + Parent Directory -
+ + + Demo + + + + Input Lag2.8K
+ + + Demo + + + + Path Tracer104K
+ + + Demo + + + + IP Detection4K
+ + + Demo + + + + Light Fluid Simulation10K
+ + + Demo + + + + PC Radio via IP44K
+ + + Demo + + + + KeycodesNaN
+ + + Demo + + + + Fortnite AES KeyNaN
+ + + Demo + + + + SinAccessV.1NaN
+ + + Demo + + + + Usefull Web ProxyNaN