From 4c2aa70e178df5da329e20e71a03c5c588548206 Mon Sep 17 00:00:00 2001 From: Realmzer Date: Sat, 12 Oct 2024 22:26:27 -0400 Subject: [PATCH] github pages --- index.html | 132 ++++++++++++++++++++++++++++++++++++++++++++++++++ script.js | 0 styles.css | 139 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 3 files changed, 271 insertions(+) create mode 100644 index.html create mode 100644 script.js create mode 100644 styles.css diff --git a/index.html b/index.html new file mode 100644 index 0000000..b7072f5 --- /dev/null +++ b/index.html @@ -0,0 +1,132 @@ + + + + + + Home + + + + + + + + + + +

Realmzers AltStore Source

+

+

A repository growing daily.

+ + Copy Repoistory Link +

+ + + + + \ No newline at end of file diff --git a/script.js b/script.js new file mode 100644 index 0000000..e69de29 diff --git a/styles.css b/styles.css new file mode 100644 index 0000000..6f31d3b --- /dev/null +++ b/styles.css @@ -0,0 +1,139 @@ +body{ + margin: 0; + background: linear-gradient(to right, #252222, #4d4646); + text-align: center; + } + +p{ + color:white +} + +h2{ + color:white + +} + +h1{ + color:white +} + + .float-on-hover { + display: inline-block; + vertical-align: middle; + -webkit-transform: perspective(1px) translateZ(0); + transform: perspective(1px) translateZ(0); + box-shadow: 0 0 1px rgba(0, 0, 0, 0); + -webkit-transition-duration: 0.3s; + transition-duration: 0.3s; + -webkit-transition-property: transform; + transition-property: transform; + -webkit-transition-timing-function: ease-out; + transition-timing-function: ease-out; + } + .float-on-hover:hover, .float-on-hover:focus, .float-on-hover:active { + -webkit-transform: translateY(-1.5px); + transform: translateY(-1.5px); + } + + .topnav { + background-color: #000000; + overflow: hidden; + opacity: .8; + } + + /* Style the links inside the navigation bar */ + .topnav a { + float: left; + color: #f2f2f2; + text-align: center; + padding: 14px 16px; + text-decoration: none; + font-size: 17px; + -moz-transition: all .5s ease-in; + -o-transition: all .5s ease-in; + -webkit-transition: all .5s ease-in; + transition: all .5s ease-in; + background: #000000; + padding: 20px; + } + + /* Change the color of links on hover */ + .topnav a:hover { + background-color: #ddd; + color: black; + } + + /* Add a color to the active/current link */ + .topnav a.active { + background-color: #04AA6D; + color: white; + } + + .social-bar { + display: flex; + justify-content: center; + align-items: center; + } + + .social-bar a { + display: inline; + text-align: center; + padding: 10px; + transition: all 0.3s ease; + color: white; + font-size: 20px; + border-radius: 50%; + } + + .social-bar a:hover { + color: rgb(218, 212, 221); + -moz-transition: all .2s ease-in; + -o-transition: all .2s ease-in; + -webkit-transition: all .2s ease-in; + transition: all .2s ease-in; + } + + .twitter { + background: #11bcff00; + margin: 10px; + } + + .youtube { + background: red; + margin: 20px; + } + + .github { + background: rgba(140, 0, 255, 0); + margin: 0px; + } + + .reddit { + background: rgba(255, 68, 0, 0); + margin: 20px; + } + + .twitch { + background: rgb(169, 112, 255); + margin: 20px; + } + + .esign { + background-color: rgb(58, 183, 233) + } + + .discord { + background-color: rgb(88, 101, 242) + } + + .tele { + background-color: rgb(55, 175, 223) + } + .discord-btn { + font-size: 24px; + color: #7289DA; + } + + .discord-btn:hover { + color: #fff; + } \ No newline at end of file