===
Last active
September 17, 2016 18:13
-
-
Save rayantony/9e0e1d8232eda48d1a9b7d3c597ab98d to your computer and use it in GitHub Desktop.
donate.html
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html><html lang="en"><head><base href="https://clientwindows.com/" /><meta http-equiv="Content-Type" content="text/html; charset=utf-8" /><meta charset="utf-8"><meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"><meta name="viewport" content="width=device-width,initial-scale=1.0,maximum-scale=1.0,user-scalable=0"><link href="https://clientwindows.com/" rel="canonical"><meta http-equiv="Connection" content="keep-alive"><meta http-equiv="cleartype" content="on"><meta name="Acess-Control-Allow-Origin" content="*"><meta http-equiv="Access-Control-Allow-Origin" content="*"> | |
<link rel="shortcut icon" href="//s3-us-west-2.amazonaws.com/s.cdpn.io/167883/profile/profile-512_3.jpg"><link href="//rayanthony.io/normalize.css" media="all" rel="stylesheet" type="text/css" /> | |
<link rel="stylesheet" href="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha/css/bootstrap.min.css" crossorigin="anonymous" media="all" type="text/css"><link rel="stylesheet" crossorigin="anonymous" href="//fonts.googleapis.com/css?family=Lato:100,300,400,100thin|PT+Sans:400,700,400italic,700italic|RobotoDraft:100,300" rel="stylesheet" media="all" type="text/css" charset="utf-8"> | |
<style> | |
/* test */ | |
/* | |
.ol .li{ | |
font-size:.9rem; | |
transform: rotate(360deg); | |
transform-origin: center right; | |
}*/ | |
.bottom-panels { | |
background-color: rgba(0,0,0,0.2); | |
background-image: linear-gradient(to bottom, rgba(255,255,255,0.3) 0px, rgba(0,0,0,0.5) 100%); | |
padding:1px; | |
width:95%; | |
font-family:'Lato'; | |
font-weight:300; | |
text-shadow: 0 0.032em 0 #b0b0b0, 0px 0.15em 0.11em rgba(0,0,0,0.15), 0px 0.25em 0.021em rgba(0,0,0,0.1), 0px 0.32em 0.32em rgba(0,0,0,0.1); | |
color: #2ac4c0; | |
color:#fff; | |
font-size:.86rem; | |
border-radius: 12px; | |
box-shadow: 0px 0px 25px 15px #ffffff; | |
border: .21px solid #FFF; | |
opacity:0.9; | |
display:flex;position:static; | |
z-index:1; | |
margin-bottom: 5px; | |
/* background:linear-gradient(rgba(0, 5, 32, 0.14) 0%,rgba(255,255,255,0.05) 40%,rgba(0,0,0,0.05) 80%,rgba(0,0,0,0.2) 100%); */ | |
} | |
hr{ | |
font-size:.1rem;color:whitesmoke; | |
z-index:3; | |
border-radius:12px; | |
border:0.3px #fff; | |
/* margin-top:5px;padding:5px; */ | |
} | |
#summary { | |
color: whitesmoke; | |
opacity:0; | |
border-radius:12px; | |
border:0.1px #ffe; | |
} | |
#summary:hover:before {color:whitesmoke;opacity:0.1;} | |
#summary:hover{ | |
-webkit-animation: text-blur 4s 1, text-blink 6s 1; | |
animation: text-blur 4s 1, text-blink 6s 1; | |
/* animation: text-blur 12s infinite,text-blink 12s infinite;*/ | |
/* transition-duration: 2s, 1s, 0.5s, 0.5s; | |
transition-delay: 0s, 0.5s, 1s, 1.5s; | |
test figures below timing is too fast | |
*/ | |
transition-duration: 5s, 2s, 1.5s, 1.5s; | |
transition-delay: 2s, 0.5s, 1s, 1.5s; | |
-webkit-transition-duration: 5s, 2s, 1.5s, 1.5s; | |
-webkit-transition-delay: 2s, 0.5s, 1s, 1.5s; | |
opacity:0.9; | |
overflow-x: hidden; | |
animation-name:text-blur, text-blink; | |
animation-duration: 5s; | |
animation-direction: linear; | |
animation-iteration-count: 1; | |
animation-delay: 3s; | |
} | |
@-webkit-keyframes text-blur { | |
0%, 50%, 90%, 100% { text-shadow: #b0b0b0 0 0 1px; } | |
60%, 80% { text-shadow: #b0b0b0 0 0 2px; } | |
70% { text-shadow: #b0b0b0 0 0 8px; } | |
} | |
@keyframes text-blur { | |
0% { text-shadow: 0 0.032em 0 #b0b0b0, 0px 0.15em 0.11em rgba(0,0,0,0.15), 0px 0.25em 0.021em rgba(0,0,0,0.1), 0px 0.32em 0.32em rgba(0,0,0,0.1);} | |
0%, 10%, 50%, 90%, 100% { text-shadow: #b0b0b0 0 0 1px; } | |
60%, 80% { text-shadow: #b0b0b0 0 0 2px; } | |
70% { text-shadow: #b0b0b0 0 8px 8px; } | |
} | |
@keyframes text-blink { | |
0% { | |
opacity:0; | |
} | |
35% { | |
opacity: 1; | |
} | |
36% { | |
opacity: .1; | |
} | |
37.5% { | |
opacity: 1; | |
} | |
100% { | |
opacity:.9; | |
} | |
} | |
@-webkit-keyframes text-blink { | |
0% {opacity:0;} | |
24% { | |
opacity: 1; | |
} | |
24.5% { | |
opacity: .3; | |
} | |
35% { | |
opacity: 1; | |
} | |
35.5% { | |
opacity: .3; | |
} | |
36.5% { | |
opacity: 1; | |
} | |
100% {opacity:.9;} | |
} | |
</style> | |
<style> | |
p,.p { | |
font-size:1rem; | |
color:silver; | |
text-shadow: 0 0.032em 0 #b0b0b0, 0px 0.15em 0.11em rgba(0,0,0,0.15), 0px 0.25em 0.021em rgba(0,0,0,0.1), 0px 0.32em 0.32em rgba(0,0,0,0.1); | |
text-shadow: 0 0.032em 0 #b0b0b0, 0px 0.15em 0.11em rgba(0,0,0,0.15), 0px 0.25em 0.021em rgba(0,0,0,0.1), 0px 0.32em 0.32em rgba(0,0,0,0.1); | |
} | |
.btn-flat { | |
/* | |
font-family: 'Open Sans',Arial,Helvetica,Sans-Serif; | |
*/ | |
font-family: RobotoDraft,sans-serif; | |
border-radius:0px; | |
border-width:0; | |
background-image:none; | |
padding:16px; | |
margin:0 auto; | |
/* | |
margin-top:15px; | |
*/ | |
width:25%; | |
font-size:.9rem; | |
float:none !important; | |
font-style:normal; | |
color: #ffe; | |
text-shadow: 0 0.032em 0 #b0b0b0, 0px 0.15em 0.11em rgba(0,0,0,0.15), 0px 0.25em 0.021em rgba(0,0,0,0.1), 0px 0.32em 0.32em rgba(0,0,0,0.1); | |
} | |
.block { | |
background-color: linear-gradient( 45 deg, whitesmoke 20%, rgba(0,0,0,0.3) 100%); | |
background: linear-gradient( 45 deg, whitesmoke 20%, rgba(0,0,0,0.3) 100%); | |
padding-left:12px; | |
padding-right:12px; | |
float:none!important;margin:0 auto; | |
text-shadow: 0 0.032em 0 #b0b0b0, 0px 0.15em 0.11em rgba(0,0,0,0.15), 0px 0.25em 0.021em rgba(0,0,0,0.1), 0px 0.32em 0.32em rgba(0,0,0,0.1); | |
} | |
.well-lg,.well { | |
background-color: rgba(0,0,0,0.2); | |
background-image: linear-gradient(to bottom, rgba(255,255,255,0.3) 0px, rgba(0,0,0,0.5) 100%); | |
padding:20px; | |
float:none!important; | |
margin: 0 auto; | |
margin-left:20px; | |
max-width:70vw; | |
width:65vw; | |
font-weight:400; | |
text-shadow: 0 0.032em 0 #b0b0b0, 0px 0.15em 0.11em rgba(0,0,0,0.15), 0px 0.25em 0.021em rgba(0,0,0,0.1), 0px 0.32em 0.32em rgba(0,0,0,0.1); | |
color: #2ac4c0; | |
color:#ffe; | |
font-size:.9rem; | |
border-radius: 2px; | |
box-shadow: 0px 0px 25px 15px #ffffff; | |
border: .51px solid #FFF; | |
} | |
h1,h2{ | |
font-family: 'Lato'; | |
font-style: normal; | |
font-weight: 100; | |
} | |
hr { | |
color:#ffe; | |
width:82vw; | |
border-radius: 2px; | |
box-shadow: 0px 0px 45px 35px #ffffff; | |
border: 1px solid #FFF; | |
font-family: 'Lato'; | |
font-style: thin; | |
font-weight: 100; | |
font-size:3.5rem; | |
text-shadow: 0 0.032em 0 #b0b0b0, 0px 0.15em 0.11em rgba(0,0,0,0.15), 0px 0.25em 0.021em rgba(0,0,0,0.1), 0px 0.32em 0.32em rgba(0,0,0,0.1); | |
} | |
h1{ | |
font-family: 'Lato'; | |
/* font-style: thin;*/ | |
font-weight: 100; | |
font-size:3.5rem; | |
text-shadow: 0 0.032em 0 #b0b0b0, 0px 0.15em 0.11em rgba(0,0,0,0.15), 0px 0.25em 0.021em rgba(0,0,0,0.1), 0px 0.32em 0.32em rgba(0,0,0,0.1); | |
} | |
h2{ | |
text-shadow: 0 0.032em 0 #b0b0b0, 0px 0.15em 0.11em rgba(0,0,0,0.15), 0px 0.25em 0.021em rgba(0,0,0,0.1), 0px 0.32em 0.32em rgba(0,0,0,0.1); | |
font-size:2.8rem; | |
} | |
h3{ | |
font-size:1rem; | |
text-shadow: 0 0.032em 0 #b0b0b0, 0px 0.15em 0.11em rgba(0,0,0,0.15), 0px 0.25em 0.021em rgba(0,0,0,0.1), 0px 0.32em 0.32em rgba(0,0,0,0.1); | |
} | |
@media screen and (min-width:280px){ | |
html{ | |
background-color: #222; | |
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAGklEQVQIW2NkYGD4D8SMQAwGcAY2AbBKDBUAVuYCBQPd34sAAAAASUVORK5CYII=); | |
background-repeat: repeat; | |
} | |
body{ | |
background-image:transparent; | |
background-color:transparent; | |
-ms-background-color:transparent; | |
-webkit-background-color:transparent; | |
-moz-background-color:transparent; | |
-blink-background-color:transparent; | |
-o-background-color:transparent; | |
background:linear-gradient(rgba(0,0,0,0.05) 10%,rgba(0,0,0,0.1) 50%,rgba(255,255,255,0.1) 72%,rgba(0,0,0,0.18) 100%); | |
} | |
} | |
@media screen and (max-width:320px){ | |
html{ background-color: #222; | |
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAGklEQVQIW2NkYGD4D8SMQAwGcAY2AbBKDBUAVuYCBQPd34sAAAAASUVORK5CYII=); | |
background-repeat: repeat; | |
} | |
body{ | |
background-image:transparent; | |
background-color:transparent; | |
-ms-background-color:transparent; | |
-webkit-background-color:transparent; | |
-moz-background-color:transparent; | |
-blink-background-color:transparent; | |
-o-background-color:transparent; | |
background:linear-gradient(rgba(0,0,0,0.05) 10%,rgba(0,0,0,0.1) 50%,rgba(255,255,255,0.1) 72%,rgba(0,0,0,0.18) 100%); | |
} | |
} | |
@media screen and (max-width:569px){ | |
html{ | |
background-color: #222; | |
background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAAQAAAAECAYAAACp8Z5+AAAAGklEQVQIW2NkYGD4D8SMQAwGcAY2AbBKDBUAVuYCBQPd34sAAAAASUVORK5CYII=); | |
background-repeat: repeat; | |
} | |
body{ | |
background-image:transparent; | |
background-color:transparent; | |
-ms-background-color:transparent; | |
-webkit-background-color:transparent; | |
-moz-background-color:transparent; | |
-blink-background-color:transparent; | |
-o-background-color:transparent; | |
background:linear-gradient(rgba(0,0,0,0.05) 10%,rgba(0,0,0,0.1) 50%,rgba(255,255,255,0.1) 72%,rgba(0,0,0,0.18) 100%); | |
} | |
} | |
</style> | |
</head><body><script type="text/javascript" async crossorigin="anonymous"> | |
$(function() { | |
FastClick.attach(document.body); | |
}); | |
</script> | |
<script type="text/javascript" async crossorigin="anonymous"> | |
var _gas = _gas || []; | |
_gas.push(['_setAccount', '"UA-2167814-1']); | |
_gas.push(['_setDomainName', '.clientwindows.com']); | |
_gas.push(['_trackPageview']); | |
_gas.push(['_gasTrackForms']); | |
_gas.push(['_gasTrackOutboundLinks']); | |
_gas.push(['_gasTrackMaxScroll']); | |
_gas.push(['_gasTrackDownloads']); | |
_gas.push(['_gasTrackVideo']); | |
_gas.push(['_gasTrackAudio']); | |
_gas.push(['_gasTrackYoutube', {force: true}]); | |
_gas.push(['_gasTrackVimeo', {force: true}]); | |
_gas.push(['_gasTrackMailto']); | |
_gas.push(['_gasMeta']); | |
_gas.push(['_require', 'inpage_linkid', | |
'//www.google-analytics.com/plugins/ga/inpage_linkid.js']); | |
ga.setAttribute('data-use-dcjs', 'true'); | |
(function() { | |
var ga = document.createElement('script'); | |
ga.id = 'gas-script'; | |
ga.setAttribute('data-use-dcjs', 'true'); | |
ga.type = 'text/javascript'; | |
ga.async = true; | |
ga.src = '//cdnjs.cloudflare.com/ajax/libs/gas/1.11.0/gas.min.js'; | |
var s = document.getElementsByTagName('script')[0]; | |
s.parentNode.insertBefore(ga, s); | |
})(); | |
</script> | |
<script type="text/javascript" async crossorigin="anonymous" > | |
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){ | |
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o), | |
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m) | |
})(window,document,'script','//www.google-analytics.com/analytics.js','ga'); | |
ga('create', 'UA-2167814-1', 'clientwindows.com'); | |
ga('send', 'pageview'); | |
</script> | |
<article> | |
<div class="container"> | |
<div class="page-header"> | |
<h1>Donate</h1> <p class="lead">~ help me fight back ~</p> | |
<h2> <strong>I'm Ray I've founded and built innumerable million dollar earning corporations from nothing. </strong></h2><span class="label label-success"></span> | |
<p><strong>But today I have nothing.Thanks to Embezzling or my partners <strong> Re-appropriation of Funds </strong>, I'm homeless, hungry, and need help like a lawyer. I'm not less than i was, I am more I just oddly 'have' less at the moment. Penniless amidst massive data shutoffs and asset auctions. | |
help was not required for success ever before nor will it ever be. But I concede at the end that it is required for continued life to achieve success. A consequence to misplaced trust and devotion to 3 people I thought were friends. I have so little, I feel lucky for a internet connection and a place to sleep and that I had food today and that not everything I have built these past 2 years is gone, like this domain. And that my house in storage is not yet at auction today. </strong></p> | |
<form action="https://www.paypal.com/cgi-bin/webscr" method="post" target="_top"> | |
<input type="hidden" name="cmd" value="_s-xclick"><input type="hidden" name="hosted_button_id" value="32LB3Y8YYZ4HY"><input type="image" src="https://www.paypalobjects.com/en_US/i/btn/btn_donateCC_LG.gif" border="0" name="submit" alt="PayPal - The safer, easier way to pay online!"><img alt="" border="0" src="https://www.paypalobjects.com/en_US/i/scr/pixel.gif" width="1" height="1"></form> | |
</div><!-- close header --> | |
</div> | |
<article> | |
<script src="//ajax.googleapis.com/ajax/libs/jquery/2.1.0/jquery.min.js" type="text/javascript"></script> | |
<script crossorigin="anonymous" async src="//cdnjs.cloudflare.com/ajax/libs/fastclick/0.6.7/fastclick.min.js"></script> | |
<script crossorigin="anonymous" src="https://clientwindows.com/main.js" type="text/javascript"></script> | |
<script src="//maxcdn.bootstrapcdn.com/bootstrap/4.0.0-alpha/js/bootstrap.min.js"></script> | |
</body></html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment