Skip to content

Commit

Permalink
redesign: float headshot to the left of content
Browse files Browse the repository at this point in the history
  • Loading branch information
Noelle Daley committed Sep 21, 2023
1 parent 051f679 commit 7469a38
Show file tree
Hide file tree
Showing 5 changed files with 33 additions and 24 deletions.
8 changes: 8 additions & 0 deletions _layouts/about.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
---
layout: default
---
<div class="container">
<img src="img/andaley.jpg" class="me" alt="Noelle Daley headshot">
{{ content }}
</div>

2 changes: 1 addition & 1 deletion _layouts/default.html
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
<div class="wrapper">
{% include header.html %}

<section class="content" class="content">
<section class="content">
{{ content }}
</section>

Expand Down
2 changes: 1 addition & 1 deletion _sass/_colors.scss
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
$text-color: #252A2A;
$background-color: #f5f5f5;
$brand-color: #4D759D;

$grey-color: #828282;
$grey-color-light: lighten($grey-color, 40%);
$grey-color-dark: darken($grey-color, 25%);
$link-color: #4D759D;
$border-color: #afafaf;
41 changes: 22 additions & 19 deletions css/main.scss
Original file line number Diff line number Diff line change
Expand Up @@ -15,14 +15,14 @@ body {
}

.wrapper {
max-width: 800px;
max-width: 1000px;
margin: $spacing-unit auto;
padding: 0 0%;
}

a,
a:visited {
border-bottom: 1px dotted #afafaf;
border-bottom: 1px dotted $border-color;
text-decoration: none;
color: $text-color;
}
Expand All @@ -34,10 +34,7 @@ a:hover {

.logo {
font-family: $base-font-family;
font-weight: bold;
text-align: center;
text-decoration: none;
a { color: $link-color; }
}

.site-nav {
Expand All @@ -61,21 +58,11 @@ a:hover {
}
}

@media screen and (max-width: 600px) {
.logo {
margin-top: 80px;
}

.site-nav {
left: 0;
}
}

.me {
height: 150px;
border-radius: 50%;
margin: 0 auto 1em auto;
display: block;
height: 400px;
border-radius: 5%;
margin: 0 1.75em 0 0;
float: left;
}

.content {
Expand All @@ -88,3 +75,19 @@ a:hover {
font-size: $small-font-size;
font-style: italic;
}

@media screen and (max-width: 600px) {
.logo {
margin-top: 80px;
}

.site-nav {
left: 0;
}

.me {
display: block;
float: none;
margin: 0 auto 1em auto;
}
}
4 changes: 1 addition & 3 deletions index.md
Original file line number Diff line number Diff line change
@@ -1,11 +1,9 @@
---
layout: default
layout: about
title: About
permalink: /
---

<img src="img/andaley.jpg" class="me" alt="Noelle Daley headshot">

Hello! I'm Noelle, a staff software engineer residing in Portland, OR, where I spend my days leading a frontend engineering team at [HashiCorp](https://www.hashicorp.com/). I'm excited about thoughtful UX/UI design and get a thrill from the challenge of turning chaos into beautiful organization.

My approach to building and designing software is influenced by my varied experiences working in tech over the last decade. As a staff frontend engineer I currently focus on balancing product and design needs, building an organized, reliable UI while helping my teammates grow. In previous roles in community management I advocated for better UIs and APIs and built relationships. My undergraduate degree in sociology equipped me with research methods, systems thinking and a passion for understanding human behavior. All of these experiences led me to a love of UX.
Expand Down

0 comments on commit 7469a38

Please sign in to comment.