aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDimitri Sokolyuk <demon@dim13.org>2016-02-16 19:11:46 +0100
committerDimitri Sokolyuk <demon@dim13.org>2016-02-16 19:11:46 +0100
commit237b69932fa8afbe1ff59b0710537dad21fac2fc (patch)
tree7ae6e817f31ecf570e4e0f2db8664f251e1913fc
parent2db9177a2415a351a36517beae95013b1e0c382a (diff)
Tweak fonts
-rw-r--r--tmpl/edit2
-rw-r--r--tmpl/root9
2 files changed, 8 insertions, 3 deletions
diff --git a/tmpl/edit b/tmpl/edit
index 16b7846..683567c 100644
--- a/tmpl/edit
+++ b/tmpl/edit
@@ -1,7 +1,7 @@
{{define "title"}}Editing {{.Title}}{{end}}
{{define "content"}}
<form action="/save/{{.Title}}" method="POST">
-<textarea name="body" rows="20" cols="80">{{printf "%s" .Body}}</textarea>
+<textarea name="body" rows="25" cols="80">{{printf "%s" .Body}}</textarea>
<br>
<input type="submit" value="Save">
<input type="reset" value="Reset">
diff --git a/tmpl/root b/tmpl/root
index 15e0ba7..eab7b55 100644
--- a/tmpl/root
+++ b/tmpl/root
@@ -3,12 +3,17 @@
<html>
<head>
<title>{{template "title" .}}</title>
- <link href='http://fonts.googleapis.com/css?family=Raleway|Anonymous+Pro' rel='stylesheet' type='text/css'>
+ <link href='http://fonts.googleapis.com/css?family=Abel' rel='stylesheet' type='text/css'>
+ <link href='http://fonts.googleapis.com/css?family=Raleway' rel='stylesheet' type='text/css'>
+ <link href='http://fonts.googleapis.com/css?family=Anonymous+Pro' rel='stylesheet' type='text/css'>
<style>
body {
- font-family: 'Raleway', sans-serif;
+ font-family: 'Abel', sans-serif;
margin: 5% 10%;
}
+ h1 {
+ font-family: 'Raleway', sans-serif;
+ }
pre {
font-family: 'Anonymous Pro', monospace;
}