-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
66 lines (56 loc) · 2.36 KB
/
Copy pathindex.html
File metadata and controls
66 lines (56 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
<!doctype html>
<html lang="es">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<title>MG</title>
<link href='//fonts.googleapis.com/css?family=Marcellus+SC|Cabin' rel='stylesheet' type='text/css'>
<link rel="icon" href="favicon.ico" type="image/x-icon" />
<meta name="viewport" content="width=device-width, initial-scale=1, maximum-scale=1">
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-114388776-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-114388776-1');
</script>
<style>
* { padding: 0; margin: 0; }
body { background-color: #333; }
h1 { color:#ffcc99; font-family: 'Marcellus SC', serif; font-size: 25px; line-height: 30px; margin-bottom: 25px; -webkit-font-smoothing: antialiased;}
p { color: #fff; font-family: 'Cabin', sans-serif; font-size: 19px; line-height: 27px; margin-bottom: 22px; -webkit-font-smoothing: antialiased; }
a { color: #fff; font-weight: bold; text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.3); }
a:hover { color: #ffcc99; border-bottom: 1px solid rgba(255,255,255,1); }
#monogram { width: 50px; padding: 50px 0 0 0; margin: 0 auto 0 50px; }
#about { width: 360px; padding: 0 0 0 150px; margin: -50px 50px 0 auto !important; }
@media (max-width: 767px) {
#monogram { position: relative; width: auto; padding: 20px; margin: 0; }
#about { position: relative; width: auto; padding: 20px; margin: 0 !important; }
background-image { opacity: 0.2; }
}
</style>
</head>
<body>
<div id="monogram">
<img src="monograma.png" alt="MG" />
</div>
<div id="about">
<h1>Mauricio Galvis</h1>
<p>IT Project Manager.</p>
<a href="mailto:mauricio@galvis.co"><img src="mail.png" alt="Correo" width="32" /></a>
</div>
<!--include jquery & backstretch-->
<script type="text/javascript" src="https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js"></script>
<script type="text/javascript" src="jquery.backstretch.min.js"></script>
<script type="text/javascript">
$(function(){
$(window).resize(function(){
if($(this).width() >= 767){
$.backstretch("bg.jpg", {speed: 150});
}
})
.resize();//trigger resize on page load
});
</script>
</body>
</html>