-
Notifications
You must be signed in to change notification settings - Fork 143
/
github-button.html
64 lines (64 loc) · 2.24 KB
/
github-button.html
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
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>GitHub Buttons</title>
<link href="https://fonts.googleapis.com/css2?family=Nunito:wght@400;700&display=swap" rel="stylesheet">
<script async defer src="https://buttons.github.io/buttons.js"></script>
<style>
body {
font-family: 'Nunito', sans-serif;
margin: 0;
display: flex;
justify-content: center;
align-items: center;
min-height: 100vh;
}
.iframe-container {
border: 2px solid #f0c040; /* Gold border */
border-radius: 10px;
padding: 5px; /* Adjust padding */
width: 90%; /* Full width */
max-width: 800px; /* Increased max width */
margin: auto;
background-color: #ffffff;
text-align: center;
box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
min-height: 100px; /* Increased height */
overflow: hidden; /* Prevent inner scrollbars */
}
.iframe-container p {
font-size: 14px;
line-height: 1.25;
margin: 10px 0;
color: #333;
}
.iframe-container a {
color: #0066cc;
text-decoration: none;
}
.iframe-container a:hover {
text-decoration: underline;
}
.github-button {
margin-top: 10px;
}
</style>
</head>
<body>
<div class="iframe-container">
<p>🎓 The <a href="https://www.edgeaifoundation.org/" target="_blank">EDGE AI Foundation</a> is <span style="font-weight: bold;">matching scholarship funds</span> for every GitHub ⭐</br>(up to 10,000 stars).</p>
<p><a href="https://github.com/harvard-edge/cs249r_book" target="_blank">Click here to support!</a> 🙏</p>
<!-- Star Button -->
<a class="github-button"
href="https://github.com/harvard-edge/cs249r_book"
data-icon="octicon-star"
data-show-count="true"
data-size="large"
aria-label="Star harvard-edge/cs249r_book on GitHub">
Star
</a>
</div>
</body>
</html>