-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
2,506 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,80 @@ | ||
<!DOCTYPE html> | ||
<!--[if lt IE 7]> <html class="no-js lt-ie9 lt-ie8 lt-ie7"> <![endif]--> | ||
<!--[if IE 7]> <html class="no-js lt-ie9 lt-ie8"> <![endif]--> | ||
<!--[if IE 8]> <html class="no-js lt-ie9"> <![endif]--> | ||
<!--[if gt IE 8]><!--> <html class="no-js"> <!--<![endif]--> | ||
<head> | ||
<meta charset="utf-8"> | ||
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1"> | ||
<title>Rodrigo Deodoro</title> | ||
<meta name="description" content="Rodrigo Deodoro - Python Developer"> | ||
<meta name="viewport" content="width=device-width"> | ||
|
||
<link rel="stylesheet" href="static/css/main.css"> | ||
<link href='http://fonts.googleapis.com/css?family=Armata' rel='stylesheet' type='text/css'> | ||
|
||
<link rel="icon" type="image/png" href="/static/img/favicon.ico"> | ||
|
||
</head> | ||
<body> | ||
|
||
<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> | ||
|
||
<div class="jumbotron"> | ||
<h1>Rodrigo Deodoro</h1> | ||
<p class="lead">Python Developer</p> | ||
</div> | ||
|
||
<hr> | ||
|
||
<div class="center"> | ||
<span class="navlist"> | ||
<ul> | ||
<li> | ||
<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> | ||
</span> | ||
</div> | ||
|
||
</div> <!-- /container --> | ||
|
||
</body> | ||
<script> | ||
var _gaq=[['_setAccount','UA-42640893-1'],['_trackPageview']]; | ||
(function(d,t){var g=d.createElement(t),s=d.getElementsByTagName(t)[0]; | ||
g.src='//www.google-analytics.com/ga.js'; | ||
s.parentNode.insertBefore(g,s)}(document,'script')); | ||
</script> | ||
</html> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
body { | ||
background-image: url("../img/bg-pattern.png"); | ||
padding-top: 60px; | ||
padding-bottom: 40px; | ||
color: white; | ||
font-family: Armata; | ||
/* Main marketing message and sign up button */ } | ||
body .container-narrow { | ||
margin: 0 auto; | ||
max-width: 700px; } | ||
body .container-narrow > hr { | ||
margin: 30px 0; } | ||
body .jumbotron { | ||
margin: 60px 0; | ||
text-align: center; } | ||
body .jumbotron h1 { | ||
font-size: 72px; | ||
line-height: 1; } | ||
body .center { | ||
text-align: center; } | ||
body .navlist { | ||
display: inline-block; } | ||
body .navlist a, body .navlist a:hover { | ||
text-decoration: none; } | ||
body .navlist ul { | ||
padding: 0 20px 0 20px; | ||
margin: auto; | ||
background-color: rgba(0, 0, 0, 0.4); | ||
list-style: none; } | ||
body .navlist ul li { | ||
display: inline; } | ||
body .navlist ul li img { | ||
padding: 20px 10px 20px 10px; } | ||
body .flask { | ||
position: fixed; | ||
top: 5px; | ||
right: 5px; | ||
opacity: 0.3; } | ||
|
||
@media all and (max-width: 699px) { | ||
body { | ||
padding-top: 10%; } | ||
body .navlist ul li img { | ||
width: 20%; | ||
padding: 4% 2% 4% 2%; } | ||
body .flask { | ||
display: none; } } |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,75 @@ | ||
body { | ||
background-image:url('../img/bg-pattern.png'); | ||
padding-top: 60px; | ||
padding-bottom: 40px; | ||
color: white; | ||
font-family: Armata; | ||
|
||
.container-narrow { | ||
margin: 0 auto; | ||
max-width: 700px; | ||
} | ||
.container-narrow > hr { | ||
margin: 30px 0; | ||
} | ||
|
||
/* Main marketing message and sign up button */ | ||
.jumbotron { | ||
margin: 60px 0; | ||
text-align: center; | ||
h1 { | ||
font-size: 72px; | ||
line-height: 1; | ||
} | ||
} | ||
|
||
.center { | ||
text-align: center; | ||
} | ||
|
||
.navlist { | ||
// width: 90%; | ||
display: inline-block; | ||
a, a:hover { | ||
text-decoration: none; | ||
} | ||
ul { | ||
padding: 0 20px 0 20px; | ||
margin: auto; | ||
background-color: rgba(0, 0, 0, 0.4); | ||
list-style: none; | ||
li { | ||
display:inline; | ||
img { | ||
padding: 20px 10px 20px 10px; | ||
} | ||
} | ||
} | ||
} | ||
|
||
.flask { | ||
position: fixed; | ||
top: 5px; | ||
right: 5px; | ||
opacity: 0.3; | ||
} | ||
} | ||
|
||
@media all and (max-width: 699px) { | ||
body { | ||
padding-top: 10%; | ||
.navlist { | ||
ul { | ||
li { | ||
img { | ||
width: 20%; | ||
padding: 4% 2% 4% 2%; | ||
} | ||
} | ||
} | ||
} | ||
.flask { | ||
display: none; | ||
} | ||
} | ||
} |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
|
Oops, something went wrong.