Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added assets/img/gsoc.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/mascot.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added assets/img/rat.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
62 changes: 58 additions & 4 deletions assets/stylesheets/styles.scss
Original file line number Diff line number Diff line change
Expand Up @@ -846,9 +846,62 @@ table.calendar-table{
}
}

// Styling GSOC Pages

.gsoc-header {
text-align: center;
padding-top: 10px;
display: flex;
flex-wrap: nowrap;
justify-content: center;
.logo_rat{
width: 25vmin;
height: auto;
}
.mascot{
width: 25vmin;
height: auto;
}
.logo_gsoc{
width: 50vw;
}
div{
flex-grow: 1;
margin: auto 0;
text-align: center;
padding: 10px;
}
img{
margin: auto;
}
#gsoc-heading-cont{
flex-grow: 3 !important;
}
.main-heading{
font-size: 4vmax;
font-weight: 600;
font-family: 'Times New Roman', Times, serif;
color: #757575;
}
@media screen and (max-width: 600px) {
flex-wrap: wrap;
justify-content: flex-start;
.mascot{
display: none;
}
.rat-cont{
order: 2;
flex-grow: 1;
}
.logo_gsoc{
width: 90vw;
}
div{
padding: 0 !important;
}
.gsoc-heading-cont{
order: 1;
flex-grow: 1;
}
}
}

.gsoc-about {
Expand All @@ -862,6 +915,7 @@ table.calendar-table{
}
.about-content {
text-align: left;
padding: 20px;
ul {
margin-left: 10px;
}
Expand All @@ -872,7 +926,7 @@ table.calendar-table{
}

.gsoc-speakers {
padding: 10px;
padding: 50px 10px 50px 10px;
font-size: 1.3rem;
h2, .speaker-content {
text-align: center;
Expand Down Expand Up @@ -909,7 +963,7 @@ table.calendar-table{
.gsoc-itinerary {
text-align: center;
font-size: 1.3rem;
padding: 10px;
padding: 50px 10px 50px 10px;
.itinerary {
table {
margin: 0 auto 0 auto;
Expand Down
27 changes: 21 additions & 6 deletions gsocevent.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,17 @@
permalink: /gsocevent
---
<main class="container-full">
<section class="container-full">
<div class="gsoc-header highlight">
<h1>Introduction to Google Summer of Code</h1>
<section class="gsoc-header">
<div class="rat-cont">
<h4>Sponsored By :</h4>
<img src="assets/img/rat.png" alt="Road Ahead Technologies" class="logo_rat">
</div>
<div id='gsoc-heading-cont'>
<span class="main-heading">Inroduction to</span>
<img src="assets/img/gsoc.png" alt="Google Summer Of Code" class="logo_gsoc">
</div>
<div>
<img src="assets/img/mascot.png" alt="CodeDocs" class="mascot">
</div>
</section>
<section>
Expand Down Expand Up @@ -38,16 +46,23 @@ <h2>Our Speakers</h2>
<div class="speaker-info">
<p>Himanshu Dixit</p>
<p>Gsoc 2016 with Drupal</p>
<button class="btn"><a href="https://linkedin.com/in/ishimanshudixit">Connect on Linkedin</a></button>

<button class="btn">
<a href="https://linkedin.com/in/ishimanshudixit" target="_blank">
Connect on Linkedin
</a>
</button>
</div>
</div>
<div class="speaker">
<img src="assets/img/gsoc-speakers/nitanshu.jpeg" alt="" class="speaker-img">
<div class="speaker-info">
<p>Nitanshu Vashistha</p>
<p>Gsoc 2018 with Coala</p>
<button class="btn"><a href="https://linkedin.com/in/nitanshu">Connect on Linkedin</a></button>
<button class="btn">
<a href="https://linkedin.com/in/nitanshu" target="_blank">
Connect on Linkedin
</a>
</button>
</div>
</div>
</div>
Expand Down