Skip to content

Commit

Permalink
First commit
Browse files Browse the repository at this point in the history
  • Loading branch information
mikevic committed Jan 21, 2014
0 parents commit aa2da27
Show file tree
Hide file tree
Showing 12 changed files with 8,404 additions and 0 deletions.
5,967 changes: 5,967 additions & 0 deletions css/bootstrap.css

Large diffs are not rendered by default.

11 changes: 11 additions & 0 deletions css/bootstrap.min.css

Large diffs are not rendered by default.

77 changes: 77 additions & 0 deletions css/custom.css
@@ -0,0 +1,77 @@
body {
padding-top: 100px;
}

/* Custom container */
.container-full {
margin: 0 auto;
width: 100%;
}

#aiesec_topbanner{
box-shadow:0 0 20px #000;
width:100%;
background:#204887;
font-family:Arial;
}

#aiesec_topbanner > .pull-right{
float:right;
}

#aiesec_topbanner > .clearfix{
clear:both;
}

#aiesec_topbanner img{
float:left;
margin:8px 0;
}

#aiesec_topbanner #nav{
font-size:11px;

text-align:right;
margin:0;
margin-right:4px;
margin-top:5px;
}

#aiesec_topbanner #nav > li{
padding:0;
margin:0;
display:inline-block;
vertical-align: bottom;
height:25px;
}

#aiesec_topbanner #nav li a{
line-height:20px;
height:20px;
padding:4px 8px 4px 8px;
border-radius:3px;
color:#d0daea;
text-decoration:none;
-webkit-transition: all linear 0.2s;
-moz-transition: all linear 0.2s;
-ms-transition: all linear 0.2s;
-o-transition: all linear 0.2s;
transition: all linear 0.2s;
}

#aiesec_topbanner #nav li.sel > a{
color:#6c86b0;
color:#fff;
background:#163c78;
background:#719d3e;
box-shadow:0 0 2px rgba(255,255,255,0.5) inset;
}

#aiesec_topbanner #nav li a:hover{
color:#fff;
text-decoration:none;
}

#aiesec_topbanner #nav li.sel > a:hover{
cursor:default;
}
Binary file added fonts/glyphicons-halflings-regular.eot
Binary file not shown.
229 changes: 229 additions & 0 deletions fonts/glyphicons-halflings-regular.svg
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added fonts/glyphicons-halflings-regular.ttf
Binary file not shown.
Binary file added fonts/glyphicons-halflings-regular.woff
Binary file not shown.
8 changes: 8 additions & 0 deletions footer.php
@@ -0,0 +1,8 @@

<!-- Bootstrap core JavaScript
================================================== -->
<!-- Placed at the end of the document so the pages load faster -->
<script src="https://code.jquery.com/jquery-1.10.2.min.js"></script>
<script src="js/bootstrap.min.js"></script>
</body>
</html>
66 changes: 66 additions & 0 deletions header.php
@@ -0,0 +1,66 @@

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="">
<meta name="author" content="">
<link rel="shortcut icon" href="../../docs-assets/ico/favicon.png">
<title>DAAL</title>
<!-- Bootstrap core CSS -->
<link href="css/bootstrap.css" rel="stylesheet">
<!-- Custom styles for this template -->
<link href="css/custom.css" rel="stylesheet">
<!-- Just for debugging purposes. Don't actually copy this line! -->
<!--[if lt IE 9]><script src="../../docs-assets/js/ie8-responsive-file-warning.js"></script><![endif]-->
<!-- HTML5 shim and Respond.js IE8 support of HTML5 elements and media queries -->
<!--[if lt IE 9]>
<script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
<script src="https://oss.maxcdn.com/libs/respond.js/1.3.0/respond.min.js"></script>
<![endif]-->
</head>
<body>
<!-- Fixed navbar -->
<div class="navbar navbar-default navbar-fixed-top" role="navigation">
<div id = "aiesec_topbanner">
<a href = "https://www.aiesec.org/">
<img src = "https://s3-eu-west-1.amazonaws.com/aiesecorg/static/img/logo_white.png" alt = "AIESEC Logo"/></a>
<ul class="pull-right" id = "nav">
<li><a href = "https://www.aiesec.org/#/home">AIESEC Home</a></li>
<!-- ><li class = "sel"><a href = "#">I'm Selected!</a></li> -->
<li><a href = "https://opportunities.aiesec.org">Opportunities</a></li>
<li><a href = "http://blog.aiesec.org">Blog</a></li>
</ul>
<div class = "clearfix"></div>
</div>
<div class="container-full">
<div class="navbar-collapse collapse">
<div class="navbar-header">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="navbar-brand" href="#">DAAL 2013</a>
</div>
<ul class="nav navbar-nav">
<li><a href="index.php">Home</a></li>
<li><a href="how-to-use.php">How to Use</a></li>
<li><a href="daal.php">DAAL</a></li>
</ul>
</div><!--/.nav-collapse -->
</div>
</div>
37 changes: 37 additions & 0 deletions index.php
@@ -0,0 +1,37 @@
<?php
require 'header.php';
?>
<div class="container-full">

<!-- Main component for a primary marketing message or call to action -->

<script type='text/javascript' src='https://www.google.com/jsapi'></script>
<script type='text/javascript'>
google.load('visualization', '1', {'packages': ['geochart']});
google.setOnLoadCallback(drawRegionsMap);

function drawRegionsMap() {
var data = google.visualization.arrayToDataTable([
['Country', 'Popularity'],
['Germany', 200],
['United States', 300],
['Brazil', 400],
['Canada', 500],
['France', 600],
['RU', 700]
]);

var options = {};

var chart = new google.visualization.GeoChart(document.getElementById('chart_div'));
chart.draw(data, options);
};
</script>

<div id="chart_div" style="width: 100%;"></div>

</div> <!-- /container -->
<?php
require 'footer.php';
?>

0 comments on commit aa2da27

Please sign in to comment.