-
Notifications
You must be signed in to change notification settings - Fork 1
/
index.html
128 lines (113 loc) · 3.22 KB
/
index.html
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
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
<!DOCTYPE html >
<html lang="en">
<head>
<meta charset="utf-8"/>
<link rel="icon" type="image/x-icon" href="icon.ico">
<meta name="viewport" content="width=device-width, initial-scale=1" />
<link href="https://fonts.googleapis.com/css?family=Fira+Sans" rel="stylesheet">
<title> Jeison Higuita Website </title>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-59147065-2"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-59147065-2');
</script>
<style>
body, html {
margin: 0;
padding: 0;
}
section {
display: flex;
flex-direction: column;
justify-content: center;
align-items: center;
height: 100%;
min-height: 100vh;
width: 100wh;
box-sizing: border-box;
padding: 1rem;
font-family: 'Fira Sans', sans-serif;
}
p {
font-size: 1rem;
text-align: center;
margin: 0;
margin-bottom: 2rem;
}
h1 {
text-align: center;
margin-bottom: .7rem;
font-size: 2rem;
transition: .3s ease-out all;
margin-top: 0;
}
h1:hover {
text-shadow:5px 5px 2px #00ffde, -5px -5px 2px #ff9393;
}
a {
color: black;
cursor: pointer;
padding: 4px;
}
a:hover {
background: #ff9393;
background: -webkit-linear-gradient(left, #ff9393 , #00ffde)
}
ul {
padding: 0;
display: flex;
margin: 0;
list-style: none;
}
li {
padding-right: 1rem;
}
li:last-child {
padding-right: 0;
}
@keyframes bar {
0%{background-position:0% 100%}
50%{background-position:125% 100%}
100%{background-position:0% 100%}
}
.bar {
height: 2rem;
position: fixed;
bottom: 0;
left: 0;
width: 150%;
background: #ff9393;
animation-name: bar;
animation-duration: 10s;
animation-delay: 1s;
animation-iteration-count: infinite;
background: -webkit-linear-gradient(left, #ff9393 10% , #00ffde, #ff9393 90%);
background-size: 200% 100%;
}
@media (min-width: 600px) {
h1 {
font-size: 4rem;
}
p {
font-size: 1.5rem;
}
}
</style>
</head>
<body>
<section>
<h1>Jeison Higuita</h1>
<p> Software Developer, Lifelong learner and Traveler.</p>
<ul>
<li><a target="_blank" href="https://github.com/jhta">Code</a></li>
<li><a target="_blank" href="https://medium.com/@jeisonhiguita">Stories</a></li>
<li><a target="_blank" href="https://www.linkedin.com/in/jeisonhiguita">Resumé</a></li>
<li><a target="_blank" href="https://unsplash.com/@jeison">Photo</a></li>
</ul>
</section>
<div class="bar"></div>
</body>
<html>