diff --git a/downloads/svffm/404.html b/downloads/svffm/404.html new file mode 100644 index 0000000..2290cb9 --- /dev/null +++ b/downloads/svffm/404.html @@ -0,0 +1,3 @@ +

Whopps, it looks like this page doesn't exist. has it been deleted or has it never existed? Buy a premium subscription or check out for free to get the answer.

+ +

404

\ No newline at end of file diff --git a/downloads/svffm/css/assets.css b/downloads/svffm/css/assets.css new file mode 100644 index 0000000..e3d945f --- /dev/null +++ b/downloads/svffm/css/assets.css @@ -0,0 +1,34 @@ +.arrow { + border: solid black; + border-width: 0 4px 4px 0; + display: inline-block; + padding: 3px; + float: right; + } + + .right { + transform: rotate(-45deg); + -webkit-transform: rotate(-45deg); + } + + .left { + transform: rotate(135deg); + -webkit-transform: rotate(135deg); + } + + .up { + transform: rotate(-135deg); + -webkit-transform: rotate(-135deg); + } + + .down { + transform: rotate(45deg); + -webkit-transform: rotate(45deg); + } + + + + .vl { + border-left: 6px solid grey; + height: 375px; + } \ No newline at end of file diff --git a/downloads/svffm/css/dark-mode.css b/downloads/svffm/css/dark-mode.css new file mode 100644 index 0000000..1544aa7 --- /dev/null +++ b/downloads/svffm/css/dark-mode.css @@ -0,0 +1,3 @@ +.dark-mode { + background-color: darkgray; +} \ No newline at end of file diff --git a/downloads/svffm/css/footer.css b/downloads/svffm/css/footer.css new file mode 100644 index 0000000..6043cfd --- /dev/null +++ b/downloads/svffm/css/footer.css @@ -0,0 +1,57 @@ + footer { + bottom: 0; + width: 100%; + background-image: url("../src/misc/footerBg.png"); + background-size: cover; + z-index: -10; + padding-top: 100px; + } + footer a { + margin: 5px; + background-color: #10335C; + } + + + .contactIconDiv { + background-color: gray; + width: 31px; + border-radius: 5px; + padding: 3px; + padding-bottom: 0px; + } + + + #innerFooterBox { + margin: 20%; + margin-top: 600px; + margin-bottom: 15px; + display: flex; + } + #innerFooterBox div { + margin: 10px; + } + + + #toplinks { + flex: content; + flex-direction: column; + } + #topLinks a, h1 { + background-color: transparent; + color: white; + text-decoration: none; + font-size: 30px; + } + #topLinks div a { + text-align: right; + } + + .footer-bar { + background-color: black; + padding: 0px; + color: white; + text-align: center; + } + .footer-bar a { + background-color: black; + } \ No newline at end of file diff --git a/downloads/svffm/css/header.css b/downloads/svffm/css/header.css new file mode 100644 index 0000000..c3036c9 --- /dev/null +++ b/downloads/svffm/css/header.css @@ -0,0 +1,30 @@ + #header { + position: absolute; + top: 60; + width: 100%; + height: 500px; + background-image: url("../src/misc/headerBg.png"); + background-position: bottom; + background-size: cover; + z-index: -1; + } + #header h1 { + font-size: 200px; + padding-left: 70px; + } + + + .header a { + font-size: 50px; + } + + #error-msg { + color: #bababa; + margin-left: 200px; + margin-top: 300px; + margin-right: 100px; + border: 3px #bababa solid; + border-radius: 3px; + padding-left: 20px; + display: flex; + } \ No newline at end of file diff --git a/downloads/svffm/css/main.css b/downloads/svffm/css/main.css new file mode 100644 index 0000000..0e5f994 --- /dev/null +++ b/downloads/svffm/css/main.css @@ -0,0 +1,9 @@ + html { + font-family: 'Courier New', monospace; + background-color: #bababa; + } + + + .body { + margin-top: 200px; + } \ No newline at end of file diff --git a/downloads/svffm/css/topnav.css b/downloads/svffm/css/topnav.css new file mode 100644 index 0000000..a97d601 --- /dev/null +++ b/downloads/svffm/css/topnav.css @@ -0,0 +1,194 @@ +* { + box-sizing: border-box; + } + + + body { + margin: 0; + } + + + .navbar { + overflow: hidden; + background-color: #333; + font-family: Arial, Helvetica, sans-serif; + z-index: 9999999; + } + .navbar a, button { + float: left; + font-size: 16px; + color: white; + text-align: center; + padding: 14px 16px; + text-decoration: none; + } + + .navbar button { + background-color: none; + } + + .dropmenu { + float: left; + overflow: hidden; + } + + + + .navbar a:hover, .dropmenu:hover .dropmenubtn { + background-color: #0D6769; + } + + .dropmenu-content { + display: none; + position: absolute; + width: 100%; + left: 0; + z-index: 1; + margin-top: 50px; + } + + .dropmenu-content-content { + box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); + padding-bottom: 2px; + margin: 5px; + margin-top: 10px; + background-color: #ccc; + border-radius: 10px; + } + + .dropmenu-content .header-mega { + background: #0D6769; + padding: 16px; + color: white; + border-radius: 9px 9px 0px 0px; + } + + #header-mega-all { + background-color: #0E5773; + margin: 5px; + border-radius: 10px; + } + #header-mega-all a { + height: 100%; + width: 100%; + margin-left: 0px; + font-size: 15px; + border-radius: 8px; + } + + .dropmenu:hover .dropmenu-content { + display: block; + } + + /* Create three equal columns that floats next to each other */ + .column { + float: left; + width: 33.33%; + padding: 10px; + background-color: #ccc; + height: 250px; + } + + .column a { + float: none; + color: black; + padding: 16px; + text-decoration: none; + display: block; + text-align: left; + } + + .column a:hover { + background-color: #ddd; + } + + /* Clear floats after the columns */ + .row:after { + content: ""; + display: table; + clear: both; + } + + /* Responsive layout - makes the three columns stack on top of each other instead of next to each other */ + @media screen and (max-width: 600px) { + .column { + width: 100%; + height: auto; + } + } + + + + + + + .dropdown { + float: left; + overflow: hidden; + } + + + .navbar a:hover, .dropdown:hover .dropbtn { + background-color: #0D6769; + } + + .dropdown-content { + display: none; + position: absolute; + min-width: 160px; + z-index: 1; + margin-top: 49px; + border-radius: 10px; + } + + .dropdown-content-content { + box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2); + background-color: #0D6769; + margin-top: 10px; + padding: 3px; + border-radius: 10px; + } + + .dropdown-content-content a:hover { + color: #0D6769; + border-radius: 8px; + } + + .dropdown-content a { + float: none; + color: black; + padding: 12px 16px; + text-decoration: none; + display: block; + text-align: left; + } + + .dropdown-content a:hover { + background-color: #ddd; + } + + .dropdown:hover .dropdown-content { + display: block; + } + + /* Navbar button style */ + .navbarbtn, .navbar a{ + font-size: 16px; + border: none; + border-radius: 4px; + outline: none; + color: white; + padding: 14px 16px; + background-color: inherit; + font: inherit; + margin: 3px; + } + + + .column a { + color: #0D6769; + } + + .column a:hover { + color: white; + } \ No newline at end of file diff --git a/downloads/svffm/index.html b/downloads/svffm/index.html new file mode 100644 index 0000000..9b0e96c --- /dev/null +++ b/downloads/svffm/index.html @@ -0,0 +1,207 @@ + + + + $TITLE +
+ + + +
+
+
+ +
+
+

See this message? This means that You are either using a browser that doesn't properly support this website or a Browser extension is modifiying this content (e.g. Dark Reader), try disabling it. Either way, You're missing out on content.

+
+
+ +
+

This Website is WIP

+

A new website is on the way. You are now seeing the work in progress. At this point, please don't report any bugs to GitHub yet.

+

The old and still official website is available at jonasjones.me.

+
+ + +
+

Downloads

+

Here You can find the downloads for both the client and server side modpack of SVFFM (Slightly Vanilla Flavoured Fabric Modified)

+ + + + +

Client pack

+ + + + + + + + + + + + + + + + + + + + + + + + + + + + +
EnvironmentNameVersionMinecraft VersionRelease DateChangelogDownload (Google Drive)
ClientSVFFM1.1 [LATEST]1.1922.07.22-23:02:29Removed Dashloader; Added Zoomify
ClientSVFFM1.01.1921.07.22-23:08:43Added fabric compatible mods and own additions.
+ +

Server pack

+ + + + + + + + + + + + + + + + + + + + +
EnvironmentNameVersionMinecraft VersionRelease DateChangelogDownload (Google Drive)
ServerSVFFMSERVER-1.0 [LATEST]1.1922.07.22-23:03:56Added all server side mods.
+ +
+ + + + + + + \ No newline at end of file diff --git a/downloads/svffm/src/icons/account.png b/downloads/svffm/src/icons/account.png new file mode 100644 index 0000000..ffb5dcd Binary files /dev/null and b/downloads/svffm/src/icons/account.png differ diff --git a/downloads/svffm/src/icons/contact.png b/downloads/svffm/src/icons/contact.png new file mode 100644 index 0000000..3cc70c2 Binary files /dev/null and b/downloads/svffm/src/icons/contact.png differ diff --git a/downloads/svffm/src/icons/dark-mode.png b/downloads/svffm/src/icons/dark-mode.png new file mode 100644 index 0000000..7f71428 Binary files /dev/null and b/downloads/svffm/src/icons/dark-mode.png differ diff --git a/downloads/svffm/src/icons/downloads.svg b/downloads/svffm/src/icons/downloads.svg new file mode 100644 index 0000000..5819b8d --- /dev/null +++ b/downloads/svffm/src/icons/downloads.svg @@ -0,0 +1,4 @@ + + + + diff --git a/downloads/svffm/src/icons/license.png b/downloads/svffm/src/icons/license.png new file mode 100644 index 0000000..c5081f5 Binary files /dev/null and b/downloads/svffm/src/icons/license.png differ diff --git a/downloads/svffm/src/icons/news.png b/downloads/svffm/src/icons/news.png new file mode 100644 index 0000000..badd17e Binary files /dev/null and b/downloads/svffm/src/icons/news.png differ diff --git a/downloads/svffm/src/icons/projects.png b/downloads/svffm/src/icons/projects.png new file mode 100644 index 0000000..61a4e8b Binary files /dev/null and b/downloads/svffm/src/icons/projects.png differ diff --git a/downloads/svffm/src/icons/warning-symbolic-dark.png b/downloads/svffm/src/icons/warning-symbolic-dark.png new file mode 100644 index 0000000..1d4c838 Binary files /dev/null and b/downloads/svffm/src/icons/warning-symbolic-dark.png differ diff --git a/downloads/svffm/src/icons/warning-symbolic.png b/downloads/svffm/src/icons/warning-symbolic.png new file mode 100644 index 0000000..3e751eb Binary files /dev/null and b/downloads/svffm/src/icons/warning-symbolic.png differ diff --git a/downloads/svffm/src/icons/youtube.png b/downloads/svffm/src/icons/youtube.png new file mode 100644 index 0000000..574cebc Binary files /dev/null and b/downloads/svffm/src/icons/youtube.png differ diff --git a/downloads/svffm/src/logos/discord_icon.png b/downloads/svffm/src/logos/discord_icon.png new file mode 100644 index 0000000..653d12b Binary files /dev/null and b/downloads/svffm/src/logos/discord_icon.png differ diff --git a/downloads/svffm/src/logos/github_icon.png b/downloads/svffm/src/logos/github_icon.png new file mode 100644 index 0000000..c18272b Binary files /dev/null and b/downloads/svffm/src/logos/github_icon.png differ diff --git a/downloads/svffm/src/logos/instagram_icon.png b/downloads/svffm/src/logos/instagram_icon.png new file mode 100644 index 0000000..c093f99 Binary files /dev/null and b/downloads/svffm/src/logos/instagram_icon.png differ diff --git a/downloads/svffm/src/logos/logo_icon.png b/downloads/svffm/src/logos/logo_icon.png new file mode 100644 index 0000000..a0298a2 Binary files /dev/null and b/downloads/svffm/src/logos/logo_icon.png differ diff --git a/downloads/svffm/src/logos/logo_iconNoMargin.png b/downloads/svffm/src/logos/logo_iconNoMargin.png new file mode 100644 index 0000000..4e93d57 Binary files /dev/null and b/downloads/svffm/src/logos/logo_iconNoMargin.png differ diff --git a/downloads/svffm/src/logos/twitter_icon.png b/downloads/svffm/src/logos/twitter_icon.png new file mode 100644 index 0000000..a98e572 Binary files /dev/null and b/downloads/svffm/src/logos/twitter_icon.png differ diff --git a/downloads/svffm/src/logos/youtube_icon.png b/downloads/svffm/src/logos/youtube_icon.png new file mode 100644 index 0000000..4dd3a80 Binary files /dev/null and b/downloads/svffm/src/logos/youtube_icon.png differ diff --git a/downloads/svffm/src/misc/footerBg.png b/downloads/svffm/src/misc/footerBg.png new file mode 100644 index 0000000..11b2b76 Binary files /dev/null and b/downloads/svffm/src/misc/footerBg.png differ diff --git a/downloads/svffm/src/misc/headerBg.png b/downloads/svffm/src/misc/headerBg.png new file mode 100644 index 0000000..2320403 Binary files /dev/null and b/downloads/svffm/src/misc/headerBg.png differ diff --git a/downloads/svffm/src/misc/headerBg.png~ b/downloads/svffm/src/misc/headerBg.png~ new file mode 100644 index 0000000..03ed687 Binary files /dev/null and b/downloads/svffm/src/misc/headerBg.png~ differ