commit 4814a630f8a93c1398635f084b9014c830ed96e7
parent 3614f4f10729a9fc32f19c8d0005fe81c9d80c45
Author: Laura Ketola <laura.m.ketola@gmail.com>
Date: Mon, 31 Oct 2016 23:51:31 +0200
Update content
Diffstat:
head.html | | | 4 | ++-- |
index.md | | | 16 | ++++++++++++---- |
main.scss | | | 89 | ++++++++++++++++++++++++++++++++++++------------------------------------------- |
3 files changed, 55 insertions(+), 54 deletions(-)
diff --git a/head.html b/head.html
@@ -8,9 +8,9 @@
<html>
<head>
- <title>Azure Númen</title>
+ <title>Azure Númen - Laura Ketola</title>
<meta charset="utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1">
<meta name="author" content="Laura Ketola">
- <meta name="description" content="Contact, portfolio, blog">
+ <meta name="description" content="Contact, portfolio">
<style>
diff --git a/index.md b/index.md
@@ -1,17 +1,25 @@
+```bash
+$ cd www/nindwen.blue
+$ vim index.md
+$ make
+```
+
***
-I'm *Laura Ketola*. Often nindwen/Persikka on the internet.
+Hello!
+
+I'm *Laura Ketola*. Often nindwen/Persikka on the internet. At the moment, I'm a third year CS student at the University of Tampere, Finland.
-I'm a third year CS student at the University of Tampere, Finland.
+In practise I mostly do Web Dev nowadays, but my love is always in simplistic/UNIX/CLI -stuff. VR is cool. Statically typed languages are cool. Writing in plain text is cool.
-In practise I mostly do webdev nowadays, but my love is always in simplistic/UNIX/CLI -stuff.
+Outside tech, I am a tolkien-geek, trying to enjoy the nature as much as the Finnish winter allows and sometimes failing pretending to be a normal person. Sauron is cool. My boyfriend is cool. Autumn is cool.
This is my front page / contact info.
***
------- -----------------------------------------
- email me at nindwen.blue
+ email me (at) nindwen.blue
github <http://github.com/nindwen>
irc nindwen@freenode/ircnet
------- -----------------------------------------
diff --git a/main.scss b/main.scss
@@ -1,72 +1,65 @@
-$back: #f0f0f0;
+$back: #fefefe;
$front: #1b1b1b;
$accent: #de935f;
-$font-stack: "Palatino Linotype", "Book Antiqua", Palatino, serif;
+// $font-stack: ‘Palatino Linotype’, ‘Book Antiqua’, Palatino, serif;
+$font-stack: Impact, Charcoal, sans-serif;
+// $font-stack: ‘Lucida Sans Unicode’, ‘Lucida Grande’, sans-serif;
+$mono-stack: "Courier New", Courier, monospace;
-body {
- font-family: $font-stack;
- background: $back;
- color: $front;
+html, body {
+ font-family: $font-stack;
+ background: $back;
+ color: $front;
+ height: 100%;
+ margin: 0px;
+ padding: 0px;
}
#content {
- max-width: 500px;
- margin: auto;
- text-align: left;
- margin-bottom: 20px;
-
- em {
- color: $accent;
- font-style: normal;
- font-weight: bold;
- }
-
- img {
- }
+ background: $back;
+ max-width: 500px;
+ padding: 50px;
+ padding-bottom: 0px;
+ margin: auto;
+ text-align: left;
+ height: 100%;
+ line-height: 1.5;
- blockquote {
- font-style: italic;
- }
+ em {
+ color: $accent;
+ font-style: normal;
+ font-weight: bold;
+ }
- code {
- font-family: monospace;
- }
-}
-
-header, footer {
- font-family: $font-stack;
- background: $back;
- color: $front;
- height: 2em;
- display: flex;
- align-items: center;
- display: -webkit-flex;
- -webkit-align-items: center;
-
- width: 500px;
- margin: auto;
- padding: 10px;
+ img {
+ }
+ blockquote {
+ font-style: italic;
+ }
- h1 {
- font-weight: 800;
- }
+ code {
+ font-family: $mono-stack;
+ font-size: 90%;
+ color: grey;
+ line-height: 1.0;
+ }
}
table {
- margin: 0 auto;
+ margin: 0 auto;
}
th, td {
- padding: 10px;
- margin: 10px;
+ padding: 10px;
+ margin: 10px;
}
tr {
- border-bottom: 1px solid $front;
+ border-bottom: 1px solid $front;
}
a, a:visited {
- color: $accent;
+ color: $accent;
}