Initial version

master
Mahmoud Al-Qudsi 2018-05-24 14:40:50 -05:00
commit 8e66c397d2
Se han modificado 2 ficheros con 37 adiciones y 0 borrados

@ -0,0 +1,12 @@
<html>
<head>
<link rel="stylesheet" type="text/css" href="./main.css" />
</head>
<body>
<div id="banner">
<span id="donateInfo">CPSA is a registered 501(c)(3) non-profit. All donations are tax-deductible and zakah eligible.&nbsp;</span>
<span id="donateNow"><a href="https://cpsaonline.org/donate/RF2403">Donate Now</a></span>
</div>
<iframe id="cpsaonline" src="https://cpsaonline.org/" />
</body>
</html>

@ -0,0 +1,25 @@
body {
margin: 0;
padding: 0;
font-family: Segoe UI, Roboto, Helvetica;
}
div#banner {
width: 100vw;
height: 3rem;
background: #ff9933;
display: flex;
align-items: center;
justify-content: center;
}
span#donateNow {
}
iframe#cpsaonline {
border: 0;
margin: 0;
padding: 0;
width: 100vw;
height: calc(100vh - 3rem);
}