diff --git a/Makefile b/Makefile index 4039dac..d746264 100644 --- a/Makefile +++ b/Makefile @@ -1,5 +1,5 @@ default: - pandoc --standalone --metadata title="nuka.works" --template src/template.html src/index.md -o src/index.html + pandoc --standalone --metadata title="nuka.works" --template src/template.html src/index.md -o src/index.html && pandoc --standalone --metadata title="nuka.works" --template src/links/template.html src/links/index.md -o src/links/index.html .PHONY: default diff --git a/src/images/discord.png b/src/images/discord.png new file mode 100644 index 0000000..f820214 Binary files /dev/null and b/src/images/discord.png differ diff --git a/src/images/gitea.png b/src/images/gitea.png new file mode 100644 index 0000000..d549b21 Binary files /dev/null and b/src/images/gitea.png differ diff --git a/src/images/twitter.png b/src/images/twitter.png new file mode 100644 index 0000000..5747dcc Binary files /dev/null and b/src/images/twitter.png differ diff --git a/src/links/index.html b/src/links/index.html new file mode 100644 index 0000000..5f1d129 --- /dev/null +++ b/src/links/index.html @@ -0,0 +1,24 @@ + + + + + nuka.works + + + + +

Links

+ + + diff --git a/src/links/index.md b/src/links/index.md new file mode 100644 index 0000000..708c5ac --- /dev/null +++ b/src/links/index.md @@ -0,0 +1,2 @@ +# Links + diff --git a/src/links/style.css b/src/links/style.css new file mode 100644 index 0000000..afc95e6 --- /dev/null +++ b/src/links/style.css @@ -0,0 +1,64 @@ +body { + background-color: #000000; + line-height:1.5em; + font-family:Calibri, Candara, Segoe, Segoe UI, Optima, Arial, sans-serif; +} + +.navbar { + color: #FFE4B5 !important; + font-family: Consolas, monaco, monospace; +} + +.a:link { + color: #FFE4B5 !important; +} + +a:visted { + color: #A784A8; +} + +h1, +p { + color:#FFFFFF; + line-height: 14px; + font-family: 'Courier New', Courier, monospace; +} + +::selection { + background:#BE0C0C; +} + +ul { + color: #FFFFFF; + list-style: none; +} + + + +ul#links li.twitter { + list-style-image: url('../images/twitter.png'); + margin: 0; + padding: 12px 0 12px 2em; + list-style: none; + background-image: url("../images/twitter.png"); + background-repeat: no-repeat; + background-position: left; + background-size: 1.5em; +} + +ul#links li.gitea { + background-image: url("../images/gitea.png"); + padding: 12px 0 12px 2em; + background-repeat: no-repeat; + background-position: left; + background-size: 1.5em; +} + + +ul#links li.discord { + background-image: url("../images/discord.png"); + padding: 12px 0 12px 2em; + background-repeat: no-repeat; + background-position: left; + background-size: 1.5em; +} diff --git a/src/links/template.html b/src/links/template.html new file mode 100644 index 0000000..cd7d0b9 --- /dev/null +++ b/src/links/template.html @@ -0,0 +1,25 @@ + + + + + $title$ + + + + +$body$ + + + diff --git a/src/style.css b/src/style.css index 320bde7..7ba5938 100644 --- a/src/style.css +++ b/src/style.css @@ -5,14 +5,19 @@ body { } .navbar { - color: #FFAB00; + color: #FFE4B5 !important; font-family: Consolas, monaco, monospace; } -.navbar:visited { - color: #0054FF; +.a:link { + color: #FFE4B5 !important; } +a.visted { + color: #A784A8 +} + +h1, p { color:#FFFFFF; line-height: 14px;