mirror of
https://github.com/Realmzer/MySign-Repo.git
synced 2026-03-31 03:38:41 +00:00
Website
This commit is contained in:
parent
fa9ef74284
commit
19c125dee6
2 changed files with 48 additions and 29 deletions
36
index.html
36
index.html
|
|
@ -2,6 +2,7 @@
|
|||
<html lang="en">
|
||||
<head>
|
||||
<meta charset="utf-8">
|
||||
<meta http-equiv="X-UA-Compatible" content="IE=edge">
|
||||
<meta name="viewport" content="width=device-width, initial-scale=1">
|
||||
<title>Realmzers Sources</title>
|
||||
<link rel="stylesheet" href="styles.css">
|
||||
|
|
@ -10,6 +11,9 @@
|
|||
<link href='https://fonts.googleapis.com/css?family=Montserrat' rel='stylesheet'>
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/6.0.0-beta3/css/all.min.css">
|
||||
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/font-awesome/4.7.0/css/font-awesome.min.css">
|
||||
<link rel="preconnect" href="https://fonts.googleapis.com">
|
||||
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
|
||||
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:ital,opsz,wght@0,9..40,100..1000;1,9..40,100..1000&display=swap" rel="stylesheet">
|
||||
<style>
|
||||
|
||||
/* width */
|
||||
|
|
@ -32,12 +36,8 @@
|
|||
background-color: rgb(58, 183, 233)
|
||||
}
|
||||
|
||||
.discord {
|
||||
background-color: rgb(86, 98, 246)
|
||||
}
|
||||
|
||||
.button {
|
||||
background-color: #9436ff;
|
||||
background-color: #0000005b;
|
||||
border: none;
|
||||
color: rgb(255, 255, 255);
|
||||
padding: 20px;
|
||||
|
|
@ -50,7 +50,7 @@
|
|||
transition: all 0.25s ease;
|
||||
}
|
||||
|
||||
.button:hover {opacity: 0.7;}
|
||||
.button:hover {background-color: #000000;}
|
||||
|
||||
.button:active {
|
||||
opacity: 0.9;
|
||||
|
|
@ -95,24 +95,36 @@
|
|||
text-shadow: 5px 10px 14px #000000;
|
||||
}
|
||||
body {
|
||||
font-family: 'Montserrat';font-size: 22px;
|
||||
font-family: 'DM Sans';font-size: 25px;
|
||||
}
|
||||
|
||||
</style>
|
||||
</head>
|
||||
<body>
|
||||
<div class="navbar">
|
||||
<!-- <div class="navbar">
|
||||
<div class="social-bar">
|
||||
<a href="https://x.com/realmzerplus" target="_blank" rel="noopener noreferrer" class="twitter float-on-hover"><i class="fa fa-twitter"></i></a>
|
||||
<a href="https://github.com/Realmzer/Realmzer.github.io" target="_blank" rel="noopener noreferrer" class="github float-on-hover"><i class="fa fa-github "></i></a>
|
||||
<a href="https://discord.gg/9ArHTK64j6" target="_blank" rel="noopener noreferrer" class=" float-on-hover"><i class="fa fa-discord"></i></a>
|
||||
</div>
|
||||
</div>
|
||||
<h1>Realmzers AltStore Source</h1>
|
||||
<p></p>
|
||||
<P>A repository growing daily.</P>
|
||||
-->
|
||||
<h1>Realmzer</h1>
|
||||
<p>Learning iOS and programming.</p>
|
||||
|
||||
<a href="javascript:void(0);" onclick="copyRepoLink()" class="button + button3 + float-on-hover">Copy Repoistory Link</a>
|
||||
<div class="social-bar">
|
||||
<a href="https://www.youtube.com/channel/UCLGSJWLs-St8hKwY0WCZ5mg" target="_blank" rel="noopener noreferrer" class="transparent float-on-hover"><i class="fa fa-youtube"></i></a>
|
||||
<a href="https://x.com/realmzerplus" target="_blank" rel="noopener noreferrer" class="transparent float-on-hover"><i class="fa fa-twitter"></i></a>
|
||||
<a href="https://github.com/Realmzer" target="_blank" rel="noopener noreferrer" class="transparent float-on-hover"><i class="fa fa-github "></i></a>
|
||||
<a href="https://www.reddit.com/user/Realmye" target="_blank" rel="noopener noreferrer" class="transparent float-on-hover"><i class="fa fa-reddit"></i></a>
|
||||
<a href="https://discord.gg/CXh6QDGR" target="_blank" rel="noopener noreferrer" class="transparent discord float-on-hover"><i class="fa fa-discord"></i></a>
|
||||
</div>
|
||||
<p></p>
|
||||
<h3>Projects</h3>
|
||||
<a href="https://github.com/Realmzer/RealmzDNS/raw/main/rzdnsantirevoke.mobileconfig" target="_self" class="button button3 + float-on-hover">Realmz DNS (No Revoke & Blacklists iOS)</a>
|
||||
<a href="https://github.com/Realmzer/RealmzDNS/raw/main/rzdnsantirevokeadblock.mobileconfig" target="_self" class="button button3 + float-on-hover">Realmz DNS Adblock (No Revoke & Blacklists iOS)</a>
|
||||
<p></p>
|
||||
<a href="javascript:void(0);" onclick="copyRepoLink()" class="button + button3 + float-on-hover">Realmzers AltStore Repo</a>
|
||||
<h2></h2>
|
||||
</body>
|
||||
</div>
|
||||
|
|
|
|||
41
styles.css
41
styles.css
|
|
@ -1,13 +1,18 @@
|
|||
body{
|
||||
margin: 0;
|
||||
background: linear-gradient(to right, #252222, #4d4646);
|
||||
background: linear-gradient(to right, #5900ff, #8c32e0);
|
||||
text-align: center;
|
||||
background-filter: blur(10px);
|
||||
}
|
||||
|
||||
p{
|
||||
color:white
|
||||
}
|
||||
|
||||
h3{
|
||||
color:white
|
||||
}
|
||||
|
||||
h2{
|
||||
color:white
|
||||
|
||||
|
|
@ -78,24 +83,22 @@ h1{
|
|||
.social-bar a {
|
||||
display: inline;
|
||||
text-align: center;
|
||||
padding: 10px;
|
||||
padding: 15px;
|
||||
transition: all 0.3s ease;
|
||||
color: white;
|
||||
font-size: 20px;
|
||||
border-radius: 50%;
|
||||
-webkit-backdrop-filter: blur(5px);
|
||||
backdrop-filter: blur(25px);
|
||||
}
|
||||
|
||||
.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;
|
||||
background-color: rgb(6, 1, 1);
|
||||
}
|
||||
|
||||
.twitter {
|
||||
background: #11bcff00;
|
||||
margin: 10px;
|
||||
background: #11bcff;
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
.youtube {
|
||||
|
|
@ -104,12 +107,12 @@ h1{
|
|||
}
|
||||
|
||||
.github {
|
||||
background: rgba(140, 0, 255, 0);
|
||||
margin: 0px;
|
||||
background: rgb(140, 0, 255);
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
.reddit {
|
||||
background: rgba(255, 68, 0, 0);
|
||||
background: rgb(255, 69, 0);
|
||||
margin: 20px;
|
||||
}
|
||||
|
||||
|
|
@ -123,16 +126,20 @@ h1{
|
|||
}
|
||||
|
||||
.discord {
|
||||
background-color: rgb(88, 101, 242)
|
||||
margin: 8px;
|
||||
padding: 15px;
|
||||
}
|
||||
|
||||
.tele {
|
||||
background-color: rgb(55, 175, 223)
|
||||
}
|
||||
.discord-btn {
|
||||
font-size: 24px;
|
||||
color: #7289DA;
|
||||
}
|
||||
|
||||
.transparent {
|
||||
background-color: rgba(0, 0, 0, 0.486);
|
||||
margin: 8.5px;
|
||||
}
|
||||
|
||||
|
||||
|
||||
.discord-btn:hover {
|
||||
color: #fff;
|
||||
|
|
|
|||
Loading…
Reference in a new issue