Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Binary file added .DS_Store
Binary file not shown.
Binary file added assets/.DS_Store
Binary file not shown.
Binary file added assets/images/.DS_Store
Binary file not shown.
Binary file added assets/images/aditya-vyas-542857-unsplash.jpg
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 assets/images/desktop-background.jpg
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
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 assets/images/github.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 assets/images/linkedin.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 assets/images/profile-pic.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 assets/images/twitter.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
56 changes: 56 additions & 0 deletions index.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
body{
background: url("assets/images/aditya-vyas-542857-unsplash.jpg") no-repeat center center fixed;
background-size: cover;
font-family: 'Ubuntu', sans-serif;
}

.intro-card{
margin: auto;
width: 50%;
text-align: center;
padding: 10px;
color: #F7F7F7;
}

h1{
font-weight: normal;
}

.profile-pic{
border-radius: 50%;
border: 5px solid #644439;
}

.row {
display: flex;
}

.column {
flex: 33.33%;
padding: 50px;
display: block;
text-align: center;
margin-left: auto;
margin-right: auto;
}

.icon{
opacity: 0.6;
transition: opacity 1s ease-in-out;
}

.icon:hover{
opacity: 1;
transition: opacity 1s ease-in-out;
}

.footer{
position: fixed;
left: 0;
bottom: 0;
width: 100%;
background-color: #011C27;
opacity: 0.5;
color: #C0C1CD;
text-align: center;
}
47 changes: 47 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
<!DOCTYPE html>
<html>
<head>
<link rel="stylesheet" type="text/css" href="index.css">
<link href="https://fonts.googleapis.com/css?family=Ubuntu" rel="stylesheet">
<title>Ollie Crook</title>
</head>

<body>
<div class="intro-card">
<h1>Hi! My name is Ollie Crook.</h1>
<img class="profile-pic" src="assets/images/profile-pic.png"
width="200" height="200" alt="Ollie Crook">
<h2>Right now I'm learning how to work as a software engineer</h2>
<h4>Over the next few weeks I'll be learning JavaScript, React,
Ajax, SQL, Redux and more.</h4>
<p>Bare with me. It's a work in progress.</p>
</div>
</body>

<div class="row">

<div class="column">
<a href="https://twitter.com/oilyquack" target="_blank">
<img class="icon" src="assets/images/twitter.png" height="64" width="64">
</a>
</div>

<div class="column">
<a href="https://www.linkedin.com/in/ollie-crook/" target="_blank">
<img class="icon" src="assets/images/linkedin.png">
</a>
</div>

<div class="column">
<a href="https://github.com/oilyquack" target="_blank">
<img class="icon" src="assets/images/github.png">
</a>
</div>

</div>

<div class="footer">
<p>Background Photo by Aditya Vyas on Unsplash</p>
<p>Web Design &copy; Oliver Crook 2018</p>
</div>
</html>