Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
77 changes: 77 additions & 0 deletions css/pages/error/soon.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,77 @@
h1 {
margin-top: 2%;
color:white;
font-family: "Inter";
font-size: 45px;
font-weight: 600;
text-align: center;
}

.error-text {
margin-top: 1%;
margin-left: 3%;
margin-right: 3%;
color: #8e9ba3;
font-family: "Inter";
font-size: 20px;
font-weight: 600;
text-align: center;
}

p a {
color: #ff212d;
}

/* ------------------ */
/* 403 RESPONSIVENESS */
/* ------------------ */

@media only screen and (max-width: 1600px) {
h1 {
font-size: 38px;
}

.error-text {
font-size: 18px;
}
}

@media only screen and (max-width: 1250px) {
h1 {
font-size: 32px;
}

.error-text {
font-size: 16px;
}
}

@media only screen and (max-width: 1020px) {
h1 {
font-size: 26px;
}

.error-text {
font-size: 14px;
}
}

@media only screen and (max-width: 940px) {
h1 {
font-size: 20px;
}

.error-text {
font-size: 12px;
}
}

@media only screen and (max-width: 750px) {
h1 {
font-size: 16px;
}

.error-text {
font-size: 12px;
}
}
2 changes: 1 addition & 1 deletion error/403.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<ul class="nav-ul" id="nav-ul">
<li><a href="/index.html">Home</a></li>
<li><a href="/rules.html">Rules</a></li>
<li><a href="/profile.html">Profile</a></li>
<li><a href="/soon.html">Coming soon!</a></li>
</ul>
<div class="nav-right">
<a href="/r/github.html" target="_blank" class="social-btn"><i class="fa-brands fa-github fa-3x"></i></a>
Expand Down
2 changes: 1 addition & 1 deletion error/404.html
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
<ul class="nav-ul" id="nav-ul">
<li><a href="/index.html">Home</a></li>
<li><a href="/rules.html">Rules</a></li>
<li><a href="/profile.html">Profile</a></li>
<li><a href="/soon.html">Coming soon!</a></li>
</ul>
<div class="nav-right">
<a href="/r/github.html" target="_blank" class="social-btn"><i class="fa-brands fa-github fa-3x"></i></a>
Expand Down
2 changes: 1 addition & 1 deletion index.html
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@
<ul class="nav-ul" id="nav-ul">
<li><a class="active-link" href="/index.html">Home</a></li>
<li><a href="/rules.html">Rules</a></li>
<li><a href="/profile.html">Profile</a></li>
<li><a href="/soon.html">Coming soon!</a></li>
</ul>
<div class="nav-right">
<a href="/r/github.html" target="_blank" class="social-btn"><i class="fa-brands fa-github fa-3x"></i></a>
Expand Down
2 changes: 1 addition & 1 deletion rules.html
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
<ul class="nav-ul" id="nav-ul">
<li><a href="/index.html">Home</a></li>
<li><a class="active-link" href="/rules.html">Rules</a></li>
<li><a href="/profile.html">Profile</a></li>
<li><a href="/soon.html">Coming soon!</a></li>
</ul>
<div class="nav-right">
<a href="/r/github.html" target="_blank" class="social-btn"><i class="fa-brands fa-github fa-3x"></i></a>
Expand Down
42 changes: 42 additions & 0 deletions soon.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!DOCTYPE html>
<html lang="en">
<head>
<script src="https://kit.fontawesome.com/613e568d39.js" crossorigin="anonymous"></script>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<link rel="stylesheet" href="/css/global/styles.css">
<link rel="stylesheet" href="/css/global/navbar.css">
<link rel="stylesheet" href="/css/global/footer.css">
<link rel="stylesheet" href="/css/pages/error/soon.css">
<link rel="shortcut icon" href="/assets/ServerLogo.png" type="image/x-icon">
<title>Soon™</title>
</head>
<body>
<!-- NAVBAR -->
<div class="navbar" id="navbar">
<nav>
<img src="/assets/ServerLogo.png" alt="JavaDiscordLogo">
<button class="hamburger" id="hamburger">
<i class="fa-solid fa-bars"></i>
</button>
<ul class="nav-ul" id="nav-ul">
<li><a href="/index.html">Home</a></li>
<li><a href="/rules.html">Rules</a></li>
<li><a href="/soon.html">Coming soon!</a></li>
</ul>
<div class="nav-right">
<a href="/r/github.html" target="_blank" class="social-btn"><i class="fa-brands fa-github fa-3x"></i></a>
<a href="/r/twitter.html" target="_blank" class="social-btn"><i class="fa-brands fa-twitter fa-3x"></i></a>
<a href="/r/discord.html" target="_blank" class="join-btn">Join</a>
</div>
</nav>
</div>
<h1>More stuff coming soon!</h1>
<p class="error-text">Stay tuned for more stuff (e.g. QOTW Leaderboard) coming soon!</p>
<!-- FOOTER -->
<div class="footer-container">
<p>©️ 2022 JavaDiscord <br> JavaDiscord is not affiliated, associated, or endorsed with/by Discord or Oracle.</p>
</div>
</body>
</html>