Skip to content

Commit

Permalink
Add Demo Content to the Event and Team Page (JIITODC#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
aayushmau5 authored and akshatagarwl committed Sep 25, 2020
1 parent d0629e2 commit 95da4f8
Show file tree
Hide file tree
Showing 5 changed files with 74 additions and 10 deletions.
2 changes: 1 addition & 1 deletion src/node_modules/@sapper/internal/manifest-client.mjs

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

19 changes: 10 additions & 9 deletions src/node_modules/@sapper/service-worker.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

26 changes: 26 additions & 0 deletions src/routes/events.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,37 @@


<div class="main-title">EVENTS</div>
<div class="event-container">
<div class="left">
<img src="Poster.png" alt="event poster">
</div>
<div class="right">
<h2 class="title">HACKTOBERFEST</h2>
<p class="about">WIN A TSHIRT AT HACKTOBERFEST BY CONTRIBUTING TO OPEN SOURCE PROJECTS.</p>
<p class="time">31 FEB 2023 12:30AM</p>
<p class="location">LT5</p>
</div>
</div>


<style>
.main-title {
font-size: 3rem;
font-weight: bold;
}
.event-container {
display: flex;
margin-top: 2rem;
padding-bottom: 1rem;
border-bottom: 1px solid white;
}
.right {
padding: 0 0 0 2rem;
}
.title {
font-size: 2rem;
}
</style>
37 changes: 37 additions & 0 deletions src/routes/team.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,48 @@


<div class="main-title">TEAMS</div>
<h2 class="team-type">Core Members</h2>
<div class="team-container">
<div class="team-member">
<div class="left">
<img src="Poster.png" alt="event poster">
</div>
<div class="right">
<h2 class="name">HACKTOBERFEST</h2>
<p class="about">WORLD’S GREATEST DETECTIVE. HE SOLVES CRIME AND HATES THE WORLD. GO TO HIS REPO TO SOLVE MURDER
MYSTERIES.</p>
<div class="socails">
<a href="#">GITHUB</a>
<a href="#">FACEBOOK</a>
<a href="#">TWITTER</a>
</div>
</div>
</div>
</div>


<style>
.main-title {
font-size: 3rem;
font-weight: bold;
}
.team-container {
margin-top: 2rem;
padding-bottom: 1rem;
border-bottom: 1px solid white;
}
.team-member {
display: flex;
}
.right {
padding: 0 0 0 2rem;
}
.name {
font-size: 3rem;
font-weight: bold;
}
</style>
Binary file added static/Poster.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

0 comments on commit 95da4f8

Please sign in to comment.