Skip to content

Commit

Permalink
Initial commit.
Browse files Browse the repository at this point in the history
  • Loading branch information
elikmiller committed Jul 27, 2018
0 parents commit 4fe3d02
Show file tree
Hide file tree
Showing 10 changed files with 174 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
.DS_Store
6 changes: 6 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
# Eli K Miller
## Front-End Developer

[View Resume](https://elikmiller.github.io/resume/)

[View Website](https://elikmiller.com)
Binary file added escheresque.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added [email protected]
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added favicon.ico
Binary file not shown.
42 changes: 42 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
<!doctype html>

<html lang="en">

<head>
<meta charset="utf-8">
<title>Eli K Miller - Front-End Developer</title>
<meta name="description" content="Front-End Developer">
<meta name="author" content="Eli K Miller">
<link rel="stylesheet" href="styles.css">
<link rel="stylesheet" href="https://use.fontawesome.com/releases/v5.2.0/css/all.css" integrity="sha384-hWVjflwFxL6sNzntih27bfxkr27PmbbK/iSvJ+a4+0owXq79v+lsFkW54bOGbiDQ" crossorigin="anonymous">
<link rel="stylesheet" href="https://fonts.googleapis.com/css?family=Quicksand:300|Raleway">
<link rel="icon" type="image/png" sizes="32x32" href="favicon-32x32.png">
<link rel="icon" type="image/png" sizes="16x16" href="favicon-16x16.png">
<link rel="shortcut icon" href="favicon.ico">
</head>

<body>
<div class="card">
<h1 class="name">Eli K Miller</h1>
<h2 class="title">Front-End Developer</h2>
<ul class="contact-info">
<li id="github" class="contact-info-item">
<a class="contact-info-link" href="https://github.com/elikmiller" target="_blank">
<i class="fab fa-github-square"></i>
</a>
</li>
<li id="linkedin" class="contact-info-item">
<a class="contact-info-link" href="https://www.linkedin.com/in/elikmiller/" target="_blank">
<i class="fab fa-linkedin"></i>
</a>
</li>
<li id="email" class="contact-info-item">
<a class="contact-info-link" href="mailto:[email protected]">
<i class="fas fa-envelope-square"></i>
</a>
</li>
</ul>
</div>
</body>

</html>
Binary file added logo.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
125 changes: 125 additions & 0 deletions styles.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,125 @@
html {
height: 100%;
width: 100%;
font-size: 8px;
}

body {
background-color: #121214;
background-image: url('./escheresque.png'); /* Background pattern from Toptal Subtle Patterns */
box-sizing: border-box;
color: #f7f7ff;
font-family: 'Quicksand', sans-serif;
height: 100%;
margin: 0;
padding: 1rem;
width: 100%;
}

body:after {
content: '';
position: absolute;
top: 0; left: 0; bottom: 0; right: 0;
background: radial-gradient(circle, transparent 0%, #000 300%);
mix-blend-mode: difference;
pointer-events: none;
}

div.card {
padding: 4rem;
position: absolute;
top: 15%;
}

h1.name {
animation: fadein 2s ease-in-out 0s;
animation-fill-mode: forwards;
font-family: 'Raleway', sans-serif;
font-size: 5rem;
font-weight: normal;
line-height: normal;
margin: 0 0 1.5rem;
opacity: 0;
text-transform: uppercase;
white-space: nowrap;
}

h2.title {
animation: fadein 2s ease-in-out 0.1s;
animation-fill-mode: forwards;
font-family: 'Quicksand', sans-serif;
font-size: 2.5rem;
font-weight: 300;
line-height: normal;
margin: 0 0 1.5rem;
opacity: 0;
white-space: nowrap;
}

ul.contact-info {
list-style: none;
margin: 0;
padding: 0;
}

li.contact-info-item {
display: inline-block;
font-size: 3rem;
margin-right: 2rem;
opacity: 0;
}

#github {
animation: fadein 2s ease-in-out 0.2s;
animation-fill-mode: forwards;
}

#linkedin {
animation: fadein 2s ease-in-out 0.3s;
animation-fill-mode: forwards;
}

#email {
animation: fadein 2s ease-in-out 0.4s;
animation-fill-mode: forwards;
}

a.contact-info-link {
color: #f7f7ff;
outline: none;
transition: color ease-in-out 0.05s;
}

a.contact-info-link:hover,
a.contact-info-link:focus {
color: #2c75ff;
}

a.contact-info-link:active {
color: #235dcc;
}

@keyframes fadein {
from {
opacity: 0;
}
to {
opacity: 1;
}
}

@media (min-width: 576px) {
html {
font-size: 12px;
}
}

@media (min-width: 768px) {
html {
font-size: 16px;
}
}

@media (min-width: 992px) {}

@media (min-width: 1200px) {}

0 comments on commit 4fe3d02

Please sign in to comment.