diff --git a/fonts/FSEX300.ttf b/fonts/FSEX300.ttf new file mode 100644 index 0000000..a4f177c Binary files /dev/null and b/fonts/FSEX300.ttf differ diff --git a/fonts/FreeMono.otf b/fonts/FreeMono.otf new file mode 100644 index 0000000..0815c4b Binary files /dev/null and b/fonts/FreeMono.otf differ diff --git a/index.html b/index.html index f372118..d06ffe3 100644 --- a/index.html +++ b/index.html @@ -10,12 +10,12 @@

Homepage

-

Shockrah's Definitely-Not-a-Blog

+

Welcome to my Comfy Town

Cool stuff about me

-

Links where you can find me
-About me and what I do from time to time - under construction
-Source Code

+

Links to find me
+About Me
+Site Source Code


This time for real

diff --git a/index.md b/index.md index 842090c..67475d6 100644 --- a/index.md +++ b/index.md @@ -1,12 +1,12 @@ [![Homepage](./img/banner.png)](./index.html) -# Shockrah's Definitely-Not-a-Blog +# Welcome to my Comfy Town ## Cool stuff about me -> **[Links where you can find me](./page/links.html)** \ -> **[About me and what I do from time to time - _under construction_](./page/about.html)** \ -> **[Source Code](https://gitlab.com/AlejandroS/shockrah-city)** +> **[Links to find me](./page/links.html)** \ +> **[About Me](./page/about.html)** \ +> **[Site Source Code](https://gitlab.com/AlejandroS/shockrah-city)** ------ ### **[This time for real](./post/open.html)** diff --git a/make.sh b/make.sh index 2267d1b..33f518f 100755 --- a/make.sh +++ b/make.sh @@ -28,6 +28,10 @@ page() { fi } +index() { + pandoc index.md --css style.css -s -o index.html +} + help() { case $1 in type) diff --git a/style.css b/style.css index be94bda..d702ad3 100644 --- a/style.css +++ b/style.css @@ -5,6 +5,14 @@ html { -ms-text-size-adjust: 100%; } +@font-face { + font-family: 'Fixedsys'; + src: url(./fonts/FSEX300.ttf); +} +@font-face { + font-family: 'Freemono'; + src: url(./fonts/FreeMono.otf); +} body { color: #444; font-family: Georgia, Palatino, 'Palatino Linotype', Times, 'Times New Roman', serif; @@ -77,6 +85,7 @@ h4, h5, h6 { } h1 { + font-family: "Fixedsys"; font-size: 2.5em; }