-
Notifications
You must be signed in to change notification settings - Fork 2
/
index.html
129 lines (106 loc) · 3.55 KB
/
index.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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<link rel="shortcut icon" href="https://github.com/rohan-kulkarni-25/Tribute-To-Contributors/blob/460d1edbf904a0ab07abc6724f5d2bba07b565a9/logo.png" type="image/x-icon">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<style>
#list {
display: flex;
flex-wrap: wrap;
justify-content: space-around;
}
.contributorbox {
background-color: #b1dbff;
display: flex;
flex-direction: column;
justify-content: space-around;
width: max-content;
margin: 2vmin;
padding: 2em;
padding-bottom: 0%;
border-radius: 12px;
}
.avatar {
width: 8em;
border-radius: 12px;
}
.contributorbox a {
display: flex;
justify-content: space-around;
}
.logo {
width: 2.5em;
border-radius: 52px;
cursor: pointer;
margin: 2vmin;
}
#head {
display: flex;
justify-content: center;
align-content: space-around;
border-radius: 12px;
background-color: rgb(13, 50, 75);
}
#head p {
margin: 0;
text-align: center;
padding: 2vmin;
color: white;
font-size: 2rem;
}
.foot {
background-color: black;
color: white;
display: flex;
justify-content: center;
padding: 1vmin;
font-size: 3vmin;
}
.foot a {
text-decoration: none;
color: black;
/* padding-left: 5vmin; */
margin-left: 3vmin;
border-radius: 12px;
padding: 0.5vmin;
text-align: right;
font-size: 3.2vmin;
background-color: white;
}
#head img {
/* width: 1vmin; */
height: 8vmin;
padding: 1vmin;
border-radius: 12px;
}
</style>
<title>Tribute-To-Contributors</title>
</head>
<body>
<div id="head">
</div>
<div id="list">
</div>
<foot class="foot">MADE WITH ❤️ BY ROHAN KULKARNI <a href="https://rohankulkarni.tech">Get Connected</a></foot>
<script>
async function getCollaborator() {
let repo = `rohan-kulkarni-25/Tribute-To-Contributors`
const url = `https://api.github.com/repos/${repo}/contributors`
const response = await fetch(url,)
const result = await response.json()
for (let index = 0; index < result.length; index++) {
let box = document.createElement('div');
box.innerHTML = `<div class="contributorbox">
<img class="avatar" src="https://www.github.com/${result[index].login}.png">
<a href="https://github.com/${result[index].login}"><img class="logo" src="https://avatars.githubusercontent.com/u/9919?v=4"></a>
</div>`
document.getElementById('list').appendChild(box);
}
document.getElementById('head').innerHTML = `<img src="https://raw.githubusercontent.com/rohan-kulkarni-25/Tribute-To-Contributors/460d1edbf904a0ab07abc6724f5d2bba07b565a9/logo.png"><p>CONTRIBUTORS OF ${repo} !! All Credit Goes to Them</p>`
}
getCollaborator();
</script>
</body>
</html>