Initial version
commit
8e66c397d2
@ -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. </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);
|
||||
}
|
Loading…
Reference in New Issue