Skip to content

Commit 7bd0a38

Browse files
committed
Updating styles + ReadableExpressions logo
1 parent 00a2fdd commit 7bd0a38

File tree

6 files changed

+22
-4
lines changed

6 files changed

+22
-4
lines changed

_includes/header.html

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ <h1 class="site-title screen-reader-text"><a href="{{ site.baseurl }}" rel="home
1010
<div class="site-identity">
1111
<h1 class="site-title">
1212
<a href="{{ site.baseurl }}/">
13-
<span style="color: #2d89ef">Agile</span>Objects
13+
<span class="site-title-highlight">Agile</span>Objects
1414
</a>
1515
</h1>
1616
<p class="site-description">{{site.description}}</p>

_sass/_content.scss

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -328,6 +328,7 @@ ul.archive-posts-list {
328328
background-size: cover;
329329

330330
> h2 {
331+
color: $body-text-color;
331332
background: rgba($gray-darkest,.9);
332333
}
333334
}
@@ -344,6 +345,10 @@ ul.archive-posts-list {
344345
}
345346
}
346347
/* Projects */
348+
.projects {
349+
margin-top: 1em;
350+
}
351+
347352
.project {
348353

349354
input[type=checkbox] {

_sass/_header.scss

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,10 @@
6161
.site-title a {
6262
color: #fff;
6363
text-decoration: none;
64+
65+
.site-title-highlight {
66+
color: $body-title-color;
67+
}
6468
}
6569

6670
.site-description {

_sass/_variables.scss

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ $yellow: #fffac4;
1515
$white: #fff;
1616
$red: #E55065;
1717
$green: #50D174;
18-
$teal: #00aba9;
18+
$blue: #2d89ef;
1919
$cyan: #1ba1e2;
2020

2121
// Abstractions
2222
$header-bg-color: $black;
2323
$header-text-color: $white;
2424

2525
$body-bg-color: $gray-darkest;
26-
$body-title-color: $white;
26+
$body-title-color: $blue;
2727
$body-title-weight: 300;
2828
$body-subheading-color: $gray-light;
2929
$body-text-color: $white;

about.html

Lines changed: 10 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22
layout: default
33
title: About
44
projects: [
5+
{
6+
title: 'B&amp;Q Post-Brexit HMRC API Integration',
7+
description: [
8+
"Wrote a user-facing, web-based system integrated with HMRC's Post-Brexit customs declaration API",
9+
"Led code reviews of and advised on best-practices for several existing projects",
10+
"Introduced Kingfisher NuGet packages in a private feed for code reuse between solutions"
11+
],
12+
tags: [ C#, ASP.NET MVC, ASP.NET Web API, ASP.NET Core, JQuery, Entity Framework, SQL Server, Azure, Gitlab, Git ]
13+
},
514
{
615
title: 'Driving Licence-Checking Web App',
716
description: [
@@ -88,7 +97,7 @@
8897
<h1 class="post-title">Recent Projects</h1>
8998
</header>
9099

91-
<div>
100+
<div class="projects">
92101
{% for project in page.projects %}
93102
{% include project-box.html %}
94103
{% endfor %}
-1.52 KB
Loading

0 commit comments

Comments
 (0)