Colourscheme + add fontawesome

Probably overkill but hey :P
This commit is contained in:
2020-04-23 16:48:44 +01:00
parent 21bbb417a5
commit 7a90646ac3
5 changed files with 4411 additions and 18 deletions

View File

@@ -1,9 +1,9 @@
title: Arona Jones
email: aj@aronajones.com
description: >-
The personal website, blog and portfolio of Arona Jones, the Frenetic Scribbler
Portfolio of Arona Jones, a Swiss-born British Developer, Writer and Stage Technician.
baseurl: ""
url: "https://www.aronajones.com" # the base hostname & protocol for your site, e.g. http://example.com
url: "https://aronajones.com" # the base hostname & protocol for your site, e.g. http://example.com
twitter_username: aronajones_
github_username: FreneticScribbler

View File

@@ -6,4 +6,5 @@
<link rel="stylesheet" href="{{ "/assets/main.css" | relative_url }}">
{%- feed_meta -%}
<link rel="stylesheet" type="text/css" href="custom.css">
<script defer src="fontawesome.js"></script>
</head>

View File

@@ -1,5 +1,9 @@
body {
background: #202226;
color: #00ADFF;
}
.bigimage {
transform: skew(-20deg);
transform: skew(-10deg);
color: white;
padding: 2em;
height: 50vh;
@@ -25,7 +29,7 @@ img.background {
filter: blur(0);
}
a.button {
transform: skew(20deg);
transform: skew(10deg);
color: white;
touch-callout: none;
user-select: none;

4391
fontawesome.js Normal file

File diff suppressed because one or more lines are too long

View File

@@ -2,25 +2,22 @@
---
<!DOCTYPE html>
<html lang="{{ page.lang | default: site.lang | default: "en" }}">
{%- include head.html -%}
<body>
{%- include header.html -%}
<header class="site-header">
<div class="wrapper" style="text-align: center;">
<h1 style="padding-top: 0.5em;">Arona Jones</h1>
</div>
</header>
<main aria-label="Content">
<div style="display: flex; justify-content: center; background: black; margin-left: -6vw; margin-right: -6vw;">
<div class="bigimage"><img class="background" src="img/christian-wiediger-WkfDrhxDMC8-unsplash.jpg"><a class="button" href="">Development</a></div>
<div class="bigimage"><img class="background" src="img/1*0V2rDSk8SOr6mpfFf28EJA.jpeg"><a class="button" href="">Writing</a></div>
<div class="bigimage"><img class="background" src="img/1*kV4-rHsyoDl4ursB1CG72Q.jpeg"><a class="button" href="">Technical</a></div>
<div class="bigimage"><img class="background" src="img/1*2J4xTO7JYBYA3dcMwwGSlw.jpeg"><a class="button" href="">Personal</a></div>
<div style="display: flex; justify-content: center; background: black; margin-left: -3vw; margin-right: -3vw;">
<div class="bigimage"><img class="background" src="img/christian-wiediger-WkfDrhxDMC8-unsplash.jpg"><a class="button" href=""><span class="fas fa-file-code"></span> Development</a></div>
<div class="bigimage"><img class="background" src="img/1*0V2rDSk8SOr6mpfFf28EJA.jpeg"><a class="button" href=""><span class="fas fa-pen-fancy"></span> Writing</a></div>
<div class="bigimage"><img class="background" src="img/1*kV4-rHsyoDl4ursB1CG72Q.jpeg"><a class="button" href=""><span class="fas fa-lightbulb"></span> Technical</a></div>
<div class="bigimage"><img class="background" src="img/1*2J4xTO7JYBYA3dcMwwGSlw.jpeg"><a class="button" href="blog"><span class="fas fa-portrait"></span> Personal</a></div>
</div>
</main>
{%- include footer.html -%}
</body>
{%- include footer.html -%}
</html>