about summary refs log tree commit diff
path: root/pkgs/profpatsch/profpatsch.de/main.css
diff options
context:
space:
mode:
authorProfpatsch <mail@profpatsch.de>2020-06-29 00:52:06 +0200
committerProfpatsch <mail@profpatsch.de>2020-06-29 00:52:06 +0200
commita0ade33e2291f525bdccdc0dada286987d3d70f6 (patch)
treebd85689653d0df2cbe8a58192b6eb3a9c431e34f /pkgs/profpatsch/profpatsch.de/main.css
parent54e19e0aeac16abd02eac2623e1eeefbb05ca2a3 (diff)
pkgs/profpatsch: add static build of profpatsch.de
This was previously located verbatim on my webserver.

Since `df.eu` thought it was a good idea to unilaterally cancel it
when I moved my domain, it is now a good idea to nixify what was
there.
Diffstat (limited to 'pkgs/profpatsch/profpatsch.de/main.css')
-rw-r--r--pkgs/profpatsch/profpatsch.de/main.css49
1 files changed, 49 insertions, 0 deletions
diff --git a/pkgs/profpatsch/profpatsch.de/main.css b/pkgs/profpatsch/profpatsch.de/main.css
new file mode 100644
index 00000000..f3c862dd
--- /dev/null
+++ b/pkgs/profpatsch/profpatsch.de/main.css
@@ -0,0 +1,49 @@
+@import url(http://fonts.googleapis.com/css?family=Quattrocento|Open+Sans:400,300);
+
+body {
+    font-family: 'Open Sans', sans-serif;
+    font-size: 1em;
+}
+
+main {
+    margin: 0 auto;
+    width: 500px;
+}
+
+#title {
+    text-align: center;
+}
+#title h1 {
+    font-size: 4em;
+    font-weight: 300;
+    margin-bottom: 0em;
+}
+#title h2 {
+    font-size: 1.5em;
+    font-weight: 300;
+    margin-top: 0;
+}
+#title h2 a {
+    color: #000;
+    text-decoration: none;
+}
+#title h2 a:hover {
+    color: #333;
+}
+#title hr {
+    width: 100px;
+    border: 1px solid grey;
+    margin-bottom: 2em;
+}
+
+p {
+    font-family: 'Quattrocento', serif;
+    text-align: justify;
+    line-height: 1.5em;
+}
+
+#codeblock {
+    text-align: center;
+    font-family: monospace;
+    font-size: 16px;
+}