add initial findings
12
c2015/depPage/bin/nav.html
Normal file
@@ -0,0 +1,12 @@
|
||||
<html>
|
||||
<head>
|
||||
<script type="text/javascript" src="/lib/jsurl/getvars.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript">
|
||||
var pages = {"home" : "/", "projects" : "/projects", "works" : "/works", "resources" : "/resources", "blog" : "/blog"};
|
||||
document.write(pages[page]);
|
||||
window.location=pages[page];
|
||||
</script>
|
||||
</body>
|
||||
</html>
|
||||
16
c2015/depPage/blank/index.html
Normal file
@@ -0,0 +1,16 @@
|
||||
<html>
|
||||
<head>
|
||||
<script type="text/javascript" src="/depPage/setup/head.js"></script>
|
||||
<meta name="google-signin-client_id" content="758810519655-gh6tgimuegfmc3op76vupr4kqnqc7uds.apps.googleusercontent.com">
|
||||
<script src="https://apis.google.com/js/platform.js" async defer></script>
|
||||
<script type="text/javascript" src="/login/signIn.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript" src="/depPage/setup/header.js"></script>
|
||||
<div class="desc">/ Page Dependencies / Blank Template</div>
|
||||
<div class="content">
|
||||
|
||||
</div>
|
||||
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
|
||||
</body>
|
||||
</html>
|
||||
28
c2015/depPage/blank/unpacked.html
Normal file
@@ -0,0 +1,28 @@
|
||||
<html>
|
||||
<head>
|
||||
<script type="text/javascript" src="/depPage/setup/head.js"></script>
|
||||
<meta name="google-signin-client_id" content="758810519655-gh6tgimuegfmc3op76vupr4kqnqc7uds.apps.googleusercontent.com">
|
||||
<script src="https://apis.google.com/js/platform.js" async defer></script>
|
||||
<script type="text/javascript" src="/login/signIn.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<a href="/"><div class="title">
|
||||
Garrett Mills
|
||||
</div></a>
|
||||
<div class="navi">
|
||||
<ul>
|
||||
<li><a href="/about">About Me</a></li>
|
||||
<li><a href="/projects">Projects</a></li>
|
||||
<li><a href="http://cestaberous.gq/">Minecraft: Cestaberous</a></li>
|
||||
<li><a href="/resources">Resources</a></li>
|
||||
<li><a href="/contact">Contact Me</a></li>
|
||||
</ul>
|
||||
</div>
|
||||
<img class="bkg" src="/depPage/images/background.jpg"/>
|
||||
<div class="desc">/ Page Dependencies / Blank Template</div>
|
||||
<div class="content">
|
||||
|
||||
</div>
|
||||
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
|
||||
</body>
|
||||
</html>
|
||||
117
c2015/depPage/css/index.css
Normal file
@@ -0,0 +1,117 @@
|
||||
@import url('http://fonts.googleapis.com/css?family=Bitter');
|
||||
|
||||
html {
|
||||
font-family: Bitter;
|
||||
}
|
||||
|
||||
body {
|
||||
background-image: url("/depPage/images/background.jpg");
|
||||
background-repeat: repeat-y;
|
||||
background-size: 100% 100%;
|
||||
background-attachment: fixed;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #EEEEEE;
|
||||
}
|
||||
|
||||
.navi {
|
||||
text-align: center;
|
||||
background: #202020;
|
||||
opacity: 1;
|
||||
width: 100%;
|
||||
position: fixed;
|
||||
bottom: 0%;
|
||||
left: 0%;
|
||||
z-index: 110;
|
||||
}
|
||||
|
||||
.navi ul {
|
||||
list-style-type: none;
|
||||
margin: 0;
|
||||
padding: 6px;
|
||||
}
|
||||
|
||||
.navi ul li {
|
||||
display: inline;
|
||||
padding-left: 15px;
|
||||
padding-right: 15px;
|
||||
padding-top: 6px;
|
||||
padding-bottom: 7px;
|
||||
}
|
||||
|
||||
.navi ul li:hover {
|
||||
background: #000000;
|
||||
}
|
||||
|
||||
.navi ul li a {
|
||||
color: white;
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.title {
|
||||
position: fixed;
|
||||
z-index: 110;
|
||||
color: #FFFFFF;
|
||||
background: #202020;
|
||||
opacity: 1;
|
||||
padding: 15px;
|
||||
font-size: 20pt;
|
||||
bottom: 30;
|
||||
left: 30;
|
||||
border-top-left-radius: 7px;
|
||||
border-top-right-radius: 7px;
|
||||
}
|
||||
|
||||
.title:hover {
|
||||
background: #000000;
|
||||
}
|
||||
|
||||
.content {
|
||||
top: 60;
|
||||
left: -5;
|
||||
color: #DDDDDD;
|
||||
position: relative;
|
||||
z-index: 101;
|
||||
background: rgba(40, 40, 40, 0.8);
|
||||
/* border: 3px;
|
||||
border-style: solid;
|
||||
border-color: #282828;
|
||||
border-radius: 10px;
|
||||
width: 100%; */
|
||||
padding-left: 8px;
|
||||
padding: 5px;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.desc {
|
||||
position: relative;
|
||||
z-index: 101;
|
||||
background: rgba(40, 40, 40, 0.8);
|
||||
text-align: center;
|
||||
width: 100%;
|
||||
left: -5;
|
||||
font-size: 20pt;
|
||||
color: #DDDDDD;
|
||||
padding: 4px;
|
||||
}
|
||||
|
||||
.copyright {
|
||||
color: #555555;
|
||||
}
|
||||
|
||||
.crbox {
|
||||
visibility: hidden;
|
||||
position: fixed;
|
||||
bottom: 30;
|
||||
right: 50;
|
||||
background-color: #202020;
|
||||
color: #DDDDDD;
|
||||
padding: 10px;
|
||||
width: 500px;
|
||||
border-style: solid;
|
||||
border-color: #202020;
|
||||
border-top-right-radius: 7px;
|
||||
border-top-left-radius: 7px;
|
||||
z-index: 200;
|
||||
}
|
||||
171
c2015/depPage/css/projects.css
Normal file
@@ -0,0 +1,171 @@
|
||||
a{
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
section {
|
||||
width: 80%;
|
||||
height: 200px;
|
||||
margin: auto;
|
||||
padding: 10px;
|
||||
text-decoration: none;
|
||||
}
|
||||
div#one {
|
||||
position: relative;
|
||||
width: 20%;
|
||||
height: 200px;
|
||||
background: red;
|
||||
float: left;
|
||||
overflow: hidden;
|
||||
text-decoration: none;
|
||||
}
|
||||
div#two {
|
||||
display: inline;
|
||||
width: 20%;
|
||||
height: 200px;
|
||||
background: orange;
|
||||
float: left;
|
||||
overflow: hidden;
|
||||
}
|
||||
div#three {
|
||||
width: 20%;
|
||||
height: 200px;
|
||||
background: yellow;
|
||||
float: left;
|
||||
overflow: hidden;
|
||||
}
|
||||
div#four {
|
||||
width: 20%;
|
||||
height: 200px;
|
||||
background: #202020;
|
||||
float: left;
|
||||
overflow: hidden;
|
||||
}
|
||||
div#five {
|
||||
margin-left: 15%;
|
||||
height: 200px;
|
||||
background: blue;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
div#one img {
|
||||
position: relative;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
margin-left: -345px;
|
||||
margin-top: -170px;
|
||||
}
|
||||
|
||||
|
||||
div#two img {
|
||||
position: relative;
|
||||
height: 310px;
|
||||
width: 310px;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
margin-left: -155px;
|
||||
margin-top: -155px;
|
||||
}
|
||||
|
||||
div#three img {
|
||||
position: relative;
|
||||
height: 225px;
|
||||
width: 360px;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
margin-left: -180px;
|
||||
margin-top: -112px;
|
||||
}
|
||||
|
||||
div#four img {
|
||||
position: relative;
|
||||
height: 256px;
|
||||
width: 256px;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
margin-left: -128px;
|
||||
margin-top: -128px;
|
||||
}
|
||||
|
||||
div#five img {
|
||||
position: relative;
|
||||
height: 600px;
|
||||
width: 960px;
|
||||
top: 50%;
|
||||
left: 50%;
|
||||
margin-left: -480px;
|
||||
margin-top: -270px;
|
||||
}
|
||||
|
||||
div#one div {
|
||||
display: none;
|
||||
position: absolute;
|
||||
background: rgba(40, 40, 40, 0.8);
|
||||
bottom: 0;
|
||||
width: 100%;
|
||||
padding-left: 10px;
|
||||
transition: display 0.2s linear 0s;
|
||||
overflow: none;
|
||||
}
|
||||
|
||||
div#two div {
|
||||
position: absolute;
|
||||
background: rgba(40, 40, 40, 0.8);
|
||||
bottom: 15;
|
||||
width: 20%;
|
||||
padding-left: 10px;
|
||||
display: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
div#three div {
|
||||
position: absolute;
|
||||
background: rgba(40, 40, 40, 0.8);
|
||||
bottom: 15;
|
||||
width: 20%;
|
||||
padding-left: 10px;
|
||||
display: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
div#four div {
|
||||
position: absolute;
|
||||
background: rgba(40, 40, 40, 0.8);
|
||||
bottom: 15;
|
||||
width: 20%;
|
||||
padding-left: 10px;
|
||||
display: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
div#five div {
|
||||
position: absolute;
|
||||
background: rgba(40, 40, 40, 0.8);
|
||||
bottom: 15;
|
||||
width: 15.15%;
|
||||
padding-left: 10px;
|
||||
display: none;
|
||||
overflow: hidden;
|
||||
}
|
||||
|
||||
div#one:hover > div {
|
||||
display: block;
|
||||
}
|
||||
|
||||
div#two:hover > div {
|
||||
display: block;
|
||||
}
|
||||
|
||||
div#three:hover > div {
|
||||
display: block;
|
||||
}
|
||||
|
||||
div#four:hover > div {
|
||||
display: block;
|
||||
}
|
||||
|
||||
div#five:hover > div {
|
||||
display: block;
|
||||
}
|
||||
|
||||
|
||||
|
||||
BIN
c2015/depPage/images/androidlogo.png
Normal file
|
After Width: | Height: | Size: 20 KiB |
BIN
c2015/depPage/images/background.jpg
Normal file
|
After Width: | Height: | Size: 2.2 MiB |
BIN
c2015/depPage/images/favicon.ico
Normal file
|
After Width: | Height: | Size: 1.1 KiB |
BIN
c2015/depPage/images/html5logo.png
Normal file
|
After Width: | Height: | Size: 189 KiB |
BIN
c2015/depPage/images/linuxlogo.jpg
Normal file
|
After Width: | Height: | Size: 2.0 MiB |
BIN
c2015/depPage/images/logoTransp.png
Normal file
|
After Width: | Height: | Size: 18 KiB |
BIN
c2015/depPage/images/logog.png
Normal file
|
After Width: | Height: | Size: 21 KiB |
BIN
c2015/depPage/images/mclogo.jpg
Normal file
|
After Width: | Height: | Size: 363 KiB |
BIN
c2015/depPage/images/netscape.png
Normal file
|
After Width: | Height: | Size: 78 KiB |
BIN
c2015/depPage/images/profile.png
Normal file
|
After Width: | Height: | Size: 2.2 KiB |
BIN
c2015/depPage/images/rpilogo.png
Normal file
|
After Width: | Height: | Size: 29 KiB |
33
c2015/depPage/quoteBar/randQuote.js
Normal file
@@ -0,0 +1,33 @@
|
||||
var quote = document.getElementById("qotd");
|
||||
//array of quotes
|
||||
|
||||
var quotelist = ['"The reason birds can fly and we cant is simply because they have perfect faith, for to have faith is to have wings." <br/> - J.M. Barrie',
|
||||
'"We can never know what to want, because, living only one life, we can neither compare it with our previous lives nor perfect it in our lives to come." <br/> - Milan Kundera',
|
||||
'"How satisfying it is to leave a mark on a blank surface. To make a map of my movement - no matter how temporary." <br/> - Craig Thompson',
|
||||
'"You can forget that other people carry pieces of your own story around in their heads. Ive always thought--put together all those random pieces from everyone whos ever known you from your parents to the guy who once sat next to you on a bus, and you would probably see a fuller version of your life than you even did while living it." <br/> - Deb Caletti',
|
||||
'"It wasnt infinity in fact. Infinity itself looks flat and uninteresting. Looking up into the night sky is looking into infinity--distance is incomprehensible and therefore meaningless. The chamber into which the aircar emerged was anything but infinite, it was just very very very big, so big that it gave the impression of infinity far better than infinity itself." <br/> - Douglas Adams',
|
||||
'"It is a profound and necessary truth that the deep things in science are not found because they are useful; they are found because it was possible to find them." <br/> - J Robert Oppenheimer',
|
||||
'"All things, even the deepest sorrow or the most profound happiness are all temporary. Hope is fuel for the soul, without hope, forward motion ceases." <br/> - Landon Parham',
|
||||
'"A story so cherished it has to be dressed in casualness to disguise its significance in case the listener turned out to be unsympathetic." <br/> - Diane Setterfield',
|
||||
'"Intelligence and war are games, perhaps the only meaningful games left. If any player becomes too proficient, the game is threatened with termination." <br/> - William S. Burroughs',
|
||||
'"Only two things are infinite, the universe and human stupidity, and Im not sure about the former." <br/> - Albert Einstein',
|
||||
'"To raise new questions, new possibilities, to regard old problems from a new angle, requires creative imagination and marks real advance in science." <br/> - Albert Einstein',
|
||||
'"We live in a society exquisitely dependent on science and technology, in which hardly anyone knows anything about science and technology." <br/> - Carl Sagan',
|
||||
'"Science knows no country, because knowledge belongs to humanity, and is the torch which illuminates the world. Science is the highest personification of the nation because that nation will remain the first which carries the furthest the works of thought and intelligence." <br/> - Louis Pasteur',
|
||||
'"The distance between insanity and genius is measured only by success." <br/> - Bruce Feirstein',
|
||||
'"Our greatest glory is not in never falling, but in rising every time we fall." <br/> - Confucius',
|
||||
'"Few will have the greatness to bend history itself; but each of us can work to change a small portion of events, and in the total; of all those acts will be written the history of this generation." <br/> - Robert Kennedy',
|
||||
'"A small body of determined spirits fired by an unquenchable faith in their mission can alter the course of history." <br/> - Ghandi',
|
||||
'"History, despite its wrenching pain, cannot be unlived, but if faced with courage, need not be lived again." <br/> - Maya Angelou',
|
||||
'"The aim of art is to represent not the outward appearance of things, but their inward significance." <br/> - Aristotle',
|
||||
'"Excellence is an art won by training and habituation. We do not act rightly because we have virtue or excellence, but we rather have those because we have acted rightly. We are what we repeatedly do. Excellence, then, is not an act but a habit." <br/> - Aristotle',
|
||||
'"Thats What" <br/> - She',
|
||||
'"All men dream, but not equally. Those who dream by night in the dusty recesses of their minds, wake in the day to find that it was vanity: but the dreamers of the day are dangerous men, for they may act on their dreams with open eyes, to make them possible." <br/> - T.E. Lawrence',
|
||||
];
|
||||
|
||||
var nextQuote = Math.floor(Math.random() * 22) + 1 - 1;
|
||||
|
||||
quote.innerHTML = quotelist[nextQuote];
|
||||
|
||||
//Math.floor((Math.random() * 10) + 1)
|
||||
|
||||
23
c2015/depPage/setup/head.js
Normal file
@@ -0,0 +1,23 @@
|
||||
var isOpen = false;
|
||||
var isMobile = false;
|
||||
var onLoginRedir;
|
||||
document.write('\
|
||||
<script src="/lib/jsurl/getvars.js"></script>\
|
||||
<script src="/depPage/setup/jquery-1.11.3.js"></script>\
|
||||
<script src="/lib/xml/xmlLib.js"/>\
|
||||
<script src="/depPage/setup/utils.js"></script>\
|
||||
<link rel="stylesheet" type="text/css" href="/depPage/css/index.css"/>\
|
||||
<title>Garrett Mills</title>\
|
||||
<link rel="shortcut icon" href="/depPage/images/favicon.ico"/>\
|
||||
');
|
||||
|
||||
function showQuote() {
|
||||
if (isOpen != true) {
|
||||
document.getElementById("cr").style.visibility="visible";
|
||||
isOpen = true;
|
||||
}
|
||||
else {
|
||||
document.getElementById("cr").style.visibility="hidden";
|
||||
isOpen = false;
|
||||
}
|
||||
}
|
||||
28
c2015/depPage/setup/header.js
Normal file
@@ -0,0 +1,28 @@
|
||||
document.write('\
|
||||
<a href="/"><div class="title">\
|
||||
Garrett Mills\
|
||||
</div></a>\
|
||||
<div class="navi">\
|
||||
<ul>\
|
||||
<li><a href="/about/">About Me</a></li>\
|
||||
<li><a href="/projects/">Projects</a></li>\
|
||||
<li><a href="/works/">My Works</a></li>\
|
||||
<li><a href="http://cestaberous.gq">Minecraft: Cestaberous</a></li>\
|
||||
<li><a href="/resources/">Resources</a></li>\
|
||||
<li><a href="/contact/">Contact Me</a></li>\
|
||||
<li><a href="/blog/">My Blog</a></li>\
|
||||
<li class="copyright" onclick="showQuote();">©</li>\
|
||||
</ul>\
|
||||
</div>\
|
||||
<div id="cr" class="crbox">\
|
||||
All code in this website, unless otherwise specified, is licensed with the GNU GPL-2 license.\
|
||||
<a href="http://opensource.org/licenses/GPL-2.0">View License</a>\
|
||||
<br/><br/>\
|
||||
Welcome, '+name+'! <a href="#" onclick="signOut();">Sign out</a><br/><br/>\
|
||||
<div class="g-signin2" data-onsuccess="onSignIn"></div>\
|
||||
<br/>\
|
||||
<p id="qotd"></p>\
|
||||
</div>\
|
||||
<script type="text/javascript" src="/depPage/quoteBar/randQuote.js"></script>\
|
||||
\
|
||||
');
|
||||
10351
c2015/depPage/setup/jquery-1.11.3.js
vendored
Normal file
3
c2015/depPage/setup/utils.js
Normal file
@@ -0,0 +1,3 @@
|
||||
function reroute(url){
|
||||
window.location=url;
|
||||
}
|
||||
26
c2015/depPage/utils/googwhite.html
Normal file
@@ -0,0 +1,26 @@
|
||||
<head>
|
||||
<style type="text/css">
|
||||
html {
|
||||
background-color: #000000;
|
||||
}
|
||||
|
||||
img {
|
||||
position: fixed;
|
||||
top: 25%;
|
||||
left: 30%;
|
||||
}
|
||||
input {
|
||||
position: fixed;
|
||||
top: 60%;
|
||||
left: 36%;
|
||||
width: 400px;
|
||||
padding: 5px;
|
||||
border: 2px;
|
||||
border-style: solid;
|
||||
border-radius: 3px;
|
||||
border-color: #FFFFFF;
|
||||
}
|
||||
</style>
|
||||
</head>
|
||||
<img src="https://www.google.com/images/srpr/chrome_ntp_white_logo1.png"/>
|
||||
<input type="text" id="textbox" name="search" placeholder="Search Google" onkeydown="if (event.keyCode == 13 || event.which == 13) { location='http://www.google.com/search?q=' + encodeURIComponent(document.getElementById('textbox').value);}"/>
|
||||
16
c2015/depPage/utils/index.html
Normal file
@@ -0,0 +1,16 @@
|
||||
<html>
|
||||
<head>
|
||||
<script type="text/javascript" src="/depPage/setup/head.js"></script>
|
||||
<meta name="google-signin-client_id" content="758810519655-gh6tgimuegfmc3op76vupr4kqnqc7uds.apps.googleusercontent.com">
|
||||
<script src="https://apis.google.com/js/platform.js" async defer></script>
|
||||
<script type="text/javascript" src="/login/signIn.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript" src="/depPage/setup/header.js"></script>
|
||||
<div class="desc">/ Page Dependencies / Utilities</div>
|
||||
<div class="content">
|
||||
u420390168
|
||||
</div>
|
||||
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
|
||||
</body>
|
||||
</html>
|
||||
17
c2015/depPage/utils/utils.html
Normal file
@@ -0,0 +1,17 @@
|
||||
<html>
|
||||
<head>
|
||||
<script type="text/javascript" src="/depPage/setup/head.js"></script>
|
||||
<script src="https://apis.google.com/js/platform.js"></script>
|
||||
<meta name="google-signin-client_id" content="758810519655-gh6tgimuegfmc3op76vupr4kqnqc7uds.apps.googleusercontent.com">
|
||||
<meta name="google-signin-callback" content="signinCallback"/>
|
||||
<script type="text/javascript" src="/login/protectedHandler.js"></script>
|
||||
</head>
|
||||
<body>
|
||||
<script type="text/javascript" src="/depPage/setup/header.js"></script>
|
||||
<div class="desc">/ Page Dependencies / Utilities</div>
|
||||
<div class="content">
|
||||
u420390168
|
||||
</div>
|
||||
<br/><br/><br/><br/><br/><br/><br/><br/><br/><br/>
|
||||
</body>
|
||||
</html>
|
||||