From 543d69d839f1ad103f8ecb3d2c523b81ab18483c Mon Sep 17 00:00:00 2001
From: Karl <kc0bfv@gmail.com>
Date: Tue, 03 Mar 2020 20:11:08 +0000
Subject: [PATCH] Draw text on header image, font update

---
 static/css/myboth.css |   25 +++++++++++++++++++++++--
 1 files changed, 23 insertions(+), 2 deletions(-)

diff --git a/static/css/myboth.css b/static/css/myboth.css
index 1603bef..755220e 100644
--- a/static/css/myboth.css
+++ b/static/css/myboth.css
@@ -5,7 +5,14 @@
 #full_body { max-width: 1024px; margin: auto; }
 
 /* Make my own styles up */
-.top-section { margin: 20px; }
+@font-face {
+    font-family: "Ubuntu-Titling";
+    src: url("/font/ubuntu-titling/UbuntuTitling-Bold.ttf") format("truetype");
+}
+
+.top-section {
+    margin: 20px;
+}
 .morerounded { border-radius:15px; }
 .veryrounded { border-radius:30px; }
 .navbar {
@@ -17,9 +24,23 @@
 .abitbigger { font-size:1.3em; }
 .verylarge { font-size:2em; }
 
+#header {
+    position: relative;
+}
+#header-text {
+    font-family: "Ubuntu-Titling", "Ubuntu", Roboto, sans-serif;
+    font-weight: bold;
+    font-size: 6vw;
+    text-shadow: 0px 0px 10px black, 0px 0px 10px black, 0px 0px 10px black, 0px 0px 10px black;
+    color: white;
+    position: absolute;
+    bottom: -1.5vw;
+    left: 0vw;
+}
+
 /* Styles mimicing old blueprint */
 a:hover { text-decoration: none; }
 
 body {
-    font-family: "Helvetica Neue", Arial, Helvetica, sans-serif;
+    font-family: "Open Sans", Helvetica, Arial, sans-serif;
 }

--
Gitblit v1.10.0