+
+
+
+
diff --git a/_site/Backup/community/index.php b/_site/Backup/community/index.php
new file mode 100644
index 0000000..b2048f4
--- /dev/null
+++ b/_site/Backup/community/index.php
@@ -0,0 +1,237 @@
+
+
+
+
+
+
+
+
+
+
+
+
RetryLife
+
Canada
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ getRequestToken(OAUTH_CALLBACK);
+ // if request_token exists then get the token and secret and store in the session
+ if($request_token){
+ $token = $request_token['oauth_token'];
+ $_SESSION['request_token'] = $token ;
+ $_SESSION['request_token_secret'] = $request_token['oauth_token_secret'];
+ // get the login url from getauthorizeurl method
+ $login_url = $connection->getAuthorizeURL($token);
+ }
+}
+
+// 3. if its a callback url
+if(isset($_GET['oauth_token'])){
+ // create a new twitter connection object with request token
+ $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $_SESSION['request_token'], $_SESSION['request_token_secret']);
+ // get the access token from getAccesToken method
+ $access_token = $connection->getAccessToken($_REQUEST['oauth_verifier']);
+ if($access_token){
+ // create another connection object with access token
+ $connection = new TwitterOAuth(CONSUMER_KEY, CONSUMER_SECRET, $access_token['oauth_token'], $access_token['oauth_token_secret']);
+ // set the parameters array with attributes include_entities false
+ $params =array('include_entities'=>'false');
+ // get the data
+ $data = $connection->get('account/verify_credentials',$params);
+ if($data){
+ // store the data in the session
+ $_SESSION['data']=$data;
+ // redirect to same page to remove url parameters
+ $redirect = 'http://' . $_SERVER['HTTP_HOST'] . $_SERVER['PHP_SELF'];
+ header('Location: ' . filter_var($redirect, FILTER_SANITIZE_URL));
+ }
+ }
+}
+
+/*
+ * PART 3 - FRONT END
+ * - if userdata available then print data
+ * - else display the login url
+*/
+
+if(isset($login_url) && !isset($_SESSION['data'])){
+ // echo the login url
+ echo "
Login with twitter ";
+}
+else{
+ // get the data stored from the session
+ $data = $_SESSION['data'];
+ // echo the name username and photo
+ echo "Name : ".$data->name."
";
+ echo "Username : ".$data->screen_name."
";
+ echo "Photo :
";
+ // echo the logout button
+ echo "
Logout ";
+ // echo content box if user is approved
+ if($data->screen_name == "ewpratten"){
+ echo '
+(.. your html ..)
+
+';
+ }
+}
+ ?>
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/_site/Backup/community/json.js b/_site/Backup/community/json.js
new file mode 100644
index 0000000..1d16495
--- /dev/null
+++ b/_site/Backup/community/json.js
@@ -0,0 +1,25 @@
+var txt = '';
+var xmlhttp = new XMLHttpRequest();
+xmlhttp.onreadystatechange = function(){
+ if(xmlhttp.status == 200 && xmlhttp.readyState == 4){
+ txt = xmlhttp.responseText;
+ }
+};
+xmlhttp.open("GET","./content/test.json",false);
+xmlhttp.send();
+console.log(txt)
+var json = JSON.parse(txt);
+alert(json.src);
+
+if (json.type == "img") {
+ var contenttype = "img"
+} else {
+ var contenttype = "iframe"
+}
+
+var options = ' src = "';
+var options = options.concat(json.src);
+var options = options.concat('"');
+var content = document.createElement(contenttype,[options]);
+
+document.body.appendChild(content)
diff --git a/_site/Backup/community/phpjsonloader.php b/_site/Backup/community/phpjsonloader.php
new file mode 100644
index 0000000..dcfef7c
--- /dev/null
+++ b/_site/Backup/community/phpjsonloader.php
@@ -0,0 +1,27 @@
+
';
+ echo $json{title};
+ echo " - ";
+ echo $json{author};
+ echo '
<';
+ echo $json{type};
+ echo ' src="';
+ echo $json{src}; echo '" href="';
+ echo $json{href};
+ echo '" width=100%>';
+ echo $json{body};
+ echo '';
+ echo $json{type};
+ echo '>';
+ echo '';
+ }
+ ?>
\ No newline at end of file
diff --git a/_site/Backup/community/style.css b/_site/Backup/community/style.css
new file mode 100644
index 0000000..73440a1
--- /dev/null
+++ b/_site/Backup/community/style.css
@@ -0,0 +1,2754 @@
+body {
+ background-color: #40415a;
+ margin: 0;
+ padding: 0;
+ text-align: center;
+ font-family: Helvetica, Arial, sans-serif;
+ color: #2f2f32;
+}
+
+h1, h2, h3 {
+ margin: 0;
+ padding: 0;
+ font-weight: normal;
+}
+
+a {
+ text-decoration: none;
+ border: 0;
+ color: #fff;
+ outline: 0;
+ -webkit-transition: color .15s ease-in-out;
+ transition: color .15s ease-in-out;
+}
+
+a:hover {
+ text-decoration: none;
+}
+
+img {
+ vertical-align: bottom;
+ border: 0;
+}
+
+input,
+textarea,
+button {
+ border: 0;
+ font-family: Arial, Helvetica, sans-serif;
+ -webkit-transition: background-color .15s ease-in-out;
+ transition: background-color .15s ease-in-out;
+}
+
+ul {
+ list-style: none;
+ margin: 0;
+ padding: 0;
+}
+
+.clearfix {
+ clear: both;
+}
+
+.container {
+ left: 0;
+ right: 0;
+ z-index: 0;
+ text-align: center;
+ min-width: 870px;
+ overflow: hidden;
+}
+
+.simple .container {
+ left: 0;
+ right: 0;
+ z-index: 0;
+ text-align: center;
+ min-width: 320px;
+ overflow: hidden;
+}
+
+.content-centered {
+ margin: 0 auto;
+ width: 460px;
+ position: relative;
+}
+
+/* interior */
+
+.interior-centered {
+ margin: 0 auto;
+ width: 870px;
+ position: relative;
+}
+
+.interior-content {
+ width: 870px;
+ min-height: 500px;
+ margin-top: 0;
+ text-align: left;
+ position: relative;
+ overflow: hidden;
+}
+
+/* simple privacy & TOS pages */
+
+.simple .interior-centered {
+ margin: 0 auto;
+ width: auto;
+ max-width: 660px;
+ padding: 8px;
+ position: relative;
+}
+
+.simple .interior-content {
+ width: auto;
+ min-height: 200px;
+ margin-top: 0;
+ text-align: left;
+ position: relative;
+ background-color: #fff;
+ border-radius: 10px;
+ padding: 20px;
+ color:#2f2f32;
+ line-height:22px;
+ font-size:16px
+}
+
+.simple .content-centered {
+ margin: 0 auto;
+ width: 300px;
+ position: relative;
+}
+
+.simple .interior-content h1 {
+ margin: 0 0 12px 0;
+ font-weight: bold;
+ font-size: 24px;
+ line-height: 1;
+}
+
+.simple .interior-content h2 {
+ margin: 14px 0 2px 0;
+ font-weight: bold;
+ font-size: 20px;
+}
+
+.interior-content h3 {
+ margin: 14px 0 2px 0;
+ font-size: 18px;
+}
+
+.bullet-list {
+ list-style-type: disc;
+ padding-left: 20px;
+}
+
+.bullet-list li {
+ padding-left: 10px;
+ padding-bottom: 4px;
+}
+
+.simple .interior-content a {
+ color: #d55161;
+ text-decoration: none;
+ -webkit-transition: color .15s ease-in-out;
+ transition: color .15s ease-in-out;
+}
+
+.simple .interior-content a:hover {
+ color: #c14857;
+ text-decoration: underline;
+}
+
+.simple .interior-content .btn {
+ display:block;
+ width:auto;
+ height: auto;
+ max-width:300px;
+ font-weight:bold;
+ min-height:12px;
+ line-height:12px;
+ padding:16px 0;
+ text-align:center;
+ text-decoration:none;
+ font-size:16px;
+ color:#fff;
+ border-radius:10px;
+ background-color:#d55161;
+ margin-top:25px;
+ -webkit-transition: background-color .15s ease-in-out;
+ transition: background-color .15s ease-in-out;
+}
+
+.simple .interior-content .btn:hover {
+ background-color:#c14857;
+ color:#fff;
+}
+
+.simple-header {
+ height: 77px;
+ margin: 5px 20px 0;
+ overflow: hidden;
+ text-align: left;
+}
+
+.simple-header-logo {
+ display: inline-block;
+ margin-top: 10px;
+}
+
+.simple-header-developer {
+ display: inline-block;
+ float: right;
+}
+
+/* base layout */
+
+.body-col1 {
+ width: 265px;
+ min-height: 490px;
+ margin-left: 50px;
+ margin-right: 40px;
+ margin-top: 35px;
+ text-align: left;
+ float: left;
+ position: fixed:
+ top: 0;
+}
+
+.body-col1-content {
+ position: fixed;
+}
+
+.body-col2 {
+ width: 460px;
+ margin: 20px 0 20px;
+ text-align: left;
+ overflow: hidden;
+ float: left;
+ position: relative;
+}
+
+.page-feed {
+ margin-bottom: 110px;
+}
+
+.details-page {
+ margin-bottom: 89px;
+}
+
+.rantlist-bg {
+ border-bottom-left-radius: 10px;
+ border-bottom-right-radius: 10px;
+ background-color: #e3e3e3;
+ background: url(/static/devrant/img/detailed-bg1.png) top left repeat;
+ min-height: 576px;
+ width: 460px;
+ overflow: hidden;
+ display: block;
+}
+
+.gif-tag {
+ position: absolute;
+ top: 7px;
+ left: 7px;
+ padding: 2px 6px;
+ font-size: 14px;
+ font-weight: bold;
+ color: #fff;
+ background-color: #a973a2;
+ border-radius: 5px;
+}
+
+.details-page .rantlist li {
+ background-color: #fff;
+}
+
+.profile-page .rantlist li {
+ background-color: #fff;
+}
+
+.profile-page .rantlist-bg {
+ min-height: 460px;
+}
+
+.box-ico-container {
+ width: 55px;
+ height: 55px;
+ line-height: 55px;
+ text-align: center;
+ float: left;
+}
+
+.rantlist li.feed-prev-more {
+ background-color: #aaaab8;
+ border-top: 0;
+ padding: 0 15px !important;
+}
+
+.rantlist .feed-prev-more:hover {
+ background-color: #aaaab8;
+ cursor: default;
+}
+
+.rantlist .feed-prev-more a {
+ height: 44px;
+ line-height: 44px;
+}
+
+.rantlist .feed-prev-more a:hover {
+ color: #e0e0ed;
+}
+
+.rantlist .feed-prev-more-link {
+ display: inline-block;
+ vertical-align: top;
+ font-size: 14px;
+ font-weight: bold;
+}
+
+.rantlist .feed-prev-more .icon {
+ display: inline-block;
+ margin: 0 8px;
+ font-size: 24px;
+}
+
+.feed-prev {
+ float: left;
+}
+
+.feed-more {
+ float: right;
+ text-align: right;
+}
+
+/* devrant new */
+
+.plusone, .minusone {
+ width: 32px;
+ height: 32px;
+ text-align: center;
+ line-height: 32px;
+ background-color: #aaaab8;
+ color: #fff;
+ border-radius: 16px;
+ display: inline-block;
+ -webkit-transition: background-color .15s ease-in-out;
+ transition: background-color .15s ease-in-out;
+}
+
+.rantlist-vote-col.vote-state-upvoted .plusone {
+ background-color: #d55161;
+}
+
+.rantlist-vote-col.vote-state-downvoted .minusone {
+ background-color: #d55161;
+}
+
+.rantlist-vote-col.vote-state-novote .btn-vote-circle {
+ background-color: #e3e3e3;
+}
+
+.plusone span, .minusone span {
+ color: #fff;
+ font-size: 13px;
+}
+
+.plusone:hover, .minusone:hover {
+ background-color: #d55161;
+ cursor: pointer;
+}
+
+.votecount {
+ margin: 3px 0;
+ font-size: 14px;
+ color: #aaaab8;
+ text-align: center;
+}
+
+.rantlist li {
+ padding: 12px 20px;
+ border-top: 2px solid #e3e3e3;
+ background-color: #fff;
+ position: relative;
+ -webkit-transition: background-color .15s ease-in-out;
+ transition: background-color .15s ease-in-out;
+}
+
+.rantlist li:first-child {
+ border-top: none;
+ padding-top: 13px;
+}
+
+.rantlist li:last-child {
+ padding-bottom: 15px;
+}
+
+.rantlist li:hover {
+ cursor: pointer;
+ background-color: #f5f5f5;
+}
+
+.rantlist-vote-col {
+ float: left;
+ width: 42px;
+ margin-right: 13px;
+ margin-left: -5px;
+ vertical-align: middle;
+ position: relative;
+ text-align: center;
+ font-weight: bold;
+ z-index: 2;
+}
+
+.rantlist-content-col {
+ float: left;
+ width: 370px;
+ min-height: 86px;
+ position: relative;
+ z-index: 2;
+}
+
+.rantlist-title {
+ font-size: 14px;
+ line-height: 1.3;
+ color: #2f2f32;
+ min-height: 29px;
+ margin: 0;
+ padding: 0;
+}
+
+.rantlist-content,
+.rantlist-content-tag,
+.collab-summary {
+ font-size: inherit;
+ line-height: inherit;
+ color: inherit;
+ font-weight: inherit;
+ margin: 0;
+ padding: 0;
+ -webkit-margin-before: 0;
+ -webkit-margin-after: 0;
+}
+
+.rantlist-title-text {
+ float: left;
+}
+
+.rantlist-title-text,
+.rantlist-content,
+.collab-summary {
+ width: 370px;
+ word-wrap:break-word;
+}
+
+.rantlist-tags-row {
+ color: #aaaab8;
+ padding-top: 8px;
+ cursor: default;
+ position: relative;
+}
+
+.rantlist-tags {
+ float: left;
+ max-width: 297px;
+ padding-top: 8px;
+ margin-right: 8px;
+ overflow: hidden;
+ font-size: 12px;
+ color: #aaaab8;
+ z-index: 2;
+}
+
+.rantlist-tags a {
+ color: #aaaab8;
+ font-size: 12px;
+ padding: 2px 4px;
+ border: 2px solid #e3e3e3;
+ border-radius: 5px;
+ font-weight: bold;
+ background-color: #fff;
+ display: inline-block;
+ margin-top: 4px;
+}
+
+.rantlist-tags a:hover {
+ color: #d55161;
+ border-color: #d55161;
+ -webkit-transition: all .15s ease-in-out;
+ transition: all .15s ease-in-out;
+ cursor: pointer;
+}
+
+.rantlist-bglink {
+ position: absolute;
+ top: 0;
+ left: 0;
+ width: 100%;
+ height: 100%;
+ z-index: 1;
+}
+
+.bglink-tags {
+ z-index: -1;
+}
+
+.rantlist-comments,
+.rantlist-footer-link {
+ float: right;
+ width: 60px;
+ overflow: hidden;
+ font-size: 14px;
+ text-align: right;
+ font-weight: bold;
+ display: block;
+ color: #aaaab8;
+ padding-top: 8px;
+ margin-top: 4px;
+ z-index: 2;
+}
+
+.rantlist-footer-link {
+ margin-top: 6px;
+}
+
+.reply-row .rantlist-footer-link {
+ margin-top: 0;
+ padding-top: 2px;
+}
+
+.rantlist li:hover .rantlist-comments,
+.rantlist-footer-link:hover {
+ color: #d55161;
+ -webkit-transition: color .15s ease-in-out;
+ transition: color .15s ease-in-out;
+ cursor: pointer;
+}
+
+.rantlist-reply {
+ float: left;
+ text-align: left;
+}
+
+.addrant-btn {
+ position: fixed;
+ bottom: 20px;
+ left: 50%;
+ margin-left: 120px;
+ border-radius: 40px;
+ height: 70px;
+ width: 70px;
+ line-height: 70px;
+ font-size: 36px;
+ color: #fff;
+ text-align: center;
+ background-color: #d55161;
+ display: block;
+ z-index: 10;
+ -webkit-transition: background-color .15s ease-in-out;
+ transition: background-color .15s ease-in-out;
+}
+
+.addcomment-btn {
+ position: fixed;
+ bottom: 20px;
+ left: 50%;
+ margin-left: -60px;
+ border-radius: 10px;
+ height: 48px;
+ width: 420px;
+ line-height: 48px;
+ font-size: 22px;
+ font-weight: bold;
+ color: #fff;
+ text-align: center;
+ background-color: #d55161;
+ display: block;
+ z-index: 10;
+ -webkit-transition: background-color .15s ease-in-out;
+ transition: background-color .15s ease-in-out;
+}
+
+.addrant-btn:hover,
+.addcomment-btn:hover {
+ background-color: #c14857;
+}
+
+.rant-image {
+ width: 100%;
+ display: block;
+ overflow-y: hidden;
+ max-height: 300px;
+ margin-top: 8px;
+ border-radius: 5px;
+ position: relative;
+}
+
+.rant-image img {
+ width: 100%;
+ display: block;
+}
+
+.details-image {
+ max-height: none;
+}
+
+.bluegrey-bg {
+ height: 485px;
+ width: 100%;
+ position: fixed;
+ top: 0;
+ left: 0;
+ z-index: -1;
+ background-color: #54556e;
+}
+
+/* app btns */
+
+.app-btns {
+ width: 265px;
+ margin-top: 55px;
+}
+
+.btn {
+ height: 48px;
+ line-height: 48px;
+ text-align: center;
+ border-radius: 10px;
+ border: 0;
+ font-size: 22px;
+ font-weight: bold;
+ text-decoration: none !important;
+ display: inline-block;
+ cursor: pointer;
+ -webkit-transition: background-color .15s ease-in-out;
+ transition: background-color .15s ease-in-out;
+ background-color: #d55161;
+}
+
+.btn:hover {
+ background-color: #c14857;
+}
+
+.iphone-btn img, .android-btn img {
+ width: 80%;
+ vertical-align: middle;
+}
+
+.iphone-btn, .android-btn {
+ width: 125px;
+ display: inline-block;
+}
+
+.iphone-btn {
+ margin-right: 10px;
+}
+
+.app-btns.modal-btns {
+ width: 366px;
+ margin-top: 30px;
+}
+
+.modal-btns .iphone-btn,
+.modal-btns .android-btn {
+ height: 60px;
+ line-height: 60px;
+ width: 175px;
+}
+
+.modal-overlay {
+ width: 100%;
+ height: 100%;
+ position: fixed;
+ top: 0;
+ left: 0;
+ background-color: rgba(66,67,92,0.92);
+ display: block;
+ z-index: 19;
+ display: none;
+}
+
+.modal-x {
+ position: fixed;
+ top: 14px;
+ right: 14px;
+ color: #fff;
+ font-size: 32px;
+ z-index: 22;
+ width: 54px;
+ height: 54px;
+ line-height: 54px;
+ border-radius: 30px;
+ -webkit-transition: background-color .15s ease-in-out;
+ transition: background-color .15s ease-in-out;
+ display: none;
+ background-color: #5c5c78;
+}
+
+.modal-x:hover {
+ background-color: #c14857;
+}
+
+.modal-title {
+ margin-top: 50px;
+ font-family: Comfortaa;
+ font-size: 40px;
+ font-weight: bold;
+ line-height: 1.2;
+ color: #fff;
+}
+
+.modal-screens {
+ width: 284px;
+ margin-right: 40px;
+ float: left;
+}
+
+.modal-text-col {
+ width: 366px;
+ float: left;
+}
+
+.footer-text {
+ margin-top: 22px;
+ color: #c1c1ca;
+ font-size: 11px;
+ text-align: center;
+ line-height: 1.4;
+}
+
+.footer-text a {
+ color: #c1c1ca;
+ text-decoration: none;
+}
+
+.footer-text a:hover {
+ color: #c1c1ca;
+ text-decoration: underline;
+}
+
+.app-text {
+ font-weight: bold;
+ font-size: 13px;
+ margin-top: 10px;
+ color: #c1c1ca;
+ text-align: center;
+}
+
+.post-details .rantlist-tags {
+ width: calc(100% - 68px);
+}
+
+.reply-row .rantlist-vote-col {
+ margin-left: 28px;
+}
+
+.reply-row .rantlist-content-col {
+ width: 337px;
+}
+
+.reply-row .rantlist-tags {
+ width: 263px;
+}
+
+.reply-row .rantlist-title {
+ min-height: 36px;
+ width: 337px;
+ word-wrap:break-word;
+}
+
+.rantlist li.post-details:hover,
+.rantlist li.reply-row:hover {
+ cursor: auto;
+ background-color: #fff;
+}
+
+.reply-bar {
+ width: 5px;
+ background-color: #e3e3e3;
+ height: 100%;
+ border-radius: 3px;
+ display: inline-block;
+ position: absolute;
+ left: -71px;
+}
+
+.username-row {
+ margin-bottom: 6px;
+ overflow: hidden;
+}
+
+.username-details {
+ font-weight: bold;
+ color: #54556e;
+ font-size: 14px;
+ float: left;
+ -webkit-transition: color .15s ease-in-out;
+ transition: color .15s ease-in-out;
+}
+
+.username-details:hover {
+ color: #d55161;
+}
+
+.username-details:hover .profile-score {
+ background-color: #d55161;
+}
+
+.username-details span {
+ background-color: #54556e;
+ color: #fff;
+ font-weight: bold;
+ font-size: 12px;
+ padding: 2px 4px;
+ border-radius: 4px;
+ display: inline-block;
+ margin-left: 7px;
+ -webkit-transition: background-color .15s ease-in-out;
+ transition: background-color .15s ease-in-out;
+}
+
+.timestamp {
+ float: right;
+ width: 35px;
+ text-align: right;
+ color: #aaaab8;
+ font-weight: bold;
+ font-size: 14px;
+}
+
+.username-row .timestamp {
+ margin-top: 3px;
+}
+
+.back-bar {
+ height: 40px;
+ background-color: #aaaab8;
+ color: #fff;
+ font-weight: bold;
+ font-size: 16px;
+ line-height: 40px;
+ padding-left: 20px;
+ display: block;
+ -webkit-transition: background-color .15s ease-in-out;
+ transition: background-color .15s ease-in-out;
+}
+
+.back-bar:hover {
+ background-color: #d55161;
+}
+
+.back-bar .icon {
+ padding-right: 5px;
+ font-size: 22px;
+ display: inline-block;
+}
+
+.back-text {
+ display: inline-block;
+ vertical-align: top;
+}
+
+/* search */
+
+.search-bar {
+ float: left;
+ text-align: left;
+ margin-left: calc(50% - 186px);
+ position: relative;
+}
+
+.search-bar .search-input {
+ background-color: #fff;
+ border-radius: 10px;
+ font-size: 14px;
+ height: 30px;
+ line-height: 30px;
+ padding: 0 8px 0 34px;
+ width: 186px;
+ display: inline-block;
+ vertical-align: top;
+ margin-top: 7px;
+ outline: 0;
+}
+
+.search-bar .search-icon {
+ color: #aaaab8;
+ font-size: 24px;
+ height: 32px;
+ left: -6px;
+ line-height: 32px;
+ position: absolute;
+ text-align: center;
+ top: 6px;
+ width: 50px;
+}
+
+.search-bar .search-btn-icon {
+ color: #fff;
+ font-size: 24px;
+}
+
+.search-bar .search-btn {
+ background-color: #d55161;
+ border-radius: 10px;
+ font-size: 16px;
+ height: 30px;
+ line-height: 30px;
+ width: 40px;
+ display: inline-block;
+ vertical-align: top;
+ margin: 7px 3px 0;
+ padding: 0 5px;
+ cursor: pointer;
+}
+
+.search-bar .search-btn:hover {
+ background-color: #c14857;
+}
+
+.search-base-list a {
+ display: block;
+ border-top: 2px solid #E3E3E3;
+ background-color: #fff;
+ padding: 8px 20px;
+ vertical-align: middle;
+ height: 32px;
+ -webkit-transition: background-color .15s ease-in-out;
+ transition: background-color .15s ease-in-out;
+}
+
+.search-base-list a:first-child {
+ border-top: 0;
+}
+
+.search-base-list a:hover {
+ background-color: #f5f5f5;
+ cursor: pointer;
+}
+
+.search-base-list .icon-search2 {
+ color: #e3e3e3;
+ font-size: 36px;
+ height: 32px;
+ line-height: 32px;
+ text-align: center;
+ display: inline-block;
+}
+
+.search-popular {
+ color: #54556e;
+ font-size: 14px;
+ font-weight: bold;
+ height: 32px;
+ line-height: 32px;
+ display: inline-block;
+ vertical-align: top;
+ margin-left: 10px;
+}
+
+.search-bar .clear-search {
+ width: 20px;
+ height: 20px;
+ border-radius: 10px;
+ background-color: #aaaab8;
+ left: 202px;
+ top: 12px;
+ line-height: 20px;
+ font-size: 14px;
+ color: #fff;
+ position: absolute;
+ text-align: center;
+ cursor: pointer;
+ display: none;
+ -webkit-transition: background-color .15s ease-in-out;
+ transition: background-color .15s ease-in-out;
+}
+
+.search-bar .clear-search:hover {
+ background-color: #d55161;
+}
+
+/* notif page */
+
+.notif-list {
+ margin: 0;
+ padding: 0;
+}
+
+.notif-list a {
+ display: block;
+ background-color: #fff;
+ padding: 8px 20px 8px 18px;
+ vertical-align: middle;
+ min-height: 32px;
+ overflow: hidden;
+ position: relative;
+ -webkit-transition: background-color .15s ease-in-out;
+ transition: background-color .15s ease-in-out;
+}
+
+.notif-list li {
+ border-top: 2px solid #E3E3E3;
+}
+
+.notif-list li:first-child {
+ border-top: 0;
+}
+
+.notif-list a:hover {
+ background-color: #f5f5f5;
+ cursor: pointer;
+}
+
+.notif-list .icon {
+ color: #e3e3e3;
+ font-size: 32px;
+ height: 32px;
+ line-height: 32px;
+ text-align: center;
+ display: inline-block;
+ float: left;
+}
+
+.icon.notif-new {
+ color: #7bc8a4;
+}
+
+.notif-username {
+ color: #54556e;
+ font-weight: bold;
+}
+
+.notif-body {
+ color: #54556e;
+ font-size: 14px;
+ margin: 7px 0 4px;
+ width: calc(100% - 40px);
+ display: inline-block;
+ vertical-align: top;
+ margin-left: 10px;
+ float: left;
+}
+
+.menu-notif.notif-2digits {
+ font-size: 14px;
+}
+
+.top-bar-notif.notif-2digits {
+ font-size: 12px;
+}
+
+/* reset password */
+
+.reset-form {
+ margin-top: 15px;
+}
+
+.reset-password input,
+.reset-password-confirm input {
+ width: 280px;
+ border: 2px solid #C1C1CA;
+ padding: 10px 8px;
+ font-size: 16px;
+ border-radius: 10px;
+ margin-bottom: 10px;
+}
+
+.reset-password.form-error .error-text,
+.reset-password-confirm.form-error .error-text
+{
+ display: block;
+}
+
+.reset-password.form-error input,
+.reset-password-confirm.form-error input {
+ border: 2px solid #d55161;
+}
+
+.signup-email-password-field.form-error .error-text {
+ margin-bottom: 0;
+}
+
+.simple .interior-content .forgot-email-btn {
+ margin-top: 10px;
+ width: 300px;
+}
+
+/* email beta form */
+
+.email-label {
+ font-size: 13px;
+ font-weight: bold;
+ color: #fff;
+ height: 22px;
+ margin-top: -4px;
+ text-align: center;
+}
+
+.modal-app .email-label {
+ font-size: 18px;
+ height: 28px;
+ margin-top: -8px;
+}
+
+.landing .email-label {
+ margin-top: -6px;
+}
+
+/* sticker page */
+.sticker-list {
+ margin-top: 7px;
+}
+
+.sticker-list li {
+ margin-bottom: 9px;
+}
+
+.sticker-col1 {
+ float: left;
+ width: 50%;
+}
+
+.sticker-col2 {
+ margin-left: 5%;
+ width: 45%;
+ float: left;
+}
+
+.sticker-row2 {
+ margin-top: 30px;
+}
+
+.mobile-install-banner {
+ display: none;
+}
+
+.hide {
+ display: none;
+}
+
+.bar-btm-guy {
+ display: none;
+}
+
+.rant-top-bar {
+ height: 44px;
+ background-color: #40415a;
+ color: #fff;
+ font-weight: bold;
+ font-size: 14px;
+ line-height: 44px;
+ display: block;
+ border-top-left-radius: 10px;
+ border-top-right-radius: 10px;
+ overflow: hidden;
+}
+
+.rant-top-bar .btn {
+ background-color: #d55161;
+ border-radius: 10px;
+ font-size: 16px;
+ height: 30px;
+ line-height: 30px;
+ width: 40px;
+ display: inline-block;
+ vertical-align: top;
+ margin: 7px 3px 0;
+ padding: 0 5px;
+ cursor: pointer;
+}
+
+.rant-top-bar .btn.btn-notif-clear {
+ visibility: hidden;
+}
+
+.btn.btn-notif {
+ padding: 0 10px;
+}
+
+.rant-top-bar .btn:hover {
+ background-color: #c14857;
+}
+
+.top-bar-back {
+ font-size: 14px;
+ font-weight: bold;
+ float: left;
+ width: 50%;
+ min-height: 40px;
+ display: block;
+}
+
+.devrant-logo {
+ font-size: 24px;
+ font-weight: bold;
+ float: left;
+ width: 50%;
+ min-height: 40px;
+ display: block;
+}
+
+.devrant-logo .icon {
+ display: none;
+}
+
+.back-search {
+ width: 108px;
+}
+
+.top-bar-back .icon {
+ font-size: 24px;
+ margin: 0 8px 0 20px;
+ display: inline-block;
+}
+
+.top-bar-back a:hover,
+.feed-top-icons a:hover
+ {
+ color: #c6c7d9;
+}
+
+.btn-back {
+ vertical-align: top;
+ display: inline-block;
+}
+
+.share-icons {
+ float: right;
+ text-align: right;
+ margin-top: 7px;
+ height: 37px;
+}
+
+.feed-top-icons {
+ float: right;
+ text-align: right;
+ margin-right: 20px;
+ height: 44px;
+}
+
+.feed-top-icons a {
+ font-size: 30px;
+ margin-left: 10px;
+ display: inline-block;
+}
+
+.feed-top-icons.menu-icon {
+ float: left;
+ text-align: left;
+ margin-left: 10px;
+}
+
+.filter-top-bar {
+ height: 0;
+ background-color: #aaaab8;
+ color: #fff;
+ font-weight: bold;
+ font-size: 16px;
+ line-height: 44px;
+ display: block;
+ overflow: hidden;
+ text-align: center;
+}
+
+.filter-top-bar form {
+ display: inline-block;
+}
+
+.filter-top-bar input {
+ margin-left: 8px;
+ cursor: pointer;
+}
+
+.filter-top-bar label {
+ cursor: pointer;
+}
+
+.filter-top-bar label:hover,
+.filter-top-bar input:hover + label {
+ color: #e7e7ee;
+}
+
+.top-tab-bar {
+ height: 44px;
+ background-color: #fff;
+ border-bottom: 2px solid #e3e3e3;
+ color: #fff;
+ font-weight: bold;
+ font-size: 16px;
+ line-height: 44px;
+ display: block;
+ overflow: hidden;
+ text-align: center;
+ width: 100%;
+}
+
+.top-tab {
+ float: left;
+ height: 40px;
+ line-height: 40px;
+ border-bottom: 4px solid transparent;
+ font-weight: bold;
+ font-size: 16px;
+ transition: all .15s ease-in-out;
+ width: 25%;
+ color: #54556e;
+}
+
+.top-tab.selected {
+ border-bottom: 4px solid #54556e;
+}
+
+.top-tab:hover {
+ color: #d55161;
+ border-bottom: 4px solid #d55161;
+}
+
+.news-bar,
+.weekly-bar {
+ position: relative;
+ background-color: #fff;
+ border-bottom: 2px solid #e3e3e3;
+ font-size: 14px;
+ display: block;
+ overflow: hidden;
+ text-align: left;
+ width: 100%;
+}
+
+.rantlist li.weekly-bar {
+ border-bottom: 0;
+ width: auto;
+ padding: 0;
+}
+
+.news-bar {
+ min-height: 84px;
+}
+
+.news-guy {
+ position: absolute;
+ bottom: 0;
+ right: 15px;
+ width: 100px;
+}
+
+.news-close {
+ position: absolute;
+ top: 6px;
+ right: 8px;
+ color: #aaaab8;
+ font-size: 22px;
+}
+
+.news-close:hover {
+ color: #d55161;
+}
+
+.news-content {
+ width: calc(100% - 146px);
+ padding: 12px 20px;
+ display: block;
+}
+
+.weekly-content {
+ width: 100%;
+ padding: 12px 20px;
+ display: block;
+}
+
+.rantlist li.weekly-bar:hover {
+ background-color: #fff;
+}
+
+.news-content:hover .news-title,
+.weekly-content:hover .news-title {
+ color: #d55161;
+}
+
+.news-title {
+ font-size: 14px;
+ font-weight: bold;
+ color: #54556e;
+ -webkit-transition: color .15s ease-in-out;
+ transition: color .15s ease-in-out;
+}
+
+.news-body {
+ font-size: 14px;
+ color: #2f2f32;
+ margin-top: 4px;
+}
+
+.news-cta {
+ color: #aaaab8;
+ font-size: 12px;
+ font-weight: bold;
+ margin-top: 4px;
+}
+
+.share-icons a {
+ display: inline-block;
+ margin-left: 5px;
+ padding: 0 12px;
+ height: 30px;
+ line-height: 28px;
+ font-size: 24px;
+ border-radius: 10px;
+ text-align: center;
+ overflow: hidden;
+ -webkit-transition: background-color .15s ease-in-out;
+ transition: background-color .15s ease-in-out;
+}
+
+.share-icons a span {
+ display: inline-block;
+ vertical-align: middle;
+}
+
+.twitter-share {
+ background-color: #00a7ea;
+}
+
+.twitter-share:hover {
+ background-color: #1196de;
+}
+
+.fb-share {
+ background-color: #355ca7;
+ margin-right: 7px;
+}
+
+.fb-share:hover {
+ background-color: #364e84;
+}
+
+.share-text {
+ font-size: 14px;
+ font-weight: bold;
+ padding-left: 5px;
+}
+
+/* profile */
+
+.profile-bar {
+ float: left;
+ width: calc(100% - 152px);
+ text-align: center;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ overflow: hidden;
+ margin-left: 18px;
+}
+
+.notif-bar {
+ width: calc(100% - 160px);
+}
+
+.title-bar {
+ float: left;
+ width: 110px;
+ text-align: center;
+ white-space: nowrap;
+ text-overflow: ellipsis;
+ overflow: hidden;
+ margin-left: calc(50% - 120px);
+}
+
+.back-profile {
+ width: 60px;
+}
+
+.username-profile {
+ font-family: Comfortaa;
+ font-weight: bold;
+ font-size: 26px;
+}
+
+.profile-details {
+ background-color: #fff;
+ padding: 15px 20px 15px 15px;
+}
+
+.profile-detail-col1 {
+ float: left;
+ width: 32px;
+ font-size: 28px;
+ color: #aaaab8;
+ margin-right: 8px;
+ text-align: center;
+}
+
+.profile-detail-col2 {
+ padding: 6px 0 7px;
+ float: left;
+ width: calc(100% - 40px);
+ font-size: 14px;
+}
+
+.profile-detail-col2 a {
+ color: #2f2f32;
+}
+
+.profile-detail-col2 a:hover {
+ color: #d55161;
+}
+
+.profile-join-date {
+ color: #aaaab8;
+ font-size: 12px;
+ margin: 5px 0 5px 40px;
+ font-weight: bold;
+}
+
+.profile-tabs {
+ background-color: #fff;
+ padding-bottom: 9px;
+ border-bottom: 2px solid #e3e3e3;
+}
+
+.tabs {
+ width: 30.66%;
+ margin-right: 2%;
+ float: left;
+ text-align: center;
+ color: #40415a;
+ cursor: pointer;
+}
+
+.tab1 {
+ margin-left: 2%;
+}
+
+.tab-line {
+ width: 100%;
+ height: 4px;
+ background-color: #40415a;
+ border-radius: 2px;
+ -webkit-transition: background-color .15s ease-in-out;
+ transition: background-color .15s ease-in-out;
+}
+
+.tab-count {
+ font-size: 24px;
+ margin-top: 6px;
+ font-weight: bold;
+ -webkit-transition: color .15s ease-in-out;
+ transition: color .15s ease-in-out;
+}
+
+.tab-label {
+ font-size: 12px;
+ margin-top: -2px;
+ font-weight: bold;
+ -webkit-transition: color .15s ease-in-out;
+ transition: color .15s ease-in-out;
+}
+
+.tabs.highlight .tab-line {
+ background-color: #d55161;
+}
+
+.tabs.highlight .tab-count,
+.tabs.highlight .tab-label {
+ color: #d55161;
+}
+
+.tabs:hover .tab-line {
+ background-color: #d55161;
+}
+
+.tabs:hover .tab-count,
+.tabs:hover .tab-label {
+ color: #d55161;
+}
+
+
+/* signup modal */
+
+.content-centered-container {
+ height: 100%;
+ width: 100%;
+ position: relative;
+ /*overflow-y: hidden;*/
+ position: absolute;
+}
+
+.content-centered-modal {
+ width: 372px;
+ margin: 0 auto;
+ position: relative;
+ text-align: center;
+ z-index: 21;
+ color: #fff;
+ font-size: 18px;
+}
+
+.signup-login-forms a {
+ color: #fff;
+}
+
+.signup-login-forms a:hover {
+ color: #fff;
+ text-decoration: underline;
+}
+
+.content-centered-modal .btn:hover {
+ color: #fff;
+}
+
+.overlay {
+ width: 100%;
+ background-color: #000;
+ opacity: 0.8;
+ position: fixed;
+ top: 0;
+ left: 0;
+ z-index: 20;
+ display: none;
+}
+
+.signup-title {
+ font-family: Comfortaa;
+ font-size: 42px;
+ margin-bottom: 8px;
+ font-weight: bold;
+ line-height: 1.2;
+}
+
+.signup-subtitle {
+ font-size: 18px;
+ margin-bottom: 22px;
+ color: #babacc;
+}
+
+.signup-fb-btn {
+ background-color: #3b5b9a;
+}
+
+.signup-fb-btn .icon {
+ font-size: 40px;
+ width: 55px;
+ height: 70px;
+ line-height: 70px;
+ display: inline-block;
+ margin-left: -15px;
+}
+
+.btn-text {
+ display: inline-block;
+ vertical-align: top;
+ height: 70px;
+ line-height: 70px;
+}
+
+.signup-fb-btn:hover {
+ background-color: #274683;
+}
+
+.signup-email-title {
+ font-size: 22px;
+ margin-top: 10px;
+ margin-bottom: 14px;
+}
+
+.signup-login-forms input {
+ height: 34px;
+ line-height: 34px;
+ padding: 5px 20px 5px 55px;
+ border-radius: 10px;
+ border: 2px solid #fff;
+ background-color: #fff;
+ width: 293px;
+ font-size: 18px;
+}
+
+.signup-login-forms textarea {
+ height: 80px;
+ line-height: 1.3;
+ padding: 10px 14px 10px 55px;
+ border-radius: 10px;
+ border: 2px solid #fff;
+ background-color: #fff;
+ width: 299px;
+ font-size: 18px;
+ vertical-align: top;
+ margin-bottom: 10px;
+}
+
+.post-rant-form textarea,
+.post-comment-form textarea {
+ height: 200px;
+ line-height: 1.3;
+ padding: 10px 14px 10px 14px;
+ border-top-left-radius: 10px;
+ border-top-right-radius: 10px;
+ border-bottom-left-radius: 0;
+ border-bottom-right-radius: 0;
+ border: 2px solid #fff;
+ background-color: #fff;
+ width: 340px;
+ font-size: 18px;
+ vertical-align: top;
+ margin-bottom: 0;
+}
+
+.post-rant-bottom {
+ border-bottom-left-radius: 10px;
+ border-bottom-right-radius: 10px;
+ background-color: #aaaab8;
+ color: #fff;
+ padding: 8px 14px;
+ font-size: 14px;
+ margin-bottom: 10px;
+}
+
+.post-rant-bottom .post-count {
+ display: inline-block;
+ text-align: left;
+ float: left;
+}
+
+.post-rant-bottom .rant-attached {
+ display: inline-block;
+ float: right;
+ text-align: right;
+}
+
+.rant-attached .icon {
+ margin-right: 6px;
+ font-size: 16px;
+ display: inline-block;
+ vertical-align: top;
+}
+
+.rant-attached .attach-text {
+ display: inline-block;
+}
+
+.rant-attached:hover .attach-text {
+ text-decoration: underline;
+}
+
+.signup-fields {
+ position: relative;
+}
+
+.signup-email-field input {
+ margin-bottom: 10px;
+}
+
+.signup-email-field {
+ clear: both;
+}
+
+.form-error input {
+ border: 2px solid #d55161;
+ margin-bottom: 0;
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0;
+}
+
+.form-error textarea {
+ border: 2px solid #d55161;
+ margin-bottom: 0;
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0;
+}
+
+.post-rant-form .error-text,
+.post-comment-form .error-text {
+ border-bottom-right-radius: 0;
+ border-bottom-left-radius: 0;
+ margin-bottom: 0;
+}
+
+.form-error .form-error-alert,
+.form-error .error-text {
+ display: block;
+}
+
+.form-error-alert {
+ position: absolute;
+ top: 4px;
+ left: 4px;
+ width: 18px;
+ height: 18px;
+ line-height: 18px;
+ font-size: 13px;
+ font-weight: bold;
+ background-color: #d55161;
+ border-radius: 50%;
+ z-index: 24;
+ border: 2px solid #fff;
+ display: none;
+}
+
+.error-text {
+ font-size: 12px;
+ text-align: left;
+ padding: 4px 12px 4px;
+ background-color: #d55161;
+ margin-bottom: 10px;
+ border-bottom-right-radius: 10px;
+ border-bottom-left-radius: 10px;
+ display: none;
+}
+
+.modal-btn {
+ background-color: #d55161;
+ width: 372px;
+ color: #fff;
+ margin-top: 15px;
+}
+
+.modal-btn:hover {
+ background-color: #c14857;
+}
+
+.forgot-email-btn {
+ margin-top: 5px;
+}
+
+.signup-fields .form-icon {
+ position: absolute;
+ top: 0;
+ left: 6px;
+ height: 48px;
+ width: 48px;
+ text-align: center;
+ line-height: 48px;
+ color: #aaaab8;
+ font-size: 32px;
+}
+
+.form-char-count {
+ position: absolute;
+ bottom: 13px;
+ left: 14px;
+ text-align: left;
+ color: #aaaab8;
+ font-size: 12px;
+}
+
+.login-form .signup-email-container,
+.forgot-form .signup-email-container {
+ display: block;
+}
+
+.signup-login-link-container {
+ margin-top: 40px;
+ margin-bottom: 10px;
+ color: #babacc;
+}
+
+.login-signup-link-container,
+.forgot-signup-link-container {
+ margin-top: 30px;
+ color: #babacc;
+}
+
+.forgot-signup-link-container a,
+.login-signup-link-container a {
+ color: #babacc;
+}
+
+.signup-skip {
+ margin-top: 20px;
+}
+
+.signup-login-link,
+.modal-alert-btn {
+ background-color: #5c5c78;
+ width: 100%;
+}
+
+.signup-login-link:hover {
+ background-color: #c14857;
+}
+
+.btn-red {
+ background-color: #d55161;
+}
+
+.menu-modal-list li a {
+ min-height: 48px;
+ line-height: 48px;
+ font-size: 22px;
+ font-weight: bold;
+ display: block;
+ border-radius: 10px;
+}
+
+.menu-modal-list li a:hover {
+ text-decoration: none;
+ background-color: #c14857;
+}
+
+.menu-modal-list .icon {
+ font-size: 32px;
+ color: #babacc;
+ line-height: 48px;
+ vertical-align: middle;
+ margin-right: 10px;
+}
+
+.menu-modal-list li a:hover .icon {
+ color: #fff;
+}
+
+.menu-modal-list .icon-bell1 {
+ position: relative;
+}
+
+.notif-badge {
+ width: 25px;
+ height: 25px;
+ line-height: 25px;
+ color: #fff;
+ font-size: 16px;
+ font-weight: bold;
+ background-color: #7bc8a4;
+ margin-left: 8px;
+ border-radius: 12px;
+ display: inline-block;
+ text-align: center;
+ -webkit-transition: background-color .15s ease-in-out;
+ transition: background-color .15s ease-in-out;
+}
+
+.top-bar-notif {
+ display: block;
+ position: absolute;
+ top: 2px;
+ right: -12px;
+ width: 20px;
+ height: 20px;
+ line-height: 20px;
+ font-size: 14px;
+ border: 2px solid #40415a;
+}
+
+.rant-top-bar .menu-icon {
+ position: relative;
+}
+
+.rant-top-bar .menu-icon a:hover .notif-badge {
+ background-color: #62b38d;
+}
+
+.state-logged-in .menu-modal .menu-option-log-in {
+ display: none;
+}
+
+.state-logged-out .menu-modal .menu-option-log-out {
+ display: none;
+}
+
+.state-logged-out .menu-modal .menu-option-profile {
+ display: none;
+}
+
+.state-logged-out .menu-modal .menu-option-settings {
+ display: none;
+}
+
+.list-login {
+ margin: 10px 0 20px;
+}
+
+.menu-modal .menu-logo {
+ text-align: center;
+ font-size: 42px;
+ color: #fff;
+ text-align: center;
+ margin-bottom: 20px;
+ display: block;
+}
+
+.menu-modal .menu-logo:hover {
+ text-decoration: none;
+}
+
+.grey-btns {
+ margin-top: 15px;
+}
+
+.grey-btns a {
+ background-color: #5c5c78;
+ margin-bottom: 10px;
+}
+
+/* outline color btn
+.signup-skip-btn:hover {
+ border: solid 2px #e00b38;
+ color: #e00b38 !important;
+}
+*/
+
+.no-link {
+ text-decoration: none !important;
+ color: #fff !important;
+ cursor: default !important;
+}
+
+.no-link:hover {
+ text-decoration: none !important;
+ color: #fff !important;
+ cursor: default !important;
+}
+
+.reset-form-body .container {
+ width: 400px;
+ overflow: hidden;
+}
+
+.modal-base {
+ top: 150px;
+ width: 372px;
+ display: none;
+ position: fixed;
+}
+
+.reset-form,
+.reset-form .signup-email-container {
+ display: block;
+}
+
+.reset-form {
+ margin-top: 110px;;
+}
+
+.reset-form .signup-title {
+ line-height: 50px;
+ margin-bottom: 12px;
+}
+
+.alert-modal .signup-title {
+ margin-bottom: 15px;
+}
+
+.post-rant-form .signup-title,
+.post-comment-form .signup-title {
+ margin-bottom: 13px;
+}
+
+.reset-logo {
+ text-align: center;
+ font-size: 110px;
+}
+
+.signup-form {
+ top: 150px;
+}
+
+.details-form {
+ top: 150px;
+}
+
+.signup-tos-print {
+ font-size: 12px;
+ color: #babacc;
+ margin-top: 12px;
+ line-height: 1.3;
+}
+
+.signup-tos-print a {
+ color: #babacc;
+ text-decoration: underline;
+}
+
+.signup-tos-print a:hover {
+ color: #fff;
+}
+
+.save-login-container {
+ font-size: 18px;
+ margin-top: 12px;
+ display: block;
+ color: #babacc;
+}
+
+.save-login-container label {
+ cursor: pointer;
+}
+
+.save-login-container label span {
+ -webkit-transition: color .15s ease-in-out;
+ transition: color .15s ease-in-out;
+}
+
+.save-login-container label:hover span {
+ color: #fff;
+}
+
+input.save-login-input {
+ height: auto;
+ line-height: 1.2;
+ width: auto;
+ cursor: pointer;
+}
+
+.stickers-img {
+ margin-bottom: 30px;
+ display: block;
+}
+
+.stickers-img img {
+ width: 80%;
+}
+
+.btn-loader {
+ background-image: url(/static/devrant/img/pink-dots-animation1.gif);
+ background-position: center center;
+ background-repeat: no-repeat;
+ background-color: #c14857;
+ background-size: 53px 13px;
+ color: transparent;
+}
+
+.btn-loader:hover {
+ background-color: #c14857;
+ color: transparent !important;
+}
+
+.product-list {
+ width: calc(100% + 10px);
+ overflow: hidden;
+ margin-left: -10px;
+}
+
+.product-list li {
+ width: calc(33.333333333% - 10px);
+ position: relative;
+ float: left;
+ margin-left: 10px;
+ margin-bottom: 10px;
+}
+
+.product-list li:hover {
+ opacity: 0.9;
+}
+
+.product-list li img {
+ width: 100%;
+}
+
+.product-list li span {
+ position: absolute;
+ bottom: 5px;
+ right: 5px;
+ border-radius: 5px;
+ padding: 3px 5px;
+ background-color: #d55161;
+ color: #fff;
+ font-size: 12px;
+ font-weight: bold;
+}
+
+.stack-list {
+ width: calc(100% + 10px);
+ overflow: hidden;
+ margin-left: -10px;
+}
+
+.stack-list li {
+ width: calc(33.333333333% - 10px);
+ position: relative;
+ float: left;
+ margin-left: 10px;
+ text-align: center;
+}
+
+.stack-description {
+ margin-top: 5px;
+ min-height: 90px;
+}
+
+.stack-list li img {
+ width: 100%;
+ border-radius: 5px;
+}
+
+.stack-list a.stack-link {
+ text-decoration: none;
+ color: #2f2f32;
+ height: 100%:
+ width: 100%;
+}
+
+.stack-list a.stack-link:hover {
+ text-decoration: none;
+}
+
+.profile-avatar-container {
+ background-image: url(/static/devrant/img/profile-banner-bg1b.png);
+ background-position: center center;
+ background-repeat: no-repeat;
+ background-size: cover;
+ height: 290px;
+ width: 100%;
+ overflow: hidden;
+ background-color: #fff;
+ position: relative;
+ text-align: center;
+}
+
+.profile-avatar-circle {
+ width: 260px;
+ height: 260px;
+ border-radius: 50%;
+ overflow: hidden;
+ background-color: transparent;
+ display: block;
+ top: 15px;
+ left: calc(50% - 130px);
+ position: absolute;
+ z-index: 2;
+}
+
+.avatar-blank {
+ background-image: url(/static/devrant/img/profile-circle-dots1.png);
+ background-position: center center;
+ background-repeat: no-repeat;
+ background-size: 100%;
+ width: 100%;
+ height: 100%;
+ display: inline-block;
+ -webkit-transition: all .15s ease-in-out;
+ transition: all .15s ease-in-out;
+}
+
+.avatar-blank:hover {
+ opacity: 0.8;
+}
+
+.avatar-blank span {
+ display: block;
+ text-align: center;
+ margin: 0 auto;
+ font-weight: bold;
+ color: #fff;
+ font-size: 24px;
+ margin-top: calc(50% - 36px);
+}
+
+.username-row .profile-avatar-circle {
+ width: 50px;
+ height: 50px;
+ margin-right: 10px;
+ border-radius: 50%;
+ overflow: hidden;
+ background-color: #54556E;
+ display: inline-block;
+ top: auto;
+ left: auto;
+ position: relative;
+ z-index: 1;
+ float: left;
+}
+
+.profile-avatar-circle img {
+ width: 100%;
+}
+
+.avatar-edit .circledots {
+ position: absolute;
+ top: 0;
+ left: 0;
+ z-index: 2;
+ opacity: 0;
+ width: 100%;
+ height: 100%;
+ display: inline-block;
+ transition: opacity .15s ease-in-out;
+ -moz-transition: opacity .15s ease-in-out;
+ -webkit-transition: opacity .15s ease-in-out;
+}
+
+.avatar-edit:hover .circledots {
+ opacity: 1;
+}
+
+.profile-avatar-overlay {
+ width: 100%;
+ height: 100%;
+ opacity: 0.66;
+ background-color: #54556E;
+ position: absolute;
+ top: 0;
+ left: 0;
+ display: block;
+ z-index: 0;
+}
+
+.profile-score {
+ position: absolute;
+ top: 15px;
+ left: 20px;
+ background-color: #54556e;
+ color: #fff;
+ font-weight: bold;
+ font-size: 14px;
+ padding: 3px 5px;
+ border-radius: 4px;
+ display: inline-block;
+ vertical-align: top;
+ line-height: 1.2;
+ -webkit-transition: background-color .15s ease-in-out;
+ transition: background-color .15s ease-in-out;
+ z-index: 2;
+}
+
+.username-row .profile-score {
+ position: relative;
+ top: auto;
+ left: auto;
+ background-color: #54556e;
+ color: #fff;
+ font-weight: bold;
+ font-size: 12px;
+ padding: 2px 4px;
+ border-radius: 4px;
+ display: inline-block;
+ vertical-align: top;
+ line-height: 1.2;
+ -webkit-transition: background-color .15s ease-in-out;
+ transition: background-color .15s ease-in-out;
+ z-index: 1;
+}
+
+.username-row .rant-username {
+ margin: 3px 0 4px;
+}
+
+.collab-subtitle {
+ color: #aaaab8;
+ font-size: 12px;
+ font-weight: bold;
+ margin-bottom: 1px;
+ margin-top: 9px;
+}
+
+.collab-content a:hover {
+ text-decoration: underline;
+}
+
+.blog-title {
+ color: #54556e;
+ font-weight: bold;
+ font-size: 20px;
+ margin-bottom: 4px;
+}
+
+.blog-subtitle {
+ color: #aaaab8;
+ font-size: 12px;
+ font-weight: bold;
+}
+
+.blog-container {
+ background-color: #fff;
+ padding: 12px 20px;
+ font-size: 14px;
+ line-height: 1.3;
+}
+
+.blog-container a {
+ color: #54556e;
+}
+
+.blog-container a:hover {
+ color: #c14857;
+}
+
+.blog-footer {
+ color: #54556e;
+ margin-top: 20px;
+ padding-top: 16px;
+ padding-bottom: 6px;
+ border-top: 2px solid #e3e3e3;
+ font-size: 12px;
+ font-weight: bold;
+ line-height: 1.8;
+}
+
+@media screen and (max-width: 640px) {
+ .sticker-col1 {
+ float: none;
+ width: 100%;
+ }
+
+ .sticker-col2 {
+ margin-top: 12px;
+ margin-left: 5%;
+ width: 90%;
+ float: none;
+ }
+
+ .bluegrey-bg {
+ display: none;
+ }
+
+ .container {
+ min-width: 320px;
+ }
+
+ .modal-content {
+ width: 100%;
+ margin-top: 90px;
+ }
+
+ .modal-screens {
+ display: none;
+ width: 70%;
+ margin: 0
+ float: none;
+ position: fixed;
+ bottom: -200px;
+ }
+
+ .modal-title {
+ width: 100%;
+ font-size: 28px;
+ }
+
+ .app-btns.modal-btns {
+ width: 100%;
+ }
+
+ .modal-text-col {
+ width: 80%;
+ margin-left: 10%;
+ }
+
+ .iphone-btn, .android-btn {
+ display: none;
+ margin: 0;
+ height: 60px;
+ line-height: 60px;
+ }
+
+ .iphone-btn img, .android-btn img {
+ width: 150px;
+ vertical-align: middle;
+ }
+
+ .app-btns-android .android-btn {
+ width: 100%;
+ display: block;
+ }
+
+ .app-btns-ios .iphone-btn {
+ width: 100%;
+ display: block;
+ }
+
+ .app-btns-android.app-btns-ios .android-btn,
+ .app-btns-android.app-btns-ios .iphone-btn {
+ margin-bottom: 10px;
+ }
+
+ .mobile-install-banner {
+ display: block;
+ height: 80px;
+ background-color: #54556E;
+ width: 100%;
+ position: fixed;
+ bottom: 0;
+ padding: 0 4%;
+ z-index: 8;
+ }
+
+ .mobile-install-banner .app-btns {
+ width: 62%;
+ margin-top: 10px;
+ }
+
+ .mobile-install-banner .app-btns-android.app-btns-ios .android-btn,
+ .mobile-install-banner .app-btns-android.app-btns-ios .iphone-btn {
+ margin-bottom: 0;
+ display: inline-block;
+ width: 47%;
+ }
+
+ .mobile-install-banner .app-btns-android.app-btns-ios .android-btn img,
+ .mobile-install-banner .app-btns-android.app-btns-ios .iphone-btn img {
+ width: 85%;
+ }
+
+ .mobile-install-banner .app-btns-android.app-btns-ios .iphone-btn img {
+ margin-right: 6%;
+ }
+
+ .bar-btm-guy {
+ width: 25%;
+ position: fixed;
+ bottom: 0;
+ right: 4%;
+ z-index: 9;
+ display: block;
+ }
+
+ .interior-content {
+ width: 100%;
+ min-height: 100px;
+ }
+
+ .interior-centered {
+ width: 100%;
+ }
+
+ .body-col1 {
+ display: none;
+ }
+
+ .body-col2 {
+ width: 100%;
+ min-height: 100px;
+ background-color: transparent;
+ margin: 0;
+ text-align: left;
+ border-radius: 0;
+ overflow: hidden;
+ float: left;
+ padding-bottom: 130px;
+ }
+
+ .rantlist-content-col {
+ width: calc(100% - 50px);
+ }
+
+ .rantlist-title-text,
+ .rantlist-content,
+ .collab-summary {
+ width: 100%;
+ word-wrap:break-word;
+ }
+
+ .reply-row .rantlist-content-col {
+ width: calc(100% - 83px);
+ }
+
+ .reply-row .rantlist-title {
+ width: 100%;
+ word-wrap:break-word;
+ }
+
+ .details-page {
+ background-image: none;
+ }
+
+ body.landing-rant {
+ background: url(/static/devrant/img/detailed-bg1.png) top left repeat;
+ }
+
+ .rant-top-bar {
+ background-color: #54556E;
+ height: 50px;
+ line-height: 50px;
+ position: fixed;
+ top: 0;
+ z-index: 8;
+ width: 100%;
+ padding: 0;
+ border-radius: 0;
+ overflow: hidden;
+ }
+
+ .devrant-logo {
+ font-size: 24px;
+ float: left;
+ width: 50%;
+ height: 50px;
+ line-height: 50px;
+ }
+
+ .rant-top-bar .devrant-logo .icon {
+ padding-left: 20px;
+ display: block;
+ height: 50px;
+ line-height: 50px;
+ }
+
+ .share-icons {
+ float: right;
+ text-align: right;
+ margin-top: 5px;
+ }
+
+ .share-icons a {
+ display: inline-block;
+ margin-left: 5px;
+ width: 50px;
+ height: 40px;
+ line-height: 40px;
+ padding: 0;
+ font-size: 28px;
+ }
+
+ .share-text {
+ display: none;
+ }
+
+ .rantlist {
+ padding-top: 50px;
+ }
+
+ .rantlist-bg {
+ width: auto;
+ min-height: auto;
+ border-radius: 0;
+ }
+
+ .addcomment-btn {
+ bottom: 92px;
+ width: 90%;
+ left: 0;
+ margin-left: 5%;
+ z-index: 8;
+ }
+
+ .addrant-btn {
+ bottom: 95px;
+ left: calc(50% - 35px);
+ margin: 0 auto;
+ }
+
+ .profile-avatar-container {
+ margin-top: 50px;
+ height: 240px;
+ }
+
+ .profile-avatar-circle {
+ width: 210px;
+ height: 210px;
+ left: calc(50% - 105px);
+ }
+
+ .page-feed .rantlist {
+ padding-top: 0;
+ }
+
+ .profile-page .rantlist {
+ padding-top: 0;
+ }
+
+ .profile-bar .profile-score {
+ background-color: #40415a;
+ margin-top: 14px;
+ }
+
+ .username-profile {
+ font-size: 22px;
+ }
+
+ .rant-top-bar .btn {
+ margin-top: 9px;
+ }
+
+ .search-bar {
+ margin-left: calc(50% - 160px);
+ margin-top: 2px;
+ }
+
+ .search-bar .search-input {
+ width: 140px;
+ }
+
+ .filter-top-bar {
+ margin-top: 50px;
+ }
+
+ .content-centered-modal {
+ width: auto;
+ margin: 0;
+ }
+
+ .modal-base {
+ width: 90%;
+ margin: 0 5%;
+ }
+
+ .signup-title {
+ font-size: 32px;
+ }
+
+ .install-modal .signup-title {
+ font-size: 32px;
+ margin-bottom: 18px;
+ }
+
+ .signup-login-forms input {
+ width: calc(100% - 80px);
+ }
+
+ input.save-login-input {
+ width: auto;
+ }
+
+ .modal-btn {
+ width: 100%;
+ }
+
+ .signup-login-forms textarea {
+ width: calc(100% - 73px);
+ }
+
+ .signup-login-forms textarea {
+ height: 58px;
+ }
+
+ .post-rant-form textarea,
+ .post-comment-form textarea {
+ width: calc(100% - 32px);
+ }
+
+ .stickers-img img {
+ width: 70%;
+ }
+
+ .search-bar .clear-search {
+ left: 157px;
+ }
+
+ .top-bar-notif {
+ border: 2px solid #54556E;
+ }
+
+ .notif-list {
+ margin-top: 50px;
+ }
+
+ .open-btn {
+ width: 100%;
+ display: block;
+ height: 60px;
+ line-height: 60px;
+ }
+
+ .product-list li {
+ width: calc(50% - 10px);
+ }
+
+ .stack-list li {
+ width: calc(50% - 10px);
+ }
+
+ .title-bar {
+ display: none;
+ }
+
+ .blog-container {
+ margin-top: 50px;
+ }
+
+}
+.top-bar-notif {
+ display: none;
+}
+.meetup-container {
+ margin-top: 10px;
+}
diff --git a/_site/Backup/composer.json b/_site/Backup/composer.json
new file mode 100644
index 0000000..0967ef4
--- /dev/null
+++ b/_site/Backup/composer.json
@@ -0,0 +1 @@
+{}
diff --git a/_site/Backup/content/featured.html b/_site/Backup/content/featured.html
new file mode 100644
index 0000000..94d1ffc
--- /dev/null
+++ b/_site/Backup/content/featured.html
@@ -0,0 +1 @@
+
diff --git a/_site/Backup/content/newrelease.html b/_site/Backup/content/newrelease.html
new file mode 100644
index 0000000..94d1ffc
--- /dev/null
+++ b/_site/Backup/content/newrelease.html
@@ -0,0 +1 @@
+
diff --git a/_site/Backup/content/t b/_site/Backup/content/t
new file mode 100644
index 0000000..718f4d2
--- /dev/null
+++ b/_site/Backup/content/t
@@ -0,0 +1 @@
+t
diff --git a/_site/Backup/desktop/index.html b/_site/Backup/desktop/index.html
new file mode 100644
index 0000000..1006152
--- /dev/null
+++ b/_site/Backup/desktop/index.html
@@ -0,0 +1,54 @@
+
+
RetryLife
+
+
+
+
+
+
+
+
+
+
+
+
RetryLife
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/_site/Backup/desktop/load.html b/_site/Backup/desktop/load.html
new file mode 100644
index 0000000..a5fe910
--- /dev/null
+++ b/_site/Backup/desktop/load.html
@@ -0,0 +1,8 @@
+
+
+
diff --git a/_site/Backup/donate/index.html b/_site/Backup/donate/index.html
new file mode 100644
index 0000000..cac64aa
--- /dev/null
+++ b/_site/Backup/donate/index.html
@@ -0,0 +1,32 @@
+
+
+
+
+
+
+
+ Donate!
+
+
+
+
+
+
+
+
+
Bitcoin: 1HdgN47Ng2cmbXKkiKqM1a1GmKKkxVJqa2
+
+
+
+
+
+
+
+
Ethereum: 0x5383D344aE0482a4AB956c14C56cC8a84926c556
+
+
+
+
+
+
+
diff --git a/_site/Backup/error.html b/_site/Backup/error.html
new file mode 100644
index 0000000..6a6d6ca
--- /dev/null
+++ b/_site/Backup/error.html
@@ -0,0 +1,29 @@
+
+
+
RetryLife
+
+
+
+
+
+
+
+
+
+ An Error Occurred
+ Try checking the spelling of the link you followed. Or Go Back
+
+
+
+
+
diff --git a/_site/Backup/favicon.ico b/_site/Backup/favicon.ico
new file mode 100644
index 0000000..7c82483
Binary files /dev/null and b/_site/Backup/favicon.ico differ
diff --git a/_site/Backup/font.ttf b/_site/Backup/font.ttf
new file mode 100644
index 0000000..98044e9
Binary files /dev/null and b/_site/Backup/font.ttf differ
diff --git a/_site/Backup/font.txt b/_site/Backup/font.txt
new file mode 100644
index 0000000..98044e9
Binary files /dev/null and b/_site/Backup/font.txt differ
diff --git a/_site/Backup/humans.txt b/_site/Backup/humans.txt
new file mode 100644
index 0000000..e38e0b3
--- /dev/null
+++ b/_site/Backup/humans.txt
@@ -0,0 +1,3 @@
+/* Team */
+Developed by: Evan Pratten
+Art by: Nathan Desjardins
diff --git a/_site/Backup/img/Background.png b/_site/Backup/img/Background.png
new file mode 100644
index 0000000..530e0d2
Binary files /dev/null and b/_site/Backup/img/Background.png differ
diff --git a/_site/Backup/img/Rd b/_site/Backup/img/Rd
new file mode 100644
index 0000000..28cbfc5
--- /dev/null
+++ b/_site/Backup/img/Rd
@@ -0,0 +1 @@
+Ignore
diff --git a/_site/Backup/img/load.gif b/_site/Backup/img/load.gif
new file mode 100644
index 0000000..e74ef12
Binary files /dev/null and b/_site/Backup/img/load.gif differ
diff --git a/_site/Backup/img/nds.png b/_site/Backup/img/nds.png
new file mode 100644
index 0000000..46f2b05
Binary files /dev/null and b/_site/Backup/img/nds.png differ
diff --git a/_site/Backup/img/rtl.png b/_site/Backup/img/rtl.png
new file mode 100644
index 0000000..afeee06
Binary files /dev/null and b/_site/Backup/img/rtl.png differ
diff --git a/_site/Backup/index.html b/_site/Backup/index.html
new file mode 100644
index 0000000..da5a44e
--- /dev/null
+++ b/_site/Backup/index.html
@@ -0,0 +1,69 @@
+
+
+
+
RetryLife
+
+
+
+
+
diff --git a/_site/Backup/index2.html b/_site/Backup/index2.html
new file mode 100644
index 0000000..a86573d
--- /dev/null
+++ b/_site/Backup/index2.html
@@ -0,0 +1,369 @@
+
+
+
+
+
+
RetryLife
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
RetryLife
+
Video, Music, Animation, Graphic Design
+
Let's Go
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ Welcome
+ Imagine. Create. Share.
+
+
+
+
Welcome to RetryLife, a group of close friends who have a passion for creating interesting content of many diffrent varieties. This website is where you can come to find all of our published work.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Music
+
We work together to produce cool music and also colaborate with many people.
+
Learn more
+
+
+
+
+
+
+
+
Video
+
We are constently trying out new video formats to bring content to our fans.
+
Learn more
+
+
+
+
+
+
+
+
Graphic Design
+
We produce many high quality graphics and digital art peices.
+
Learn more
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+ 100+
+ Songs published
+
+
+
+
+ 2000+
+ Plays
+
+
+
+
+ 6
+ members
+
+
+
+
+ 80+
+ dedicated viewers
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Evan Pratten
+
Video Editor & Musician
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
russle seck
+
Video editor & Musician
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Nathan Desjardins
+
Graphic Designer
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/_site/Backup/keybase.txt b/_site/Backup/keybase.txt
new file mode 100644
index 0000000..23a592e
--- /dev/null
+++ b/_site/Backup/keybase.txt
@@ -0,0 +1,68 @@
+==================================================================
+https://keybase.io/ewpratten
+--------------------------------------------------------------------
+
+I hereby claim:
+
+ * I am an admin of http://retrylife.ca
+ * I am ewpratten (https://keybase.io/ewpratten) on keybase.
+ * I have a public key with fingerprint DD15 BE72 F652 984A ED9E C033 56F5 A6FB 5A8E EF90
+
+To do so, I am signing this object:
+
+{
+ "body": {
+ "key": {
+ "eldest_kid": "010160a7afd6a7099e5079470c930b62e422a3f4b8a0c08482c174e5356f23b7b66f0a",
+ "fingerprint": "dd15be72f652984aed9ec03356f5a6fb5a8eef90",
+ "host": "keybase.io",
+ "key_id": "56f5a6fb5a8eef90",
+ "kid": "010160a7afd6a7099e5079470c930b62e422a3f4b8a0c08482c174e5356f23b7b66f0a",
+ "uid": "bffaefed9cc265096ca9aec784253419",
+ "username": "ewpratten"
+ },
+ "service": {
+ "hostname": "retrylife.ca",
+ "protocol": "http:"
+ },
+ "type": "web_service_binding",
+ "version": 1
+ },
+ "ctime": 1512755987,
+ "expire_in": 157680000,
+ "prev": "5b6fb0129c86651cb820c7769f26d4eec7c254c4263debe5cee933b2a9ddf4c7",
+ "seqno": 8,
+ "tag": "signature"
+}
+
+which yields the signature:
+
+-----BEGIN PGP MESSAGE-----
+Version: Keybase OpenPGP v2.0.76
+Comment: https://keybase.io/crypto
+
+yMIrAnicrVJbSBVRFL3XMssMg6KXPacbkYnOnJlzZuaGkFBJhSRB2sO6nDmzR6fs
+3mnueE18QYU97B2lfUQPxML8MCKIwMjSiOynzOj1E0YUFZEURkR2Ruyvz87P4eyz
+1tprL3b3pDGB1OCp9urclClFfcHerqaKwObMvinVghEzq4RwtbADRi4oNyHuRXbY
+phAWREmUiEhVapmEqqKuAxZVXVFFpsuiQRAoCFHZUgyNikzUFA0xSVUAy5hYSDZU
+gxBLpEKWYNnRUnAd1456XNY0JWyAiiyCka4pFEwdmCj7LEyJZWCqAVi6yIllsbjP
+4OYMGodsO8Zr/BEZsfcP/H/2XTEiZ1gWBYu7ZAwRLOqEUZ0CUzUFYVmRdB8YBzdK
+dwJHQ6XjUs+DqFCbJfBywmbgJ+uPMgpxwXOrym0LspnfxXFjXozFyvlPmec5YZ/o
+VTk+shKMyKhGxLCjJs+RExLgxu1YVAhLHMk82xeVsIRUjHVNzRJgt2O7ELF9BFaJ
+JvLjt4GEn5rBIxMlpDONECwxQ0MiU1WiW4iYCvC5GMIKUxCRTTAAMwBdlg1EddO0
+FKYK/lS7ojEhrHGbtJRLxu3SKPUqXBBq794pGRsIpgbGJSfx/ZoaSJ0w+e/Wxeel
+DG8KpS+ub5u/7k3ZrWHc+jhpaWZJye3w9rbevVfvZ0RujT8/PWPXtiXLt0Y6a27m
+fM0ZDDec7Rl809tz7Gf/9NX1b9XnaR/GfOna9rb8/Yac3WUD3ZmS++7o6RV7Dsz5
+EZyRiOSzWSXXOu4KBSmSnn/o8b7vr546uT2o4fUzEqJH2kIF40I1jU7xdRld+VVU
+Z/TnPBi49Pna2fffZz5anWit+ja08syNc2sur6qftWpZY1rf5nULag6nL5WGCi60
+DOQu6txyvEU+kfe6eGHPiy/dye3Be/kZQ4XZv+s6Nm4tdDube6f9vIm25D25cfDk
+S+tBw/4Xc52i5ov9wY9N62d/fPhpcKK69g97wj+u
+=VeZ6
+-----END PGP MESSAGE-----
+
+And finally, I am proving ownership of this host by posting or
+appending to this document.
+
+View my publicly-auditable identity here: https://keybase.io/ewpratten
+
+==================================================================
diff --git a/_site/Backup/mobile/index.html b/_site/Backup/mobile/index.html
new file mode 100644
index 0000000..488c250
--- /dev/null
+++ b/_site/Backup/mobile/index.html
@@ -0,0 +1,46 @@
+
+
RetryLife
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/_site/Backup/music/index-mobile.html b/_site/Backup/music/index-mobile.html
new file mode 100644
index 0000000..4319e80
--- /dev/null
+++ b/_site/Backup/music/index-mobile.html
@@ -0,0 +1,41 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/_site/Backup/music/index.html b/_site/Backup/music/index.html
new file mode 100644
index 0000000..6d670c8
--- /dev/null
+++ b/_site/Backup/music/index.html
@@ -0,0 +1,59 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Hey! this isn't our only release. The rest can be found by clicking on the button below.
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/_site/Backup/people.html b/_site/Backup/people.html
new file mode 100644
index 0000000..0bbf7ba
--- /dev/null
+++ b/_site/Backup/people.html
@@ -0,0 +1,79 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Are-O
+
Front-end Developer, Musician, Video Creator
+
+
+
+
+
+
+
+
/\STROBLEME
+
Artist, Musician, Video Creator, Animator
+
+
+
+
+
+
+
+
+
+
+
+
+
+
Russme Music
+
Musician, Video Creator, Composer
+
+
+
+
+
+
+
+
+
Low-key Legend
+
Album Name Creator, Musician
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
diff --git a/_site/Backup/preview.html b/_site/Backup/preview.html
new file mode 100644
index 0000000..3c8d20d
--- /dev/null
+++ b/_site/Backup/preview.html
@@ -0,0 +1 @@
+
diff --git a/_site/Backup/profile.jpg b/_site/Backup/profile.jpg
new file mode 100644
index 0000000..fdf554d
Binary files /dev/null and b/_site/Backup/profile.jpg differ
diff --git a/_site/Backup/projects/projectZERO/README.md b/_site/Backup/projects/projectZERO/README.md
new file mode 100644
index 0000000..c3cccb2
--- /dev/null
+++ b/_site/Backup/projects/projectZERO/README.md
@@ -0,0 +1 @@
+https://rtlcommunity.herokuapp.com/projects/projectZERO
diff --git a/_site/Backup/projects/projectZERO/css/picnic.min.css b/_site/Backup/projects/projectZERO/css/picnic.min.css
new file mode 100644
index 0000000..d35725c
--- /dev/null
+++ b/_site/Backup/projects/projectZERO/css/picnic.min.css
@@ -0,0 +1,2 @@
+/* Picnic CSS v6.4.0 http://picnicss.com/ */
+html{font-family:sans-serif;-ms-text-size-adjust:100%;-webkit-text-size-adjust:100%}body{margin:0}article,aside,details,figcaption,figure,footer,header,hgroup,main,nav,section,summary{display:block}audio,canvas,progress,video{display:inline-block;vertical-align:baseline}audio:not([controls]){display:none;height:0}[hidden],template{display:none}a{background:transparent}a:active,a:hover{outline:0}abbr[title]{border-bottom:1px dotted}b,strong{font-weight:bold}dfn{font-style:italic}h1{font-size:2em;margin:0.67em 0}mark{background:#ff0;color:#000}small{font-size:80%}sub,sup{font-size:75%;line-height:0;position:relative;vertical-align:baseline}sup{top:-0.5em}sub{bottom:-0.25em}img{border:0}svg:not(:root){overflow:hidden}figure{margin:1em 40px}hr{-moz-box-sizing:content-box;box-sizing:content-box;height:0}pre{overflow:auto}code,kbd,pre,samp{font-family:monospace, monospace;font-size:1em}button,input,optgroup,select,textarea{color:inherit;font:inherit;margin:0}button{overflow:visible}button,select{text-transform:none}button,html input[type="button"],input[type="reset"],input[type="submit"]{-webkit-appearance:button;cursor:pointer}button[disabled],input[disabled]{cursor:default}button::-moz-focus-inner,input::-moz-focus-inner{border:0;padding:0}input{line-height:normal}input[type="checkbox"],input[type="radio"]{box-sizing:border-box;padding:0}input[type="number"]::-webkit-inner-spin-button,input[type="number"]::-webkit-outer-spin-button{height:auto}input[type="search"]::-webkit-search-cancel-button,input[type="search"]::-webkit-search-decoration{-webkit-appearance:none}fieldset{border:0;padding:0}legend{border:0;padding:0}textarea{overflow:auto}optgroup{font-weight:bold}table{border-collapse:collapse;border-spacing:0}td,th{padding:0}*{box-sizing:inherit}html,body{font-family:Arial, Helvetica, sans-serif;box-sizing:border-box;height:100%}body{color:#111;font-size:1.1em;line-height:1.5;background:#fff}main{display:block}h1,h2,h3,h4,h5,h6{margin:0;padding:.6em 0}li{margin:0 0 .3em}a{color:#0074d9;text-decoration:none;box-shadow:none;transition:all 0.3s}code{padding:.3em .6em;font-size:.8em;background:#f5f5f5}pre{text-align:left;padding:.3em .6em;background:#f5f5f5;border-radius:.2em}pre code{padding:0}blockquote{padding:0 0 0 1em;margin:0 0 0 .1em;box-shadow:inset 5px 0 rgba(17,17,17,0.3)}label{cursor:pointer}[class^="icon-"]:before,[class*=" icon-"]:before{margin:0 .6em 0 0}i[class^="icon-"]:before,i[class*=" icon-"]:before{margin:0}.label,[data-tooltip]:after,button,.button,[type=submit],.dropimage{display:inline-block;text-align:center;margin:0;padding:.3em .9em;vertical-align:middle;background:#0074d9;color:#fff;border:0;border-radius:.2em;width:auto;-webkit-touch-callout:none;-webkit-user-select:none;-khtml-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none}.success.label,.success[data-tooltip]:after,button.success,.success.button,.success[type=submit],.success.dropimage{background:#2ecc40}.warning.label,.warning[data-tooltip]:after,button.warning,.warning.button,.warning[type=submit],.warning.dropimage{background:#ff851b}.error.label,.error[data-tooltip]:after,button.error,.error.button,.error[type=submit],.error.dropimage{background:#ff4136}.pseudo.label,.pseudo[data-tooltip]:after,button.pseudo,.pseudo.button,.pseudo[type=submit],.pseudo.dropimage{background:transparent;color:#111}.label,[data-tooltip]:after{font-size:.6em;padding:.4em .6em;margin-left:1em;line-height:1}button,.button,[type=submit],.dropimage{margin:.3em 0;cursor:pointer;transition:all 0.3s;border-radius:.2em;height:auto;box-shadow:0 0 transparent inset}button:hover,.button:hover,[type=submit]:hover,.dropimage:hover,button:focus,.button:focus,[type=submit]:focus,.dropimage:focus{box-shadow:inset 0 0 0 99em rgba(255,255,255,0.2);border:0}button.pseudo:hover,.pseudo.button:hover,.pseudo[type=submit]:hover,.pseudo.dropimage:hover,button.pseudo:focus,.pseudo.button:focus,.pseudo[type=submit]:focus,.pseudo.dropimage:focus{box-shadow:inset 0 0 0 99em rgba(17,17,17,0.1)}button.active,.active.button,.active[type=submit],.active.dropimage,button:active,.button:active,[type=submit]:active,.dropimage:active,button.pseudo:active,.pseudo.button:active,.pseudo[type=submit]:active,.pseudo.dropimage:active{box-shadow:inset 0 0 0 99em rgba(17,17,17,0.2)}button[disabled],[disabled].button,[disabled][type=submit],[disabled].dropimage{cursor:default;box-shadow:none;background:#bbb}:checked+.toggle,:checked+.toggle:hover{box-shadow:inset 0 0 0 99em rgba(17,17,17,0.2)}[type]+.toggle{padding:.3em .9em;margin-right:0}[type]+.toggle:after,[type]+.toggle:before{display:none}input,textarea,.select select{line-height:1.5;margin:0;height:2.1em;padding:.3em .6em;border:1px solid #ccc;background-color:#fff;border-radius:.2em;transition:all 0.3s;width:100%}input:focus,textarea:focus,.select select:focus{border:1px solid #0074d9;outline:0}textarea{height:auto}[type=file],[type=color]{cursor:pointer}[type=file]{height:auto}select{background:#fff url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSIyIiBoZWlnaHQ9IjMiPjxwYXRoIGQ9Im0gMCwxIDEsMiAxLC0yIHoiLz48L3N2Zz4=) no-repeat scroll 95% center/10px 15px;background-position:calc(100% - 15px) center;border:1px solid #ccc;border-radius:.2em;cursor:pointer;width:100%;height:2.1em;box-sizing:border-box;padding:.3em .45em;transition:all .3s;-moz-appearance:none;-webkit-appearance:none;appearance:none}select::-ms-expand{display:none}select:focus,select:active{border:1px solid #0074d9;transition:outline 0s}select:-moz-focusring{color:transparent;text-shadow:0 0 0 #111}select option{font-size:inherit;padding:.3em .45em}[type=radio],[type=checkbox]{opacity:0;width:0;position:absolute;display:inline-block}[type=radio]+.checkable:hover:before,[type=checkbox]+.checkable:hover:before,[type=radio]:focus+.checkable:before,[type=checkbox]:focus+.checkable:before{border:1px solid #0074d9}[type=radio]+.checkable,[type=checkbox]+.checkable{position:relative;cursor:pointer;padding-left:1.5em;margin-right:.6em}[type=radio]+.checkable:before,[type=checkbox]+.checkable:before,[type=radio]+.checkable:after,[type=checkbox]+.checkable:after{content:'';position:absolute;display:inline-block;left:0;top:50%;transform:translateY(-50%);font-size:1em;line-height:1em;color:transparent;font-family:sans;text-align:center;box-sizing:border-box;width:1em;height:1em;border-radius:50%;transition:all 0.3s}[type=radio]+.checkable:before,[type=checkbox]+.checkable:before{border:1px solid #aaa}[type=radio]:checked+.checkable:after,[type=checkbox]:checked+.checkable:after{background:#555;transform:scale(0.5) translateY(-100%)}[type=checkbox]+.checkable:before{border-radius:.2em}[type=checkbox]+.checkable:after{content:"✔";background:none;transform:scale(2) translateY(-25%);visibility:hidden;opacity:0}[type=checkbox]:checked+.checkable:after{color:#111;background:none;transform:translateY(-50%);transition:all 0.3s;visibility:visible;opacity:1}table{text-align:left}td,th{padding:.3em 2.4em .3em .6em}th{text-align:left;font-weight:900;color:#fff;background-color:#0074d9}.success th{background-color:#2ecc40}.warning th{background-color:#ff851b}.error th{background-color:#ff4136}.dull th{background-color:#aaa}tr:nth-child(even){background:rgba(0,0,0,0.05)}.flex{display:-ms-flexbox;display:flex;margin-left:-0.6em;width:calc(100% + .6em);flex-wrap:wrap;transition:all .3s ease}.flex>*{box-sizing:border-box;flex:1 1 auto;padding-left:.6em;padding-bottom:.6em}.flex[class*="one"]>*,.flex[class*="two"]>*,.flex[class*="three"]>*,.flex[class*="four"]>*,.flex[class*="five"]>*,.flex[class*="six"]>*,.flex[class*="seven"]>*,.flex[class*="eight"]>*,.flex[class*="nine"]>*,.flex[class*="ten"]>*,.flex[class*="eleven"]>*,.flex[class*="twelve"]>*{flex-grow:0}.flex.grow>*{flex-grow:1}.center{justify-content:center}.one>*{width:100%}.two>*{width:50%}.three>*{width:33.33333%}.four>*{width:25%}.five>*{width:20%}.six>*{width:16.66666%}.seven>*{width:14.28571%}.eight>*{width:12.5%}.nine>*{width:11.11111%}.ten>*{width:10%}.eleven>*{width:9.09091%}.twelve>*{width:8.33333%}@media all and (min-width: 500px){.one-500>*{width:100%}.two-500>*{width:50%}.three-500>*{width:33.33333%}.four-500>*{width:25%}.five-500>*{width:20%}.six-500>*{width:16.66666%}.seven-500>*{width:14.28571%}.eight-500>*{width:12.5%}.nine-500>*{width:11.11111%}.ten-500>*{width:10%}.eleven-500>*{width:9.09091%}.twelve-500>*{width:8.33333%}}@media all and (min-width: 600px){.one-600>*{width:100%}.two-600>*{width:50%}.three-600>*{width:33.33333%}.four-600>*{width:25%}.five-600>*{width:20%}.six-600>*{width:16.66666%}.seven-600>*{width:14.28571%}.eight-600>*{width:12.5%}.nine-600>*{width:11.11111%}.ten-600>*{width:10%}.eleven-600>*{width:9.09091%}.twelve-600>*{width:8.33333%}}@media all and (min-width: 700px){.one-700>*{width:100%}.two-700>*{width:50%}.three-700>*{width:33.33333%}.four-700>*{width:25%}.five-700>*{width:20%}.six-700>*{width:16.66666%}.seven-700>*{width:14.28571%}.eight-700>*{width:12.5%}.nine-700>*{width:11.11111%}.ten-700>*{width:10%}.eleven-700>*{width:9.09091%}.twelve-700>*{width:8.33333%}}@media all and (min-width: 800px){.one-800>*{width:100%}.two-800>*{width:50%}.three-800>*{width:33.33333%}.four-800>*{width:25%}.five-800>*{width:20%}.six-800>*{width:16.66666%}.seven-800>*{width:14.28571%}.eight-800>*{width:12.5%}.nine-800>*{width:11.11111%}.ten-800>*{width:10%}.eleven-800>*{width:9.09091%}.twelve-800>*{width:8.33333%}}@media all and (min-width: 900px){.one-900>*{width:100%}.two-900>*{width:50%}.three-900>*{width:33.33333%}.four-900>*{width:25%}.five-900>*{width:20%}.six-900>*{width:16.66666%}.seven-900>*{width:14.28571%}.eight-900>*{width:12.5%}.nine-900>*{width:11.11111%}.ten-900>*{width:10%}.eleven-900>*{width:9.09091%}.twelve-900>*{width:8.33333%}}@media all and (min-width: 1000px){.one-1000>*{width:100%}.two-1000>*{width:50%}.three-1000>*{width:33.33333%}.four-1000>*{width:25%}.five-1000>*{width:20%}.six-1000>*{width:16.66666%}.seven-1000>*{width:14.28571%}.eight-1000>*{width:12.5%}.nine-1000>*{width:11.11111%}.ten-1000>*{width:10%}.eleven-1000>*{width:9.09091%}.twelve-1000>*{width:8.33333%}}@media all and (min-width: 1100px){.one-1100>*{width:100%}.two-1100>*{width:50%}.three-1100>*{width:33.33333%}.four-1100>*{width:25%}.five-1100>*{width:20%}.six-1100>*{width:16.66666%}.seven-1100>*{width:14.28571%}.eight-1100>*{width:12.5%}.nine-1100>*{width:11.11111%}.ten-1100>*{width:10%}.eleven-1100>*{width:9.09091%}.twelve-1100>*{width:8.33333%}}@media all and (min-width: 1200px){.one-1200>*{width:100%}.two-1200>*{width:50%}.three-1200>*{width:33.33333%}.four-1200>*{width:25%}.five-1200>*{width:20%}.six-1200>*{width:16.66666%}.seven-1200>*{width:14.28571%}.eight-1200>*{width:12.5%}.nine-1200>*{width:11.11111%}.ten-1200>*{width:10%}.eleven-1200>*{width:9.09091%}.twelve-1200>*{width:8.33333%}}@media all and (min-width: 1300px){.one-1300>*{width:100%}.two-1300>*{width:50%}.three-1300>*{width:33.33333%}.four-1300>*{width:25%}.five-1300>*{width:20%}.six-1300>*{width:16.66666%}.seven-1300>*{width:14.28571%}.eight-1300>*{width:12.5%}.nine-1300>*{width:11.11111%}.ten-1300>*{width:10%}.eleven-1300>*{width:9.09091%}.twelve-1300>*{width:8.33333%}}@media all and (min-width: 1400px){.one-1400>*{width:100%}.two-1400>*{width:50%}.three-1400>*{width:33.33333%}.four-1400>*{width:25%}.five-1400>*{width:20%}.six-1400>*{width:16.66666%}.seven-1400>*{width:14.28571%}.eight-1400>*{width:12.5%}.nine-1400>*{width:11.11111%}.ten-1400>*{width:10%}.eleven-1400>*{width:9.09091%}.twelve-1400>*{width:8.33333%}}@media all and (min-width: 1500px){.one-1500>*{width:100%}.two-1500>*{width:50%}.three-1500>*{width:33.33333%}.four-1500>*{width:25%}.five-1500>*{width:20%}.six-1500>*{width:16.66666%}.seven-1500>*{width:14.28571%}.eight-1500>*{width:12.5%}.nine-1500>*{width:11.11111%}.ten-1500>*{width:10%}.eleven-1500>*{width:9.09091%}.twelve-1500>*{width:8.33333%}}@media all and (min-width: 1600px){.one-1600>*{width:100%}.two-1600>*{width:50%}.three-1600>*{width:33.33333%}.four-1600>*{width:25%}.five-1600>*{width:20%}.six-1600>*{width:16.66666%}.seven-1600>*{width:14.28571%}.eight-1600>*{width:12.5%}.nine-1600>*{width:11.11111%}.ten-1600>*{width:10%}.eleven-1600>*{width:9.09091%}.twelve-1600>*{width:8.33333%}}@media all and (min-width: 1700px){.one-1700>*{width:100%}.two-1700>*{width:50%}.three-1700>*{width:33.33333%}.four-1700>*{width:25%}.five-1700>*{width:20%}.six-1700>*{width:16.66666%}.seven-1700>*{width:14.28571%}.eight-1700>*{width:12.5%}.nine-1700>*{width:11.11111%}.ten-1700>*{width:10%}.eleven-1700>*{width:9.09091%}.twelve-1700>*{width:8.33333%}}@media all and (min-width: 1800px){.one-1800>*{width:100%}.two-1800>*{width:50%}.three-1800>*{width:33.33333%}.four-1800>*{width:25%}.five-1800>*{width:20%}.six-1800>*{width:16.66666%}.seven-1800>*{width:14.28571%}.eight-1800>*{width:12.5%}.nine-1800>*{width:11.11111%}.ten-1800>*{width:10%}.eleven-1800>*{width:9.09091%}.twelve-1800>*{width:8.33333%}}@media all and (min-width: 1900px){.one-1900>*{width:100%}.two-1900>*{width:50%}.three-1900>*{width:33.33333%}.four-1900>*{width:25%}.five-1900>*{width:20%}.six-1900>*{width:16.66666%}.seven-1900>*{width:14.28571%}.eight-1900>*{width:12.5%}.nine-1900>*{width:11.11111%}.ten-1900>*{width:10%}.eleven-1900>*{width:9.09091%}.twelve-1900>*{width:8.33333%}}@media all and (min-width: 2000px){.one-2000>*{width:100%}.two-2000>*{width:50%}.three-2000>*{width:33.33333%}.four-2000>*{width:25%}.five-2000>*{width:20%}.six-2000>*{width:16.66666%}.seven-2000>*{width:14.28571%}.eight-2000>*{width:12.5%}.nine-2000>*{width:11.11111%}.ten-2000>*{width:10%}.eleven-2000>*{width:9.09091%}.twelve-2000>*{width:8.33333%}}.full{width:100%}.half{width:50%}.third{width:33.33333%}.two-third{width:66.66666%}.fourth{width:25%}.three-fourth{width:75%}.fifth{width:20%}.two-fifth{width:40%}.three-fifth{width:60%}.four-fifth{width:80%}.sixth{width:16.66666%}.none{display:none}@media all and (min-width: 500px){.full-500{width:100%;display:block}.half-500{width:50%;display:block}.third-500{width:33.33333%;display:block}.two-third-500{width:66.66666%;display:block}.fourth-500{width:25%;display:block}.three-fourth-500{width:75%;display:block}.fifth-500{width:20%;display:block}.two-fifth-500{width:40%;display:block}.three-fifth-500{width:60%;display:block}.four-fifth-500{width:80%;display:block}.sixth-500{width:16.66666%;display:block}}@media all and (min-width: 600px){.full-600{width:100%;display:block}.half-600{width:50%;display:block}.third-600{width:33.33333%;display:block}.two-third-600{width:66.66666%;display:block}.fourth-600{width:25%;display:block}.three-fourth-600{width:75%;display:block}.fifth-600{width:20%;display:block}.two-fifth-600{width:40%;display:block}.three-fifth-600{width:60%;display:block}.four-fifth-600{width:80%;display:block}.sixth-600{width:16.66666%;display:block}}@media all and (min-width: 700px){.full-700{width:100%;display:block}.half-700{width:50%;display:block}.third-700{width:33.33333%;display:block}.two-third-700{width:66.66666%;display:block}.fourth-700{width:25%;display:block}.three-fourth-700{width:75%;display:block}.fifth-700{width:20%;display:block}.two-fifth-700{width:40%;display:block}.three-fifth-700{width:60%;display:block}.four-fifth-700{width:80%;display:block}.sixth-700{width:16.66666%;display:block}}@media all and (min-width: 800px){.full-800{width:100%;display:block}.half-800{width:50%;display:block}.third-800{width:33.33333%;display:block}.two-third-800{width:66.66666%;display:block}.fourth-800{width:25%;display:block}.three-fourth-800{width:75%;display:block}.fifth-800{width:20%;display:block}.two-fifth-800{width:40%;display:block}.three-fifth-800{width:60%;display:block}.four-fifth-800{width:80%;display:block}.sixth-800{width:16.66666%;display:block}}@media all and (min-width: 900px){.full-900{width:100%;display:block}.half-900{width:50%;display:block}.third-900{width:33.33333%;display:block}.two-third-900{width:66.66666%;display:block}.fourth-900{width:25%;display:block}.three-fourth-900{width:75%;display:block}.fifth-900{width:20%;display:block}.two-fifth-900{width:40%;display:block}.three-fifth-900{width:60%;display:block}.four-fifth-900{width:80%;display:block}.sixth-900{width:16.66666%;display:block}}@media all and (min-width: 1000px){.full-1000{width:100%;display:block}.half-1000{width:50%;display:block}.third-1000{width:33.33333%;display:block}.two-third-1000{width:66.66666%;display:block}.fourth-1000{width:25%;display:block}.three-fourth-1000{width:75%;display:block}.fifth-1000{width:20%;display:block}.two-fifth-1000{width:40%;display:block}.three-fifth-1000{width:60%;display:block}.four-fifth-1000{width:80%;display:block}.sixth-1000{width:16.66666%;display:block}}@media all and (min-width: 1100px){.full-1100{width:100%;display:block}.half-1100{width:50%;display:block}.third-1100{width:33.33333%;display:block}.two-third-1100{width:66.66666%;display:block}.fourth-1100{width:25%;display:block}.three-fourth-1100{width:75%;display:block}.fifth-1100{width:20%;display:block}.two-fifth-1100{width:40%;display:block}.three-fifth-1100{width:60%;display:block}.four-fifth-1100{width:80%;display:block}.sixth-1100{width:16.66666%;display:block}}@media all and (min-width: 1200px){.full-1200{width:100%;display:block}.half-1200{width:50%;display:block}.third-1200{width:33.33333%;display:block}.two-third-1200{width:66.66666%;display:block}.fourth-1200{width:25%;display:block}.three-fourth-1200{width:75%;display:block}.fifth-1200{width:20%;display:block}.two-fifth-1200{width:40%;display:block}.three-fifth-1200{width:60%;display:block}.four-fifth-1200{width:80%;display:block}.sixth-1200{width:16.66666%;display:block}}@media all and (min-width: 1300px){.full-1300{width:100%;display:block}.half-1300{width:50%;display:block}.third-1300{width:33.33333%;display:block}.two-third-1300{width:66.66666%;display:block}.fourth-1300{width:25%;display:block}.three-fourth-1300{width:75%;display:block}.fifth-1300{width:20%;display:block}.two-fifth-1300{width:40%;display:block}.three-fifth-1300{width:60%;display:block}.four-fifth-1300{width:80%;display:block}.sixth-1300{width:16.66666%;display:block}}@media all and (min-width: 1400px){.full-1400{width:100%;display:block}.half-1400{width:50%;display:block}.third-1400{width:33.33333%;display:block}.two-third-1400{width:66.66666%;display:block}.fourth-1400{width:25%;display:block}.three-fourth-1400{width:75%;display:block}.fifth-1400{width:20%;display:block}.two-fifth-1400{width:40%;display:block}.three-fifth-1400{width:60%;display:block}.four-fifth-1400{width:80%;display:block}.sixth-1400{width:16.66666%;display:block}}@media all and (min-width: 1500px){.full-1500{width:100%;display:block}.half-1500{width:50%;display:block}.third-1500{width:33.33333%;display:block}.two-third-1500{width:66.66666%;display:block}.fourth-1500{width:25%;display:block}.three-fourth-1500{width:75%;display:block}.fifth-1500{width:20%;display:block}.two-fifth-1500{width:40%;display:block}.three-fifth-1500{width:60%;display:block}.four-fifth-1500{width:80%;display:block}.sixth-1500{width:16.66666%;display:block}}@media all and (min-width: 1600px){.full-1600{width:100%;display:block}.half-1600{width:50%;display:block}.third-1600{width:33.33333%;display:block}.two-third-1600{width:66.66666%;display:block}.fourth-1600{width:25%;display:block}.three-fourth-1600{width:75%;display:block}.fifth-1600{width:20%;display:block}.two-fifth-1600{width:40%;display:block}.three-fifth-1600{width:60%;display:block}.four-fifth-1600{width:80%;display:block}.sixth-1600{width:16.66666%;display:block}}@media all and (min-width: 1700px){.full-1700{width:100%;display:block}.half-1700{width:50%;display:block}.third-1700{width:33.33333%;display:block}.two-third-1700{width:66.66666%;display:block}.fourth-1700{width:25%;display:block}.three-fourth-1700{width:75%;display:block}.fifth-1700{width:20%;display:block}.two-fifth-1700{width:40%;display:block}.three-fifth-1700{width:60%;display:block}.four-fifth-1700{width:80%;display:block}.sixth-1700{width:16.66666%;display:block}}@media all and (min-width: 1800px){.full-1800{width:100%;display:block}.half-1800{width:50%;display:block}.third-1800{width:33.33333%;display:block}.two-third-1800{width:66.66666%;display:block}.fourth-1800{width:25%;display:block}.three-fourth-1800{width:75%;display:block}.fifth-1800{width:20%;display:block}.two-fifth-1800{width:40%;display:block}.three-fifth-1800{width:60%;display:block}.four-fifth-1800{width:80%;display:block}.sixth-1800{width:16.66666%;display:block}}@media all and (min-width: 1900px){.full-1900{width:100%;display:block}.half-1900{width:50%;display:block}.third-1900{width:33.33333%;display:block}.two-third-1900{width:66.66666%;display:block}.fourth-1900{width:25%;display:block}.three-fourth-1900{width:75%;display:block}.fifth-1900{width:20%;display:block}.two-fifth-1900{width:40%;display:block}.three-fifth-1900{width:60%;display:block}.four-fifth-1900{width:80%;display:block}.sixth-1900{width:16.66666%;display:block}}@media all and (min-width: 2000px){.full-2000{width:100%;display:block}.half-2000{width:50%;display:block}.third-2000{width:33.33333%;display:block}.two-third-2000{width:66.66666%;display:block}.fourth-2000{width:25%;display:block}.three-fourth-2000{width:75%;display:block}.fifth-2000{width:20%;display:block}.two-fifth-2000{width:40%;display:block}.three-fifth-2000{width:60%;display:block}.four-fifth-2000{width:80%;display:block}.sixth-2000{width:16.66666%;display:block}}@media all and (min-width: 500px){.none-500{display:none}}@media all and (min-width: 600px){.none-600{display:none}}@media all and (min-width: 700px){.none-700{display:none}}@media all and (min-width: 800px){.none-800{display:none}}@media all and (min-width: 900px){.none-900{display:none}}@media all and (min-width: 1000px){.none-1000{display:none}}@media all and (min-width: 1100px){.none-1100{display:none}}@media all and (min-width: 1200px){.none-1200{display:none}}@media all and (min-width: 1300px){.none-1300{display:none}}@media all and (min-width: 1400px){.none-1400{display:none}}@media all and (min-width: 1500px){.none-1500{display:none}}@media all and (min-width: 1600px){.none-1600{display:none}}@media all and (min-width: 1700px){.none-1700{display:none}}@media all and (min-width: 1800px){.none-1800{display:none}}@media all and (min-width: 1900px){.none-1900{display:none}}@media all and (min-width: 2000px){.none-2000{display:none}}.off-none{margin-left:0}.off-half{margin-left:50%}.off-third{margin-left:33.33333%}.off-two-third{margin-left:66.66666%}.off-fourth{margin-left:25%}.off-three-fourth{margin-left:75%}.off-fifth{margin-left:20%}.off-two-fifth{margin-left:40%}.off-three-fifth{margin-left:60%}.off-four-fifth{margin-left:80%}.off-sixth{margin-left:16.66666%}@media all and (min-width: 500px){.off-none-500{margin-left:0}.off-half-500{margin-left:50%}.off-third-500{margin-left:33.33333%}.off-two-third-500{margin-left:66.66666%}.off-fourth-500{margin-left:25%}.off-three-fourth-500{margin-left:75%}.off-fifth-500{margin-left:20%}.off-two-fifth-500{margin-left:40%}.off-three-fifth-500{margin-left:60%}.off-four-fifth-500{margin-left:80%}.off-sixth-500{margin-left:16.66666%}}@media all and (min-width: 600px){.off-none-600{margin-left:0}.off-half-600{margin-left:50%}.off-third-600{margin-left:33.33333%}.off-two-third-600{margin-left:66.66666%}.off-fourth-600{margin-left:25%}.off-three-fourth-600{margin-left:75%}.off-fifth-600{margin-left:20%}.off-two-fifth-600{margin-left:40%}.off-three-fifth-600{margin-left:60%}.off-four-fifth-600{margin-left:80%}.off-sixth-600{margin-left:16.66666%}}@media all and (min-width: 700px){.off-none-700{margin-left:0}.off-half-700{margin-left:50%}.off-third-700{margin-left:33.33333%}.off-two-third-700{margin-left:66.66666%}.off-fourth-700{margin-left:25%}.off-three-fourth-700{margin-left:75%}.off-fifth-700{margin-left:20%}.off-two-fifth-700{margin-left:40%}.off-three-fifth-700{margin-left:60%}.off-four-fifth-700{margin-left:80%}.off-sixth-700{margin-left:16.66666%}}@media all and (min-width: 800px){.off-none-800{margin-left:0}.off-half-800{margin-left:50%}.off-third-800{margin-left:33.33333%}.off-two-third-800{margin-left:66.66666%}.off-fourth-800{margin-left:25%}.off-three-fourth-800{margin-left:75%}.off-fifth-800{margin-left:20%}.off-two-fifth-800{margin-left:40%}.off-three-fifth-800{margin-left:60%}.off-four-fifth-800{margin-left:80%}.off-sixth-800{margin-left:16.66666%}}@media all and (min-width: 900px){.off-none-900{margin-left:0}.off-half-900{margin-left:50%}.off-third-900{margin-left:33.33333%}.off-two-third-900{margin-left:66.66666%}.off-fourth-900{margin-left:25%}.off-three-fourth-900{margin-left:75%}.off-fifth-900{margin-left:20%}.off-two-fifth-900{margin-left:40%}.off-three-fifth-900{margin-left:60%}.off-four-fifth-900{margin-left:80%}.off-sixth-900{margin-left:16.66666%}}@media all and (min-width: 1000px){.off-none-1000{margin-left:0}.off-half-1000{margin-left:50%}.off-third-1000{margin-left:33.33333%}.off-two-third-1000{margin-left:66.66666%}.off-fourth-1000{margin-left:25%}.off-three-fourth-1000{margin-left:75%}.off-fifth-1000{margin-left:20%}.off-two-fifth-1000{margin-left:40%}.off-three-fifth-1000{margin-left:60%}.off-four-fifth-1000{margin-left:80%}.off-sixth-1000{margin-left:16.66666%}}@media all and (min-width: 1100px){.off-none-1100{margin-left:0}.off-half-1100{margin-left:50%}.off-third-1100{margin-left:33.33333%}.off-two-third-1100{margin-left:66.66666%}.off-fourth-1100{margin-left:25%}.off-three-fourth-1100{margin-left:75%}.off-fifth-1100{margin-left:20%}.off-two-fifth-1100{margin-left:40%}.off-three-fifth-1100{margin-left:60%}.off-four-fifth-1100{margin-left:80%}.off-sixth-1100{margin-left:16.66666%}}@media all and (min-width: 1200px){.off-none-1200{margin-left:0}.off-half-1200{margin-left:50%}.off-third-1200{margin-left:33.33333%}.off-two-third-1200{margin-left:66.66666%}.off-fourth-1200{margin-left:25%}.off-three-fourth-1200{margin-left:75%}.off-fifth-1200{margin-left:20%}.off-two-fifth-1200{margin-left:40%}.off-three-fifth-1200{margin-left:60%}.off-four-fifth-1200{margin-left:80%}.off-sixth-1200{margin-left:16.66666%}}@media all and (min-width: 1300px){.off-none-1300{margin-left:0}.off-half-1300{margin-left:50%}.off-third-1300{margin-left:33.33333%}.off-two-third-1300{margin-left:66.66666%}.off-fourth-1300{margin-left:25%}.off-three-fourth-1300{margin-left:75%}.off-fifth-1300{margin-left:20%}.off-two-fifth-1300{margin-left:40%}.off-three-fifth-1300{margin-left:60%}.off-four-fifth-1300{margin-left:80%}.off-sixth-1300{margin-left:16.66666%}}@media all and (min-width: 1400px){.off-none-1400{margin-left:0}.off-half-1400{margin-left:50%}.off-third-1400{margin-left:33.33333%}.off-two-third-1400{margin-left:66.66666%}.off-fourth-1400{margin-left:25%}.off-three-fourth-1400{margin-left:75%}.off-fifth-1400{margin-left:20%}.off-two-fifth-1400{margin-left:40%}.off-three-fifth-1400{margin-left:60%}.off-four-fifth-1400{margin-left:80%}.off-sixth-1400{margin-left:16.66666%}}@media all and (min-width: 1500px){.off-none-1500{margin-left:0}.off-half-1500{margin-left:50%}.off-third-1500{margin-left:33.33333%}.off-two-third-1500{margin-left:66.66666%}.off-fourth-1500{margin-left:25%}.off-three-fourth-1500{margin-left:75%}.off-fifth-1500{margin-left:20%}.off-two-fifth-1500{margin-left:40%}.off-three-fifth-1500{margin-left:60%}.off-four-fifth-1500{margin-left:80%}.off-sixth-1500{margin-left:16.66666%}}@media all and (min-width: 1600px){.off-none-1600{margin-left:0}.off-half-1600{margin-left:50%}.off-third-1600{margin-left:33.33333%}.off-two-third-1600{margin-left:66.66666%}.off-fourth-1600{margin-left:25%}.off-three-fourth-1600{margin-left:75%}.off-fifth-1600{margin-left:20%}.off-two-fifth-1600{margin-left:40%}.off-three-fifth-1600{margin-left:60%}.off-four-fifth-1600{margin-left:80%}.off-sixth-1600{margin-left:16.66666%}}@media all and (min-width: 1700px){.off-none-1700{margin-left:0}.off-half-1700{margin-left:50%}.off-third-1700{margin-left:33.33333%}.off-two-third-1700{margin-left:66.66666%}.off-fourth-1700{margin-left:25%}.off-three-fourth-1700{margin-left:75%}.off-fifth-1700{margin-left:20%}.off-two-fifth-1700{margin-left:40%}.off-three-fifth-1700{margin-left:60%}.off-four-fifth-1700{margin-left:80%}.off-sixth-1700{margin-left:16.66666%}}@media all and (min-width: 1800px){.off-none-1800{margin-left:0}.off-half-1800{margin-left:50%}.off-third-1800{margin-left:33.33333%}.off-two-third-1800{margin-left:66.66666%}.off-fourth-1800{margin-left:25%}.off-three-fourth-1800{margin-left:75%}.off-fifth-1800{margin-left:20%}.off-two-fifth-1800{margin-left:40%}.off-three-fifth-1800{margin-left:60%}.off-four-fifth-1800{margin-left:80%}.off-sixth-1800{margin-left:16.66666%}}@media all and (min-width: 1900px){.off-none-1900{margin-left:0}.off-half-1900{margin-left:50%}.off-third-1900{margin-left:33.33333%}.off-two-third-1900{margin-left:66.66666%}.off-fourth-1900{margin-left:25%}.off-three-fourth-1900{margin-left:75%}.off-fifth-1900{margin-left:20%}.off-two-fifth-1900{margin-left:40%}.off-three-fifth-1900{margin-left:60%}.off-four-fifth-1900{margin-left:80%}.off-sixth-1900{margin-left:16.66666%}}@media all and (min-width: 2000px){.off-none-2000{margin-left:0}.off-half-2000{margin-left:50%}.off-third-2000{margin-left:33.33333%}.off-two-third-2000{margin-left:66.66666%}.off-fourth-2000{margin-left:25%}.off-three-fourth-2000{margin-left:75%}.off-fifth-2000{margin-left:20%}.off-two-fifth-2000{margin-left:40%}.off-three-fifth-2000{margin-left:60%}.off-four-fifth-2000{margin-left:80%}.off-sixth-2000{margin-left:16.66666%}}nav{position:fixed;top:0;left:0;right:0;height:3em;padding:0 .6em;background:#fff;box-shadow:0 0 0.2em rgba(17,17,17,0.2);z-index:10000;transition:all .3s;transform-style:preserve-3d}nav .brand,nav .menu,nav .burger{float:right;position:relative;top:50%;-webkit-transform:translateY(-50%);transform:translateY(-50%)}nav .brand{font-weight:700;float:left;padding:0 .6em;max-width:50%;white-space:nowrap;color:#111}nav .brand *{vertical-align:middle}nav .logo{height:2em;margin-right:.3em}nav .select::after{height:calc(100% - 1px);padding:0;line-height:2.4em}nav .menu>*{margin-right:.6em}nav .burger{display:none}@media all and (max-width: 60em){nav .burger{display:inline-block;cursor:pointer;bottom:-1000em;margin:0}nav .burger ~ .menu,nav .show:checked ~ .burger{position:fixed;min-height:100%;width:0;overflow:hidden;top:0;right:0;bottom:-1000em;margin:0;background:#fff;transition:all .3s ease;transform:none}nav .burger ~ .menu{z-index:11}nav .show:checked ~ .burger{color:transparent;width:100%;border-radius:0;background:rgba(0,0,0,0.2);transition:all .3s ease}nav .show:checked ~ .menu{width:70%;overflow:auto;transition:all .3s ease;height:100vh}nav .burger ~ .menu>*{display:block;margin:.3em;text-align:left;max-width:calc(100% - .6em)}nav .burger ~ .menu>a{padding:.3em .9em}}.stack,.stack .toggle{margin-top:0;margin-bottom:0;display:block;width:100%;text-align:left;border-radius:0}.stack:first-child,.stack:first-child .toggle{border-top-left-radius:.2em;border-top-right-radius:.2em}.stack:last-child,.stack:last-child .toggle{border-bottom-left-radius:.2em;border-bottom-right-radius:.2em}input.stack,textarea.stack,select.stack{transition:border-bottom 0 ease 0;border-bottom-width:0}input.stack:last-child,textarea.stack:last-child,select.stack:last-child{border-bottom-width:1px}input.stack:focus+input,input.stack:focus+textarea,input.stack:focus+select,textarea.stack:focus+input,textarea.stack:focus+textarea,textarea.stack:focus+select,select.stack:focus+input,select.stack:focus+textarea,select.stack:focus+select{border-top-color:#0074d9}.card,.modal .overlay ~ *{position:relative;box-shadow:0;border-radius:.2em;border:1px solid #ccc;overflow:hidden;text-align:left;background:#fff;margin-bottom:.6em;padding:0;transition:all .3s ease}.hidden.card,.modal .overlay ~ .hidden,:checked+.card,.modal .overlay ~ :checked+*,.modal .overlay:checked+*{font-size:0;padding:0;margin:0;border:0}.card>*,.modal .overlay ~ *>*{max-width:100%;display:block}.card>*:last-child,.modal .overlay ~ *>*:last-child{margin-bottom:0}.card header,.modal .overlay ~ * header,.card section,.modal .overlay ~ * section,.card>p,.modal .overlay ~ *>p{padding:.6em .8em}.card section,.modal .overlay ~ * section{padding:.6em .8em 0}.card hr,.modal .overlay ~ * hr{border:none;height:1px;background-color:#eee}.card header,.modal .overlay ~ * header{font-weight:bold;position:relative;border-bottom:1px solid #eee}.card header h1,.modal .overlay ~ * header h1,.card header h2,.modal .overlay ~ * header h2,.card header h3,.modal .overlay ~ * header h3,.card header h4,.modal .overlay ~ * header h4,.card header h5,.modal .overlay ~ * header h5,.card header h6,.modal .overlay ~ * header h6{padding:0;margin:0 2em 0 0;line-height:1;display:inline-block;vertical-align:text-bottom}.card header:last-child,.modal .overlay ~ * header:last-child{border-bottom:0}.card footer,.modal .overlay ~ * footer{padding:.8em}.card p,.modal .overlay ~ * p{margin:.3em 0}.card p:first-child,.modal .overlay ~ * p:first-child{margin-top:0}.card p:last-child,.modal .overlay ~ * p:last-child{margin-bottom:0}.card>p,.modal .overlay ~ *>p{margin:0;padding-right:2.5em}.card .close,.modal .overlay ~ * .close{position:absolute;top:.4em;right:.3em;font-size:1.2em;padding:0 .5em;cursor:pointer;width:auto}.card .close:hover,.modal .overlay ~ * .close:hover{color:#ff4136}.card h1+.close,.modal .overlay ~ * h1+.close{margin:.2em}.card h2+.close,.modal .overlay ~ * h2+.close{margin:.1em}.card .dangerous,.modal .overlay ~ * .dangerous{background:#ff4136;float:right}.modal{text-align:center}.modal>input{display:none}.modal>input ~ *{opacity:0;max-height:0;overflow:hidden}.modal .overlay{top:0;left:0;bottom:0;right:0;position:fixed;margin:0;border-radius:0;background:rgba(17,17,17,0.6);transition:all 0.3s;z-index:100000}.modal .overlay:before,.modal .overlay:after{display:none}.modal .overlay ~ *{border:0;position:fixed;top:50%;left:50%;transform:translateX(-50%) translateY(-50%) scale(0.2, 0.2);z-index:1000000;transition:all 0.3s}.modal>input:checked ~ *{display:block;opacity:1;max-height:10000px;transition:all 0.3s}.modal>input:checked ~ .overlay ~ *{max-height:90%;overflow:auto;-webkit-transform:translateX(-50%) translateY(-50%) scale(1, 1);transform:translateX(-50%) translateY(-50%) scale(1, 1)}@media (max-width: 60em){.modal .overlay ~ *{min-width:90%}}.dropimage{position:relative;display:block;padding:0;padding-bottom:56.25%;overflow:hidden;cursor:pointer;border:0;margin:.3em 0;border-radius:.2em;background-color:#ddd;background-size:cover;background-position:center center;background-image:url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHdpZHRoPSI2NDAiIGhlaWdodD0iNjQwIiB2ZXJzaW9uPSIxLjEiPjxnIHN0eWxlPSJmaWxsOiMzMzMiPjxwYXRoIGQ9Ik0gMTg3IDIzMCBDIDE3NSAyMzAgMTY1IDI0MCAxNjUgMjUyIEwgMTY1IDMwMCBMIDE2NSA0MDggQyAxNjUgNDIwIDE3NSA0MzAgMTg3IDQzMCBMIDQ2MyA0MzAgQyA0NzUgNDMwIDQ4NSA0MjAgNDg1IDQwOCBMIDQ4NSAzMDAgTCA0ODUgMjUyIEMgNDg1IDI0MCA0NzUgMjMwIDQ2MyAyMzAgTCAxODcgMjMwIHogTSAzNjAgMjU2IEEgNzAgNzIgMCAwIDEgNDMwIDMyOCBBIDcwIDcyIDAgMCAxIDM2MCA0MDAgQSA3MCA3MiAwIDAgMSAyOTAgMzI4IEEgNzAgNzIgMCAwIDEgMzYwIDI1NiB6Ii8+PGNpcmNsZSBjeD0iMzYwIiBjeT0iMzMwIiByPSI0MSIvPjxwYXRoIGQ9Im0yMDUgMjI1IDUtMTAgMjAgMCA1IDEwLTMwIDAiLz48cGF0aCBkPSJNMjg1IDIwMEwyNzAgMjI1IDM3NiAyMjUgMzYxIDIwMCAyODUgMjAwek0zMTAgMjA1TDMzNyAyMDUgMzM3IDIxOCAzMTAgMjE4IDMxMCAyMDV6Ii8+PHBhdGggZD0ibTQwNSAyMjUgNS0xMCAyMCAwIDUgMTAtMzAgMCIvPjwvZz48L3N2Zz4=)}.dropimage input{left:0;width:100%;height:100%;border:0;margin:0;padding:0;opacity:0;cursor:pointer;position:absolute}.tabs{position:relative;overflow:hidden}.tabs>label img{float:left;margin-left:.6em}.tabs>.row{width:calc(100% + 2 * .6em);display:table;table-layout:fixed;position:relative;padding-left:0;transition:all .3s;border-spacing:0;margin:0}.tabs>.row:before,.tabs>.row:after{display:none}.tabs>.row>*,.tabs>.row img{display:table-cell;vertical-align:top;margin:0;width:100%}.tabs>input{display:none}.tabs>input+*{width:100%}.tabs>input+label{width:auto}.two.tabs>.row{width:200%;left:-100%}.two.tabs>input:nth-of-type(1):checked ~ .row{margin-left:100%}.two.tabs>label img{width:48%;margin:4% 0 4% 4%}.three.tabs>.row{width:300%;left:-200%}.three.tabs>input:nth-of-type(1):checked ~ .row{margin-left:200%}.three.tabs>input:nth-of-type(2):checked ~ .row{margin-left:100%}.three.tabs>label img{width:30%;margin:5% 0 5% 5%}.four.tabs>.row{width:400%;left:-300%}.four.tabs>input:nth-of-type(1):checked ~ .row{margin-left:300%}.four.tabs>input:nth-of-type(2):checked ~ .row{margin-left:200%}.four.tabs>input:nth-of-type(3):checked ~ .row{margin-left:100%}.four.tabs>label img{width:22%;margin:4% 0 4% 4%}.tabs>label:first-of-type img{margin-left:0}[data-tooltip]{position:relative}[data-tooltip]:after,[data-tooltip]:before{position:absolute;z-index:10;opacity:0;border-width:0;height:0;padding:0;overflow:hidden;transition:opacity .6s ease, height 0s ease .6s;top:calc(100% - 6px);left:0;margin-top:12px}[data-tooltip]:after{margin-left:0;font-size:.8em;background:#111;content:attr(data-tooltip);white-space:nowrap}[data-tooltip]:before{content:'';width:0;height:0;border-width:0;border-style:solid;border-color:transparent transparent #111;margin-top:0;left:10px}[data-tooltip]:hover:after,[data-tooltip]:focus:after,[data-tooltip]:hover:before,[data-tooltip]:focus:before{opacity:1;border-width:6px;height:auto}[data-tooltip]:hover:after,[data-tooltip]:focus:after{padding:.45em .9em}.tooltip-top:after,.tooltip-top:before{top:auto;bottom:calc(100% - 6px);left:0;margin-bottom:12px}.tooltip-top:before{border-color:#111 transparent transparent;margin-bottom:0;left:10px}.tooltip-right:after,.tooltip-right:before{left:100%;margin-left:6px;margin-top:0;top:0}.tooltip-right:before{border-color:transparent #111 transparent transparent;margin-left:-6px;left:100%;top:7px}.tooltip-left:after,.tooltip-left:before{right:100%;margin-right:6px;left:auto;margin-top:0;top:0}.tooltip-left:before{border-color:transparent transparent transparent #111;margin-right:-6px;right:100%;top:7px}
diff --git a/_site/Backup/projects/projectZERO/img/cover.jpg b/_site/Backup/projects/projectZERO/img/cover.jpg
new file mode 100644
index 0000000..d6a9515
Binary files /dev/null and b/_site/Backup/projects/projectZERO/img/cover.jpg differ
diff --git a/_site/Backup/projects/projectZERO/img/cover.png b/_site/Backup/projects/projectZERO/img/cover.png
new file mode 100644
index 0000000..6e4428e
Binary files /dev/null and b/_site/Backup/projects/projectZERO/img/cover.png differ
diff --git a/_site/Backup/projects/projectZERO/img/cross.png b/_site/Backup/projects/projectZERO/img/cross.png
new file mode 100644
index 0000000..3005151
Binary files /dev/null and b/_site/Backup/projects/projectZERO/img/cross.png differ
diff --git a/_site/Backup/projects/projectZERO/img/favicon.ico b/_site/Backup/projects/projectZERO/img/favicon.ico
new file mode 100644
index 0000000..7a89daa
Binary files /dev/null and b/_site/Backup/projects/projectZERO/img/favicon.ico differ
diff --git a/_site/Backup/projects/projectZERO/img/living.png b/_site/Backup/projects/projectZERO/img/living.png
new file mode 100644
index 0000000..89a66d7
Binary files /dev/null and b/_site/Backup/projects/projectZERO/img/living.png differ
diff --git a/_site/Backup/projects/projectZERO/img/office.png b/_site/Backup/projects/projectZERO/img/office.png
new file mode 100644
index 0000000..282cb98
Binary files /dev/null and b/_site/Backup/projects/projectZERO/img/office.png differ
diff --git a/_site/Backup/projects/projectZERO/img/rec.png b/_site/Backup/projects/projectZERO/img/rec.png
new file mode 100644
index 0000000..a30d133
Binary files /dev/null and b/_site/Backup/projects/projectZERO/img/rec.png differ
diff --git a/_site/Backup/projects/projectZERO/img/ring.png b/_site/Backup/projects/projectZERO/img/ring.png
new file mode 100644
index 0000000..b02c91c
Binary files /dev/null and b/_site/Backup/projects/projectZERO/img/ring.png differ
diff --git a/_site/Backup/projects/projectZERO/img/solar.png b/_site/Backup/projects/projectZERO/img/solar.png
new file mode 100644
index 0000000..2346468
Binary files /dev/null and b/_site/Backup/projects/projectZERO/img/solar.png differ
diff --git a/_site/Backup/projects/projectZERO/index.php b/_site/Backup/projects/projectZERO/index.php
new file mode 100644
index 0000000..1761033
--- /dev/null
+++ b/_site/Backup/projects/projectZERO/index.php
@@ -0,0 +1,729 @@
+
+
+
+
+
+window.location = 'http://retrylife.ca/donate';";
+}
+
+// easter eggs
+
+if($_GET['tgif'] == "true"){
+ $TGIF = 1;
+}
+
+// setcookie("name","value",time()+$int);
+
+
+
+?>
+
+
+
ProjectZERO
+
+
" rel="stylesheet" media="all">
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
";
+
+//for($ix = 0; $ix <= 33; $ix++){
+// echo $text2[$ix];
+//}
+?>
+
+
+
+