-
Notifications
You must be signed in to change notification settings - Fork 84
/
index.html
173 lines (162 loc) Β· 5.53 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
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8" />
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1, user-scalable=no">
<meta name="description" content="Hacktoberfest 2019" />
<meta name="keywords" content="github, hacktoberfest, octocat" />
<meta name="theme-color" content="#a11ec6" />
<!-- <link href="https://fonts.googleapis.com/css?family=Roboto&display=swap" rel="stylesheet"> -->
<link href="https://fonts.googleapis.com/css?family=Roboto+Mono&display=swap" rel="stylesheet">
<title>HACKTOBERFEST 2019</title>
<style media="screen">
body {
font-family: cursive;
color: white;
font-size: 14px;
font-weight: 300;
line-height: 22px;
letter-spacing: 0.4px;
padding-top: 25px;
font-family: 'Roboto Mono', monospace;
background: rgb(21,34,70);
background: linear-gradient(180deg, rgba(21,34,70,1) 0%, rgba(28,43,77,1) 20%, rgba(161,30,198,1) 100%);
}
p {
margin-right: 30px;
}
.card {
background-color: white;
border-radius: 30px;
display: flex;
box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.15);
position: relative;
transition: all 0.2s ease-in-out;
box-shadow: 10px 10px 100px 0.5px rgba(244, 244, 244, 1);
margin: 0 auto;
}
.card:hover {
box-shadow: none;
margin-bottom: 54px;
}
.image img {
width: 20%;
}
.text {
background: #fff;
padding: 20px;
min-height: 200px;
}
.text p {
margin-bottom: 0px;
}
.fab {
width: 60px;
height: 60px;
border-radius: 50%;
position: absolute;
margin-top: -50px;
right: 20px;
box-shadow: 0px 2px 6px rgba(0, 0, 0, 0.3);
color: #fff;
font-size: 48px;
line-height: 48px;
text-align: center;
background: #0066a2;
-webkit-transition: -webkit-transform 0.2s ease-in-out;
transition: transform 0.2s ease-in-out;
}
.fab:hover {
background: #549d3c;
cursor: pointer;
-ms-transform: rotate(90deg);
-webkit-transform: rotate(90deg);
transform: rotate(90deg);
}
.link {
color: #58B4FF;
}
.link a {
text-decoration: none !important;
color: #fff;
}
.names {
margin-top: -20px;
padding-left: 20px;
padding-right: 20px;
font-family: 'Roboto', sans-serif;
}
.names a {
text-decoration: bold;
}
.footerdiv{
background-color: #152246;
margin-top: 50px;
}
.footerdiv p{
padding: 15px;
text-align: center;
}
</style>
</head>
<body>
<img src="images/65826274-63949180-e29b-11e9-9c46-7740707c1702.png" style="width: 500px; float: left;">
<h1 style="font-size: 50px">Hacktoberfest2019 π</h1>
<div>
<p>
Happy Hacktober! This is a beginner friendly repository made specifically for Hacktoberfest that helps you get your first PR and takes you a step closer to earning your Hacktoberfest T-shirt π.
</p>
<p>
π― If you are a beginner, and looking for your first contribution, we are here to help. Just append your name and jobs on our
</p>
<p>
https://github.com/rafiudd/hacktoberfest19/blob/master/contributor.md and that counts as your first PR.
</p>
<p>
π― In case you are an intermediate or advanced level programmer or developer, we have got you covered too!! Step to our Resources folder and make contributions as per as your interests.
</p>
<p>
π» Also, our website is open to contributions from both frontend and designer fellows who want to help us in making it bigger and better.
Check Contributor at: <a class="link" href="https://rafiudd.github.io/hacktoberfest19/">https://rafiudd.github.io/hacktoberfest19/</a>
</p>
</div>
<h3 style="text-align: center;color: white; margin-top: 150px; font-size: 35px">Contributor</h3>
<div style="margin-top: 50px;" class="container">
<div class="row">
<div class="col-md-6 col-sm-8 col-xs-12 col-md-offset-3 col-sm-offset-2">
<div class="card">
<div class="image" id="imaget"></div>
</div>
</div>
</div>
</div>
<br>
<div class="footerdiv">
<p>Thanks <a class="link" href="https://github.com/rafiudd">rafiudd</a> for this repo!</p>
<p>Made with <span style="color:#f00;">♥</span> & </> on GitHub</p>
</div>
<script>
async function get() {
const res = await fetch(
'https://api.github.com/repos/rafiudd/hacktoberfest19/contributors',
);
const data = await res.json();
console.log(data);
let img = document.getElementById('imaget');
let divNames = document.querySelector('.names');
let linkRepo = document.querySelector('.link_repositories');
for (let i = 0; i < data.length; i++) {
let listName = '';
let listImg = '';
let listData = data[i];
let {login: user, avatar_url: imgUser} = listData;
listName += `<h3>${user}</h3>"`;
listImg += `<a href="https://github.com/${user}" ><img src="${imgUser}"></a>`;
img.innerHTML += listImg;
}
}
window.onload = get();
</script>
</body>
</html>