Skip to content

Commit

Permalink
Revert "Another commit with many small fixes [Urgent]"
Browse files Browse the repository at this point in the history
  • Loading branch information
mariobehling committed Dec 25, 2014
1 parent 2665fd8 commit a7fed70
Show file tree
Hide file tree
Showing 17 changed files with 364 additions and 220 deletions.
32 changes: 25 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Fossasia's site for Google Code-in

This repository has been created to save files of Google Code-In FOSSASIA's website telling about GCI 2014 mentors and students.
---
GCI (Google Code-In) is annual contest sponsored by Google, which directed for students of middle and secondary schools.
Students have to be between 13 and 17 years old, they also have to upload parental consent and document, which proofs their attendance to pre-university institution.
Main goal of contest is to propagate open-source idea between young people and give them possibility to solve tasks for partnering organizations.
Expand All @@ -20,12 +20,12 @@ For solving tasks students can get many prizes. Grand Prize is founded by Google

Contest is hosted on Melange system. Its website is: http://www.google-melange.com/gci/homepage/google/gci2014

## About

---
FOSSASIA is Free and Open Source Software (FOSS) event for developers, officials and users in South-East Asia. Its main goal is fostering FOSS projects in Asia.
This year FOSSASIA is one of mentoring organizations during Google Code-In.

## Developers
---
## GCI Students guide

There's number of tasks with a wide variety outthere. Feel free to claim and work on!

Expand All @@ -48,7 +48,24 @@ There you can see guidelines: http://www.google-melange.com/gci/task/view/google

6) Enter command `git add images/students/nameofyourphoto.yourfilextenstion`

7) Use editor to open index.html file in main directory, look for section for students. Copy a student's section and make changes to it. Add your name, photo, and social network details.
7) Use editor to open index.html file in main directory, look for section for students and using samples add your name and photo to it. You can see example of code below:

```html
<div class="sympl onethird">
<section class="person person--student">
<div class="person__img">
<div class="person__img__info"><div class="person__img__info__cont">
<a href="https://twitter.com/YOURTWITTER"><i class="icon-twitter"></i></a> <!-- You can remove this line -->
<a href="http://github.com/YOURGITHUB"><i class="icon-github"></i></a> <!-- You can remove this line -->
</div></div>
<img src="images/students/NAMEOFYOURPHOTO.EXTENSTIONOFYOURPHOTO">
</div>
<h1 class="person__name">YOUR NAME THERE</h1>
</section>
</div>
```



8) Enter command `git add index.html`

Expand All @@ -62,7 +79,8 @@ There you can see guidelines: http://www.google-melange.com/gci/task/view/google

13) Congrats! Now wait until it will be reviewed!

---
URL of website: http://fossasia.github.io/
URL of main FOSSASIA's website: http://fossasia.org/
FOSSASIA's Facebook: http://facebook.com/fossasia
FOSSASIA's Twitter: http://twitter.com/fossasia
FOSSASIA's Twitter: http://twitter.com/fossasia
Binary file removed images/fossasia-light.png
Binary file not shown.
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
234 changes: 135 additions & 99 deletions index.html

Large diffs are not rendered by default.

37 changes: 25 additions & 12 deletions javascripts/main.js
Original file line number Diff line number Diff line change
Expand Up @@ -77,19 +77,34 @@ $(document).ready(function () {
changeTitle();
}

$(window).on('resize', caller);
$(window).trigger('resize')
window.onload = caller();
window.addEventListener("resize", caller);

// Scrolling menu

$(window).on('scroll', function() {
if ( parseFloat($(window).scrollTop()) >= parseFloat($('.masthead').height()) ) {
$('.masthead').removeClass('masthead--plain')
// helper function to detect small screens
function detectmob() {
if(window.innerWidth < 700) {
return true;
} else {
$('.masthead').addClass('masthead--plain')
return false;
}
});
}

// mobile version background
if(detectmob()){
for (var i = 0;i < 9;i++){
num = i+1;
elem = '#slide'+num;
if(num%2 == 1){
color = '#f6f6f6';
}
else{
color = '#fff';
}
$(elem).css('background', color);
}
// set about text black
$('#slide1 p').css('color', '#000');
}

$('.tweets-feed').each(function(index) {
$(this).attr('id', 'tweets-' + index);
Expand Down Expand Up @@ -123,6 +138,4 @@ $(document).ready(function () {
twitterFetcher.fetch($('#tweets-' + index).attr('data-widget-id'), '', 5, true, false, true, '', false, handleTweets, false);

});


});
});
6 changes: 6 additions & 0 deletions js/jquery-1.10.2.min.js

Large diffs are not rendered by default.

8 changes: 8 additions & 0 deletions js/waypoints.min.js

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

Loading

0 comments on commit a7fed70

Please sign in to comment.