-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cd35a65
commit 46c14e3
Showing
63 changed files
with
7,928 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,79 @@ | ||
<!DOCTYPE html> | ||
<html lang="en"> | ||
<head> | ||
<title>Page not found</title> | ||
<!-- META TAGS--> | ||
<meta charset="utf-8"> | ||
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1"> | ||
|
||
<!-- Favicon and Apple Icons --> | ||
<link rel="apple-touch-icon" sizes="57x57" href="images/favicon/apple-icon-57x57.png"> | ||
<link rel="apple-touch-icon" sizes="60x60" href="images/favicon/apple-icon-60x60.png"> | ||
<link rel="apple-touch-icon" sizes="72x72" href="images/favicon/apple-icon-72x72.png"> | ||
<link rel="apple-touch-icon" sizes="76x76" href="images/favicon/apple-icon-76x76.png"> | ||
<link rel="apple-touch-icon" sizes="114x114" href="images/favicon/apple-icon-114x114.png"> | ||
<link rel="apple-touch-icon" sizes="120x120" href="images/favicon/apple-icon-120x120.png"> | ||
<link rel="apple-touch-icon" sizes="144x144" href="images/favicon/apple-icon-144x144.png"> | ||
<link rel="apple-touch-icon" sizes="152x152" href="images/favicon/apple-icon-152x152.png"> | ||
<link rel="apple-touch-icon" sizes="180x180" href="images/favicon/apple-icon-180x180.png"> | ||
<link rel="icon" type="image/png" sizes="192x192" href="images/favicon/android-icon-192x192.png"> | ||
<link rel="icon" type="image/png" sizes="32x32" href="images/favicon/favicon-32x32.png"> | ||
<link rel="icon" type="image/png" sizes="96x96" href="images/favicon/favicon-96x96.png"> | ||
<link rel="icon" type="image/png" sizes="16x16" href="images/favicon/favicon-16x16.png"> | ||
|
||
<!-- STYLES --> | ||
<!-- Bootstrap --> | ||
<link href="css/bootstrap.min.css" rel="stylesheet"> | ||
<!-- Main Stylesheet --> | ||
<link href="css/style.css" rel="stylesheet"> | ||
</head> | ||
|
||
<body> | ||
<!-- //// HEADER //// --> | ||
<header id="main-header"> | ||
<nav class="navbar fixed-top navbar-expand-lg navbar-light"> | ||
<div class="container"> | ||
<!-- Site Logo --> | ||
<a id="logo" class="navbar-brand" href="#"><img class="img-fluid" src="images/logo.png" alt="site logo"></a> | ||
<!-- Dropdown Button --> | ||
<button id="hamburger" class="navbar-toggler" type="button" data-toggle="collapse" data-target="#navbarSupportedContent" aria-controls="navbarSupportedContent" aria-expanded="false" aria-label="Toggle navigation"> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
<span class="icon-bar"></span> | ||
</button> | ||
<!-- Navigation Links --> | ||
<div class="collapse navbar-collapse" id="navbarSupportedContent"> | ||
<ul class="navbar-nav ml-auto"> | ||
<li class="nav-item active"> | ||
<a class="nav-link" href="#about">About</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="#games">Games</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="#team">Team</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="#careers">Careers</a> | ||
</li> | ||
<li class="nav-item"> | ||
<a class="nav-link" href="#contact">Contact</a> | ||
</li> | ||
</ul> | ||
</div> | ||
</div> | ||
</nav> | ||
</header><!-- Header End --> | ||
<div id="container-404" class="container-fluid"> | ||
<div class="row-fluid"> | ||
<div class="col-md-12 text-center text-404"> | ||
<h1>GAME OVER</h1> | ||
<h3>Error 404 this page could not be found.</h3> | ||
<a href="index.html" class="button">Take Me Back</a> | ||
</div> | ||
</div> | ||
</div> | ||
<script src="js/jquery-3.2.1.min.js"></script> | ||
<script src="js/bootstrap.min.js"></script> | ||
</body> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,147 @@ | ||
/*------------------------------------------------------------------ | ||
[Animations Stylesheet] | ||
Author: AtypicalThemes | ||
Template: Strider - A Game Studio Template | ||
Version: 1.0 | ||
------------------------------------------------------------------- */ | ||
/* KEYFRAMES */ | ||
@keyframes pop-in { | ||
0% { opacity: 0; transform: scale(0.5); } | ||
100% { opacity: 1; transform: scale(1); } | ||
} | ||
|
||
/* --- The first part of the stylesheet sets the initial position of the animation elements and sets their opacity and timing --- */ | ||
.animation-element { | ||
opacity: 0; | ||
position: relative; | ||
transition: all 850ms ease; | ||
} | ||
.animation-element.extend { | ||
width: 0; | ||
} | ||
.animation-element.fade-in { | ||
opacity: 0; | ||
} | ||
.animation-element.slide-in-left { | ||
-moz-transform: translate3d(-25px, 0px, 0px); | ||
-webkit-transform: translate3d(-25px, 0px, 0px); | ||
-o-transform: translate(-25px, 0px); | ||
-ms-transform: translate(-25px, 0px); | ||
transform: translate3d(-25px, 0px, 0px); | ||
} | ||
.animation-element.slide-in-right { | ||
-moz-transform: translate3d(25px, 0px, 0px); | ||
-webkit-transform: translate3d(25px, 0px, 0px); | ||
-o-transform: translate(25px, 0px); | ||
-ms-transform: translate(25px, 0px); | ||
transform: translate3d(25px, 0px, 0px); | ||
} | ||
.animation-element.slide-up { | ||
-moz-transform: translate3d(0px, 25px, 0px); | ||
-webkit-transform: translate3d(0px, 25px, 0px); | ||
-o-transform: translate(0px, 25px); | ||
-ms-transform: translate(0px, 25px); | ||
transform: translate3d(0px, 25px, 0px); | ||
} | ||
.animation-element.slide-down { | ||
-moz-transform: translate3d(0px, -25px, 0px); | ||
-webkit-transform: translate3d(0px, -25px, 0px); | ||
-o-transform: translate(0px, -25px); | ||
-ms-transform: translate(0px, -25px); | ||
transform: translate3d(0px, -25px, 0px); | ||
} | ||
|
||
/* --- The second part of the stylesheet sets the position and opacity of animation elements when they are "in-view" --- */ | ||
.animation-element.in-view { | ||
opacity: 1; | ||
z-index: 5; | ||
} | ||
.animation-element.extend.in-view { | ||
width: 100%; | ||
} | ||
.animation-element.fade-in.in-view { | ||
opacity: 1; | ||
} | ||
.animation-element.fade-in.delayed.in-view { | ||
transition-delay: 200ms; | ||
} | ||
.animation-element.pop-in.in-view { | ||
-webkit-animation: pop-in 700ms; | ||
-moz-animation: pop-in 700ms; | ||
-ms-animation: pop-in 700ms; | ||
} | ||
.animation-element.pop-in-slow.in-view { | ||
-webkit-animation: pop-in 800ms; | ||
-moz-animation: pop-in 800ms; | ||
-ms-animation :pop-in 800ms; | ||
} | ||
.animation-element.slide-in-left.in-view { | ||
-moz-transform: translate3d(0px, 0px, 0px); | ||
-webkit-transform: translate3d(0px, 0px, 0px); | ||
-o-transform: translate(0px, 0px); | ||
-ms-transform: translate(0px, 0px); | ||
transform: translate3d(0px, 0px, 0px); | ||
} | ||
.animation-element.slide-in-left.delayed.in-view { | ||
-webkit-transition-delay: 200ms; | ||
transition-delay: 200ms; | ||
} | ||
.animation-element.slide-in-left.delayed-1.in-view { | ||
-webkit-transition-delay: 400ms; | ||
transition-delay: 400ms; | ||
} | ||
.animation-element.slide-in-left.delayed-2.in-view { | ||
-webkit-transition-delay: 600ms; | ||
transition-delay: 600ms; | ||
} | ||
.animation-element.slide-in-right.in-view { | ||
-moz-transform: translate3d(0px, 0px, 0px); | ||
-webkit-transform: translate3d(0px, 0px, 0px); | ||
-o-transform: translate(0px, 0px); | ||
-ms-transform: translate(0px, 0px); | ||
transform: translate3d(0px, 0px, 0px); | ||
} | ||
.animation-element.slide-in-right.delayed.in-view { | ||
-webkit-transition-delay: 200ms; | ||
transition-delay: 200ms; | ||
} | ||
.animation-element.slide-in-right.delayed-1.in-view { | ||
-webkit-transition-delay: 400ms; | ||
transition-delay: 400ms; | ||
} | ||
.animation-element.slide-in-right.delayed-2.in-view { | ||
-webkit-transition-delay: 600ms; | ||
transition-delay: 600ms; | ||
} | ||
.animation-element.slide-down.in-view { | ||
-moz-transform: translate3d(0px, 0px, 0px); | ||
-webkit-transform: translate3d(0px, 0px, 0px); | ||
-o-transform: translate(0px, 0px); | ||
-ms-transform: translate(0px, 0px); | ||
transform: translate3d(0px, 0px, 0px); | ||
} | ||
.animation-element.slide-down.delayed.in-view { | ||
-webkit-transition-delay: 200ms; | ||
transition-delay: 200ms; | ||
} | ||
.animation-element.slide-down.delayed-1.in-view { | ||
-webkit-transition-delay: 400ms; | ||
transition-delay: 400ms; | ||
} | ||
.animation-element.slide-up.in-view { | ||
-moz-transform: translate3d(0px, 0px, 0px); | ||
-webkit-transform: translate3d(0px, 0px, 0px); | ||
-o-transform: translate(0px, 0px); | ||
-ms-transform: translate(0px, 0px); | ||
transform: translate3d(0px, 0px, 0px); | ||
} | ||
.animation-element.slide-up.delayed.in-view { | ||
-webkit-transition-delay: 200ms; | ||
transition-delay: 200ms; | ||
} | ||
.animation-element.slide-up.delayed-1.in-view { | ||
-webkit-transition-delay: 400ms; | ||
transition-delay: 400ms; | ||
} |
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Oops, something went wrong.
Oops, something went wrong.