From c62d06a9d1f05d4d125b9d043d974073e206a67e Mon Sep 17 00:00:00 2001
From: Ricardo Wurmus <rekado@elephly.net>
Date: Sun, 11 Apr 2021 00:37:24 +0200
Subject: website: Rearrange intro text.

* website/haunt.scm (read-markdown-page): Move intro text from here...
(base-layout): ...to here.
* website/static/css/main.css: Adjust header styles.
* website/static/images/noise-bg.png: New file.
* website/index.md: Remove tag line.
---
 static/css/main.css        |  36 +++++++++++-------------------------
 static/images/noise-bg.png | Bin 0 -> 3101 bytes
 2 files changed, 11 insertions(+), 25 deletions(-)
 create mode 100644 static/images/noise-bg.png

(limited to 'static')

diff --git a/static/css/main.css b/static/css/main.css
index 89ff430..2acd5ef 100644
--- a/static/css/main.css
+++ b/static/css/main.css
@@ -38,15 +38,11 @@
 @media all and (max-width:800px){html {font-size: 16px;}}
 @media all and (max-width:760px){html {font-size: 16px;}}
 
-.front-page-heading {
-    font-size: 175%;
-    line-height: 150%;
-}
 
 /*#ffbf2d*/
 
 body,html {
-    background-color: #fff;
+    background-color: #fafafa;
     color: #073b4c;
     width: 100%;
     height: 100%;
@@ -95,7 +91,7 @@ p + p {
 }
 
 #header {
-    background: #fff;
+    background: url('../images/noise-bg.png');
     height: 90px;
     width: 100%;
     box-shadow: 0 3px 8px #ccc;
@@ -104,7 +100,8 @@ p + p {
 #header .logo {
     padding: 10px;
     display: block;
-    height: 15rem;
+    height: 25rem;
+    margin-bottom: 2em;
 }
 
 #header .logo:focus {
@@ -115,24 +112,11 @@ p + p {
     height: 4.5rem;
 }
 
-#header .baseline {
-    color: #073b4c;
-    font-size: 16px;
-    font-family: 'Roboto', sans-serif;
-    font-weight: bold;
-    display: none;  /* overridden below */
-    padding: 10px;
-    padding-top: 2px;
-}
-
 #header .members {
     float: right;
 }
 
 @media screen and (min-width: 640px) {
-    #header .baseline {
-	display: block;
-    }
     #header {
         height: 110px;
     }
@@ -146,16 +130,19 @@ p + p {
     padding-bottom: 1rem;
 }
 
+#header.frontpage .front-page-heading {
+    font-size: 175%;
+    line-height: 150%;
+    text-align: left;
+    padding-top: 0.5em;
+}
+
 #header.frontpage .logo {
     padding: 0;
     margin: 0 auto;
     max-width: 100%;
 }
 
-#header.frontpage .baseline {
-    padding-top: 1rem;
-}
-
 #menubar {
     margin: auto;
     padding: 0px;
@@ -197,7 +184,6 @@ p + p {
 }
 
 .post {
-    background: #ffffff;
     padding: 10px;
     margin-bottom: 25px;
 }
diff --git a/static/images/noise-bg.png b/static/images/noise-bg.png
new file mode 100644
index 0000000..df511d7
Binary files /dev/null and b/static/images/noise-bg.png differ
-- 
cgit v1.2.1