Skip to content

Commit

Permalink
added description and badge to main html
Browse files Browse the repository at this point in the history
  • Loading branch information
roddds committed Aug 3, 2013
1 parent 347d9a1 commit b77124a
Show file tree
Hide file tree
Showing 3 changed files with 59 additions and 37 deletions.
11 changes: 8 additions & 3 deletions static/css/main.css
Original file line number Diff line number Diff line change
Expand Up @@ -13,9 +13,9 @@ body {
body .jumbotron {
margin: 60px 0;
text-align: center; }
body .jumbotron h1 {
font-size: 72px;
line-height: 1; }
body .jumbotron h1 {
font-size: 72px;
line-height: 1; }
body .navlist a:hover {
text-decoration: none; }
body .navlist ul {
Expand All @@ -30,3 +30,8 @@ body {
body .navlist ul .short {
padding-right: 10px;
padding-left: 5px; }
body .flask {
position: fixed;
top: 5px;
right: 5px;
opacity: 0.3; }
16 changes: 12 additions & 4 deletions static/css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,12 @@ body {
.jumbotron {
margin: 60px 0;
text-align: center;
h1 {
font-size: 72px;
line-height: 1;
}
}
.jumbotron h1 {
font-size: 72px;
line-height: 1;
}

.navlist {
a:hover {
text-decoration: none;
Expand All @@ -42,4 +43,11 @@ body {
}
}
}

.flask {
position: fixed;
top: 5px;
right: 5px;
opacity: 0.3;
}
}
69 changes: 39 additions & 30 deletions templates/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<title>Rodrigo Deodoro</title>
<meta name="description" content="">
<meta name="description" content="Rodrigo Deodoro - Python Developer">
<meta name="viewport" content="width=device-width">

<!-- <link rel="stylesheet" href="static/css/bootstrap.min.css"> -->
Expand All @@ -24,6 +24,15 @@
<p class="chromeframe">You are using an <strong>outdated</strong> browser. Please <a href="http://browsehappy.com/">upgrade your browser</a> or <a href="http://www.google.com/chromeframe/?redirect=true">activate Google Chrome Frame</a> to improve your experience.</p>
<![endif]-->

<div class="flask">
<a href="http://flask.pocoo.org/"><img
src="http://flask.pocoo.org/static/badges/made-with-flask-s.png"
border="0"
alt="made with Flask"
title="made with Flask">
</a>
</div>

<div class="container-narrow">

<hr>
Expand All @@ -37,34 +46,35 @@ <h1>Rodrigo Deodoro</h1>

</div> <!-- /container -->

<div class="navlist">
<ul>
<li class="short">
<a href="mailto:[email protected]">
<img src="/static/img/gmail.png" alt="logo gmail" title="email">
</a>
</li>

<li>
<a href="http://facebook.com/thisisrod">
<img src="/static/img/facebook.png" alt="logo facebook" title="facebook">
</a>
</li>

<li>
<a href="http://www.linkedin.com/profile/view?id=46681796">
<img src="/static/img/linkedin.png" alt="logo linkedin" title="linkedin">
</a>
</li>

<li>
<a href="https://github.com/roddds">
<img src="/static/img/github.png" alt="logo github" title="github">
</a>
</li>
</ul>
</div>

<div class="navlist">
<ul>
<li class="short">
<a href="mailto:[email protected]">
<img src="/static/img/gmail.png" alt="logo gmail" title="email">
</a>
</li>

<li>
<a href="http://facebook.com/thisisrod">
<img src="/static/img/facebook.png" alt="logo facebook" title="facebook">
</a>
</li>

<li>
<a href="http://www.linkedin.com/profile/view?id=46681796">
<img src="/static/img/linkedin.png" alt="logo linkedin" title="linkedin">
</a>
</li>

<li>
<a href="https://github.com/roddds">
<img src="/static/img/github.png" alt="logo github" title="github">
</a>
</li>
</ul>
</div>

</body>

<!-- <script src="//ajax.googleapis.com/ajax/libs/jquery/1.10.1/jquery.min.js"></script> -->
<!-- <script>window.jQuery || document.write('<script src="static/js/vendor/jquery-1.10.1.min.js"><\/script>')</script> -->
Expand All @@ -79,5 +89,4 @@ <h1>Rodrigo Deodoro</h1>
g.src='//www.google-analytics.com/ga.js';
s.parentNode.insertBefore(g,s)}(document,'script'));
</script>
</body>
</html>

0 comments on commit b77124a

Please sign in to comment.