-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathindex.html
executable file
·140 lines (117 loc) · 3.32 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
<!DOCTYPE html>
<html lang="en">
<head>
<link rel='shortcut icon' type='image/x-icon' href='./favicon.ico' />
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="description" content="Portfolio Site">
<meta name="author" content="Patrick Kovach-Long">
<title>Patrick Kovach-Long</title>
<style>
* {
padding: 0;
margin: 0;
text-decoration: none;
list-style: none;
font-weight: 400;
font-size: 18px;
}
#dots {
position: absolute;
top: 0;
left: 0;
background: #1A3742;
background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#1A3742), to(#9EA183));
background-image: -webkit-linear-gradient(top, #1A3742, #9EA183);
background-image: -moz-linear-gradient(top, #1A3742, #9EA183);
background-image: -ms-linear-gradient(top, #1A3742, #9EA183);
background-image: -o-linear-gradient(top, #1A3742, #9EA183);
}
#author {
color: #9EA183;
font-family: monospace;
text-align: center;
z-index: 2;
}
li:hover {
background: #ffff33;
}
section {
background-color: #1A3742;
border-radius: 5px;
color: #FFF;
}
li:hover a {
color: #1A3742;
}
a {
color: #FFF;
padding: 0 15vw;
}
p {
padding: 10px;
}
h1 {
padding-top: 5px;
}
h1, h2 {
font-size: 20px;
}
h3 {
margin-bottom: 10px;
padding-bottom: 5px;
}
.line {
height: 1px;
background: -webkit-gradient(linear, 0 0, 100% 0, from(#ffff33), to(#ffff33), color-stop(50%, #9EA183));
}
main {
display: flex;
margin: 25vh;
align-items: center;
justify-content: center;
}
article {
margin: auto;
width: 50vw;
}
ul {
padding: 10px;
}
</style>
<!-- Canvas Animation -->
<script src="./js/d.js" charset="utf-8"></script>
<!-- Analytics -->
<script>
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','https://www.google-analytics.com/analytics.js','ga');
ga('create', 'UA-76782463-1', 'auto');
ga('send', 'pageview');
</script>
</head>
<body>
<main>
<article id="author">
<section>
<h1>Patrick</h1>
<h2>Kovach-Long</h2>
<div class="line"></div>
<h3>Web Developer and Educator</h3>
</section>
<section>
<p>Experience building applications and sparking enthusiasm.</p>
<p>Passions are intuitive UIs, client needs, and learners taking their first step.</p>
<ul>
<li><a href="./Patrick_K_Long_Resume.pdf">Resume</a></li>
<li><a href="https://github.com/pklong">Github</a></li>
<li><a href="https://linkedin.com/in/pklong">LinkedIn</a></li>
</ul>
</section>
</article>
</main>
<canvas id='dots'></canvas>
</body>
</html>