Skip to content

Commit 0b8d6fb

Browse files
committed
deployed
0 parents  commit 0b8d6fb

File tree

5 files changed

+233
-0
lines changed

5 files changed

+233
-0
lines changed

README.md

Whitespace-only changes.

contributors.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
# List of all contributors
2+
3+
1. [Kautuk Kundan](https://github.com/kautukkundan)

css/styles.css

Lines changed: 109 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,109 @@
1+
@font-face {
2+
font-family: 'Product Sans';
3+
font-style: normal;
4+
font-weight: 400;
5+
src: local('Open Sans'), local('OpenSans'), url(https://fonts.gstatic.com/s/productsans/v5/HYvgU2fE2nRJvZ5JFAumwegdm0LZdjqr5-oayXSOefg.woff2) format('woff2');
6+
}
7+
8+
body{
9+
font-family: 'Product Sans';
10+
margin: 0;
11+
background: rgb(236, 236, 236);
12+
}
13+
14+
.v_m {
15+
height: 100%;
16+
display: flex;
17+
align-items: center;
18+
justify-content: center;
19+
flex-direction: row;
20+
}
21+
22+
.cover {
23+
overflow: hidden;
24+
max-width: 100vw;
25+
min-height: 100vh;
26+
background: #572C41;
27+
}
28+
29+
.cover-desc{
30+
color: #FF9A55;
31+
}
32+
33+
.icon {
34+
width: 38vw;
35+
max-height: 100%;
36+
}
37+
38+
.title {
39+
padding: 10px 0 0 10px;
40+
color: white;
41+
font-size: 20pt;
42+
}
43+
44+
.buffer {
45+
height: 30vh;
46+
background: #FF9A55;
47+
}
48+
49+
50+
.m-card {
51+
margin-top: 20px;
52+
background: white;
53+
border-radius: 10px;
54+
padding: 8%;
55+
}
56+
57+
.m-card > .name{
58+
font-size: 25pt;
59+
font-weight: bold;
60+
}
61+
62+
.m-card > .msg{
63+
font-size: 15pt;
64+
font-style: italic;
65+
}
66+
67+
.m-card > .github {
68+
padding-top: 10px;
69+
font-size: 20pt;
70+
}
71+
72+
a:link {
73+
color: rgb(54, 54, 54);
74+
}
75+
76+
a:visited {
77+
color: rgb(31, 31, 31);
78+
}
79+
80+
a:hover {
81+
color: rgb(100, 100, 100);
82+
text-decoration: none;
83+
}
84+
85+
.footer {
86+
height: 5vh;
87+
background: rgb(36, 36, 36)
88+
}
89+
90+
@media only screen and (max-width: 600px) {
91+
.cover {
92+
min-height: 100vh;
93+
}
94+
95+
.icon{
96+
width: 80vw;
97+
}
98+
99+
.cover-desc{
100+
font-size: 25pt;
101+
}
102+
103+
.title {
104+
padding: 10px 0 0 10px;
105+
color: white;
106+
font-size: 12pt;
107+
}
108+
}
109+

images/icon.png

331 KB
Loading

index.html

Lines changed: 121 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,121 @@
1+
<!doctype html>
2+
<html lang="en">
3+
4+
<head>
5+
<!-- Required meta tags -->
6+
<meta charset="utf-8">
7+
<meta name="viewport" content="width=device-width, initial-scale=1, shrink-to-fit=no">
8+
9+
<!-- Bootstrap CSS -->
10+
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/css/bootstrap.min.css" integrity="sha384-Gn5384xqQ1aoWXA+058RXPxPg6fy4IWvTNh0E263XmFcJlSAwiGgFAW/dAiS6JXm"
11+
crossorigin="anonymous">
12+
13+
<!-- Styles CSS -->
14+
<link rel="stylesheet" href="./css/styles.css">
15+
16+
<!-- FONT AWESOME -->
17+
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.3.1/css/all.css" integrity="sha384-mzrmE5qonljUremFsqc01SB46JvROS7bZs3IO2EmfFsd15uHvIt+Y8vEf7N7fWAU"
18+
crossorigin="anonymous">
19+
20+
<title>Hacktoberfest 2k18 DSC</title>
21+
22+
</head>
23+
24+
<body>
25+
<div class="cover">
26+
<div class="title"><i class="fas fa-code"></i> Developer Student Clubs BVP</div>
27+
<div class="row text-center v_m">
28+
<div class="content-cover">
29+
<img class='icon' src="./images/icon.png">
30+
<h1 class="cover-desc"">Meetup <br> 16th October 2018 @BVP</h1>
31+
<br>
32+
<div>
33+
<button class="
34+
btn btn-warning">GO TO REPOSITORY</button>
35+
</div>
36+
<br>
37+
<p class="text-white">View Contributors below <i class="fas fa-level-down-alt"></i></p>
38+
<br><br>
39+
</div>
40+
</div>
41+
</div>
42+
43+
<div class="buffer">
44+
<div class="v_m text-center">
45+
<div>
46+
<h2>How Do I Contribute?</h2>
47+
<p>---------</p>
48+
<br>
49+
<h6>Just Follow the steps given in the Readme file in the repository</h6>
50+
</div>
51+
</div>
52+
</div>
53+
54+
<br><br>
55+
56+
<div class="body container-fluid">
57+
<div class="body-desc text-center">
58+
<h3>CONTRIBUTORS</h3>
59+
</div>
60+
61+
<div class="row">
62+
63+
64+
<!-- COPY THIS BLOCK, MAKE CHANGES AND ADD AT THE END -->
65+
66+
67+
68+
<!-- COPY FROM HERE -->
69+
<div class="col-md-4">
70+
<div class="m-card">
71+
<div class="name">YOUR NAME</div>
72+
<div class="msg">"A message from you in quotes"</div>
73+
<div class="github container-fluid">
74+
<div class="row">
75+
<i class="fab fa-github"></i>
76+
<a href="https://github.com/<YOUR-USERNAME>">/Username</a>
77+
</div>
78+
</div>
79+
</div>
80+
</div>
81+
<!-- COPY TILL HERE -->
82+
83+
84+
85+
86+
87+
88+
89+
90+
91+
92+
93+
94+
95+
96+
97+
98+
99+
100+
</div>
101+
<br><br><br><br><br><br>
102+
103+
</div>
104+
105+
<div class="foot">
106+
<div class="container h-100 text-center">
107+
<p>Made with <i class="fas fa-heart"></i> by <strong>DSCBVP</strong></p>
108+
</div>
109+
</div>
110+
111+
<!-- Optional JavaScript -->
112+
<!-- jQuery first, then Popper.js, then Bootstrap JS -->
113+
<script src="https://code.jquery.com/jquery-3.2.1.slim.min.js" integrity="sha384-KJ3o2DKtIkvYIK3UENzmM7KCkRr/rE9/Qpg6aAZGJwFDMVNA/GpGFF93hXpG5KkN"
114+
crossorigin="anonymous"></script>
115+
<script src="https://cdnjs.cloudflare.com/ajax/libs/popper.js/1.12.9/umd/popper.min.js" integrity="sha384-ApNbgh9B+Y1QKtv3Rn7W3mgPxhU9K/ScQsAP7hUibX39j7fakFPskvXusvfa0b4Q"
116+
crossorigin="anonymous"></script>
117+
<script src="https://maxcdn.bootstrapcdn.com/bootstrap/4.0.0/js/bootstrap.min.js" integrity="sha384-JZR6Spejh4U02d8jOt6vLEHfe/JQGiRRSQQxSfFWpi1MquVdAyjUar5+76PVCmYl"
118+
crossorigin="anonymous"></script>
119+
</body>
120+
121+
</html>

0 commit comments

Comments
 (0)