-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
30 lines (24 loc) · 1.02 KB
/
index.html
File metadata and controls
30 lines (24 loc) · 1.02 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
---
layout: home
author_profile: true
---
<link rel="stylesheet" type="text/css" href="css/home_css.css">
<script data-ad-client="ca-pub-8803876783478917" async src="https://pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<div style="width:50em; display:table-cell; font-size:1.5em; text-align:center; color:#ffaaaa; text-shadow: 1px 1px 0 #ff9999">Tulip Me</div>
<table class="table_donation" style="border:none;">
<tbody id="donation_body">
<tr><td><div class="donation" id="twip">Twip</div></td><td><div class="donation" id="toonation">A</div></td></tr>
<tr><td><div class="donation">B</div></td><td><div class="donation">C</div></td></tr>
</tbody>
</table>
<script type="text/javascript">
var getDon = document.getElementsByClassName("donation");
for (var i = 0; i < getDon.length; i++){
getDon[i].style.height = getDon[i].style.width;
}
window.onresize = function() {
for (var i = 0; i < getDon.length; i++){
getDon[i].style.height = getDon[i].style.width;
}
};
</script>