-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
156 lines (132 loc) · 3.58 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
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
<!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">
<title>About – Alba Herrerias</title>
<meta name="author" content="Alba Herrerias" />
<link rel="preconnect" href="https://fonts.googleapis.com">
<link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
<link href="https://fonts.googleapis.com/css2?family=Inter:wght@200;400;700&display=swap" rel="stylesheet">
<style>
* {
box-sizing: border-box;
margin: 0;
padding: 0;
}
body {
-moz-osx-font-smoothing: grayscale;
-webkit-font-smoothing: antialiased;
align-items: center;
background-color: #1c1c1c;
color: #FEFEFE;
min-height: 100vh;
display: flex;
font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI',
Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue',
sans-serif;
font-size: 1.2em;
justify-content: center;
overflow: auto;
}
main {
max-width: 800px;
padding: 40px;
}
h1 {
font-size: 2.5em;
}
p {
margin: 20px 0;
}
a {
color: white;
transition: color 0.2s ease-in;
}
a:hover {
color: #EFB51A;
}
ul {
list-style: none;
}
li {
display: inline-block;
}
li:not(:first-child) {
margin-left: 20px;
}
footer {
margin-top: 40px;
}
.wave {
animation-delay: 800ms;
animation-duration: 1s;
animation-name: wave-animation;
animation-timing-function: linear;
display: inline-block;
transform-origin: 70% 70%;
}
@keyframes wave-animation {
0% {
transform: rotate(0deg);
}
25% {
transform: rotate(-10deg)
}
50% {
transform: rotate(14deg);
}
75% {
transform: rotate(-10deg);
}
100% {
transform: rotate(0deg);
}
}
@media (max-width: 800px) {
body {
font-size: 1.1em;
}
}
</style>
</head>
<body>
<!--
Look, a cat!
/ᐠ。‸。ᐟ\*ᵖᵘʳʳ*
-->
<main>
<h1>Hello <span class="wave">👋</span></h1>
<p>
I'm Alba Herrerías, a software developer specialized in full stack JS development. I have over <span
id="years">7</span> years of professional experience developing applications with technologies such as Angular,
Vue, Nuxt, AWS, Docker, Firebase, Flutter, Jest, NestJS, PostgreSQL and SCSS.
</p>
<p>
I love CSS and I enjoy using it every time I have the chance. I'm also interested in topics like
accessibility, performance, semantic HTML and open source.
</p>
<p>
I'm from the Canary Islands, Spain. I work remotely with the nicest people at <a
href="https://neighbourhood.ie/">The
Neighbourhoodies</a>. Besides work I enjoy reading books and going to the movies.
</p>
<footer>
<ul>
<li><a href="https://github.com/AlbaHerrerias">Github</a></li>
<li><a href="https://www.linkedin.com/in/alba-herrerias-ramirez/">Linkedin</a></li>
<li><a href="https://mastodon.social/@albaherrerias">Mastodon</a></li>
<li><a href="https://twitter.com/alba_dev">Twitter</a></li>
</ul>
</footer>
</main>
<script>
const years = new Date().getFullYear() - 2017;
const element = document.getElementById("years");
if (element !== element.innerText) {
element.innerText = years;
}
</script>
</body>
</html>