Skip to content

Commit

Permalink
add vaporwave color scheme
Browse files Browse the repository at this point in the history
  • Loading branch information
Yoni Ian Kok committed Feb 27, 2020
1 parent 4c3046a commit 03251ec
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 3 deletions.
7 changes: 4 additions & 3 deletions pages/about.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import React, {useState, useEffect} from 'react';
import Link from "next/link";
import styles from './css/about.module.css'

export default (props) => {
return (
Expand All @@ -20,16 +21,16 @@ export default (props) => {
</h2>
<p className="text-white py-10 text-l">
I guess the most important thing that I want this page to say is that I am not one thing.
I heard <a target="_blank" rel="noopener noreferrer" href={"https://twitter.com/naval"}>Naval
I heard <a className="link" target="_blank" rel="noopener noreferrer" href={"https://twitter.com/naval"}>Naval
Ravikant</a> say
that humans aren't meant to focus their entire lives on doing one thing. I wholeheartedly agree.
We are an incredibly versatile species, and it would be a shame to waste that versatility.
</p>
<p className="text-white pb-10 text-l">
I love reading, sailing, surfing, being a digital
bromad, <a target="_blank" rel="noopener noreferrer" href={"https://herres.haus"}>throwing
bromad, <a className="link" target="_blank" rel="noopener noreferrer" href={"https://herres.haus"}>throwing
parties</a>, worrying about political
malpractice, and watching <a target="_blank" rel="noopener noreferrer"
malpractice, and watching <a className="link" target="_blank" rel="noopener noreferrer"
href={"https://www.youtube.com/watch?v=MBRqu0YOH14"}>kurzgesagt</a>.
</p>
<p className="text-white pb-10 text-l">
Expand Down
12 changes: 12 additions & 0 deletions pages/css/about.module.css
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
.link {
text-decoration: none;
text-decoration-color: #9600ff;
border-bottom: 2px solid #9600ff;
display: inline-block;
line-height: 0.85;
}
.link:hover {
border-bottom: none;
@apply line-through;
text-decoration-color: #9600ff;
}

0 comments on commit 03251ec

Please sign in to comment.