-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
131 lines (109 loc) · 3.23 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
<!DOCTYPE html>
<html>
<head>
<meta name="viewport" content="width=device-width, initial-scale=1">
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
<style>
/* Google Fonts */
@import url(https://fonts.googleapis.com/css?family=Anonymous+Pro);
/* Global */
html {
min-height: 100%;
overflow: hidden;
}
body {
height: calc(100vh - 8em);
padding: 4em;
color: rgba(255, 255, 255, .75);
font-family: 'Anonymous Pro', monospace;
background-color: rgb(25, 25, 25);
}
.line-1 {
position: relative;
top: 30%;
width: 24em;
margin: 0 auto;
border-right: 2px solid rgba(255, 255, 255, .75);
font-size: 280%;
text-align: center;
white-space: nowrap;
overflow: hidden;
transform: translateY(-50%);
}
.line-2 {
position: relative;
top: 31%;
width: 24em;
margin: 0 auto;
font-size: 100%;
text-align: center;
}
/* Animation */
.anim-typewriter {
animation: typewriter 4s steps(12) 1s 1 normal both,
blinkTextCursor 500ms steps(44) infinite normal;
}
@keyframes typewriter {
from {
width: 0;
}
to {
width: 6.5em;
}
}
@keyframes blinkTextCursor {
from {
border-right-color: rgba(255, 255, 255, .75);
}
to {
border-right-color: transparent;
}
}
a {
padding: 1em;
color: inherit;
}
div {
opacity: 1;
transition: opacity 500ms;
}
div.show {
opacity: 0;
}
#links {
visibility: hidden;
animation: css 0s 5.5s forwards;
}
@keyframes css {
to {
visibility: visible;
}
}
</style>
<!-- Global site tag (gtag.js) - Google Analytics -->
<script async src="https://www.googletagmanager.com/gtag/js?id=UA-158554098-1"></script>
<script>
window.dataLayer = window.dataLayer || [];
function gtag(){dataLayer.push(arguments);}
gtag('js', new Date());
gtag('config', 'UA-158554098-1');
</script>
</head>
<body>
<p class="line-1 anim-typewriter">Vaibhav Soni</p>
<div id='links' class="line-2">
<a href="https://www.linkedin.com/in/vaibhavsonigoldsmith" title="LinkedIn" target="_blank">
<i class="fa fa-2x fa-linkedin"></i>
</a>
<a href="https://github.com/Sonivaibhav26" title="Github" target="_blank">
<i class="fa fa-2x fa-github"></i>
</a>
<a href="https://angel.co/vaibhav-soni" title="Angellist" target="_blank">
<i class="fa fa-2x fa-angellist"></i>
</a>
<a download="vaibhav-soni.pdf" href="./resume.pdf" title="Download Resume">
<i class="fa fa-2x fa-file-o"></i>
</a>
</div>
</body>
</html>