-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathweb page
244 lines (201 loc) · 6.28 KB
/
web page
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
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>Git workshop</title>
<!-- JQUERY -->
<script src='https://cdnjs.cloudflare.com/ajax/libs/jquery/3.2.1/jquery.min.js'></script>
<!-- Bootstrap -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css">
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/js/bootstrap.min.js"
integrity="sha384-Tc5IQib027qvyjSMfHjOMaLkfuWVxZxUPnCJA7l2mCWNIpG9mGCD8wGNIcPD7Txa"
crossorigin="anonymous"></script>
<!-- FULL PAGE.JS -->
<link rel="stylesheet" href="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.9.4/jquery.fullpage.css" />
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.9.4/jquery.fullpage.js"></script>
<script src="https://cdnjs.cloudflare.com/ajax/libs/fullPage.js/2.9.4/vendors/scrolloverflow.min.js"></script>
<!--- Fonts ---->
<link href="https://fonts.googleapis.com/css2?family=Dancing+Script:wght@700&display=swap" rel="stylesheet">
<link href="https://fonts.googleapis.com/css2?family=Zilla+Slab:ital@1&display=swap" rel="stylesheet">
<!-- CSS -->
<style>
/* CSS Class */
* {
box-sizing: border-box;
margin:0;
padding:0;
}
body{
background-color: #a8dadc;
margin:20px;
}
h1{
padding-top: 2.5rem;
padding-bottom: 2rem;
margin: 0;
font-family: 'Dancing Script', cursive;
}
h2{
padding-bottom: 3.5rem;
font-weight: bold;
font-family: 'Zilla Slab', serif;
}
p{
font-family: 'Zilla Slab', serif;
}
a{
color: black;
font-family: 'Zilla Slab', serif;
font-size: 1.7rem;
content: justify;
}
.footnote {
position: relative;
bottom: 0%;
height: 50px;
flex-shrink: 0;
width: auto;
background-color: #ffffff;
margin: 0;
min-height: 84px;
overflow: hidden;
padding: 0;
width: auto;
}
.footnote div {
margin: 0 auto;
overflow: hidden;
padding: 34px 0 0;
width: 960px;
}
.footnote div p {
color: #000000;
display: block;
font-family: Arial;
font-size: 12px;
font-weight: normal;
margin: 0 auto;
padding: 0;
text-align: center;
text-transform: uppercase;
width: 940px;
}
.btn{
border-radius: 5%;
background-color: #a8dadc;
color: black;
font-family: 'Zilla Slab', serif;
font-weight: bold;
border-color: #00FFFF;
/*transition: 0.3s;*/
transition: all 0.5s cubic-bezier(0.075, 0.82, 0.165, 1);
}
.btn:hover{
background-color: black;
border-color: #ff9100;
}
.jumbotron-fluid{
padding: 10px;
}
.center h2{
text-align: center;
}
.center li{
text-align: center;
}
li {
list-style: none;
font-weight: 500;
}
/* -------- */
.header-bg{
background-color: #1f1f1d;
}
.jumbotron-fluid{
/* background-color: #f76c5e; */
text-align: center;
}
.jumbotron-fluid h1{
color: white;
font-size: 8rem;
}
.jumbotron-fluid p{
color: white;
}
#footer{
background-color: blue;
text-align: center;
color: red;
bottom: 0px;
}
.list-grid ol{
column-count: 3;
}
@media (max-width: 768px) {
.jumbotron-fluid h1 {
font-size: 4rem;
}
}
@media only screen and (max-width: 918px) {
.footnote div {
margin: 0 auto;
padding: 10% 0;
width: 95%;
}
.footnote div p {
width: 100%;
}
}
::-webkit-scrollbar{
width: 15px;
}
::-webkit-scrollbar-track{
border-radius: 5px;
box-shadow: inset 0 0 10px rgb(255, 255, 255);
}
::-webkit-scrollbar-thumb {
border-radius: 10px;
background-color: rgb(83, 221, 221);
}
</style>
</head>
<body>
<!-- <div id="fullpage"> -->
<!-- Intro Header -->
<!-- Dont Change This Section -->
<div class="section header-bg">
<div class="jumbotron-fluid">
<h1>GIT & GITHUB Contribution Sheet</h1>
<p class="lead">Very simple repo! Great for beginners to make their first pull request! Feel free to sign in xD
</p>
</div>
</div>
<div class="section center list-grid">
<h2></br>Welcome To Open Source</h2>
<!-- SIGN IN HERE -->
<ol>
<!-- In This Format
<li><a href ="https://github.com/ShouryaBrahmastra">Shourya Gupta</a></li>
-->
<li><a href ="https://github.com/vishalkrsharma">Vishal Kumar Sharma</a></li>
</ol>
</div>
</div>
<section style="position: 100%;">
<div class="footnote" >
<div>
<p>© 2022 BY <a href ="https://github.com/suraviroy">SURAVI ROY<a> | ALL RIGHTS RESERVED</p>
</div>
</div>
</section>
<!-- Full Page End -->
<!-- Script -->
<script>
$(document).ready(function () {
$('#fullpage').fullpage();
});
</script>
</body>
</html>