www.lurk.org

LURK www landing page
git clone https://git.lurk.org/repos/www.lurk.org.git
Log | Files | Refs

commit e970ca1dbed495e6a89f17ac393fc9d187fa5f4e
parent b588de0e66c939878a80cf2fb9497fb1cb6e2cbd
Author: rra <rscmbbn@riseup.net>
Date:   Thu Aug 22 10:33:45 +0200

clearer H1 and H2, rudimentary mobile phone support
Diffstat:
style.css | 31+++++++++++++++++++++++++++----
1 file changed, 27 insertions(+), 4 deletions(-)
diff --git a/style.css b/style.css
@@ -79,19 +79,22 @@ main a, main a:hover, main a:visited {
 }
 
 h1, h2 {
-  font-family: "F5.6-Regular", Fallback, sans-serif;
+  /*! font-family: "F5.6-Regular", Fallback, sans-serif; */
   font-weight: normal;
   font-style: normal;
   color: #FFFFFF;
   text-transform: uppercase;
-  text-align: center;
+  text-align: left;
+  /*! padding: 0; */
 }
 
 h1 {
   font-size: 2.5em;
-  letter-spacing: 1em;
-  padding-left: 1em;
+  letter-spacing: 0.5em;
+  /*! padding-left: 1em; */
   overflow-wrap: break-word;
+  border: 2px solid;
+  padding: 0.5em;
 }
 
 #halp h1 {
@@ -103,6 +106,10 @@ h2 {
   letter-spacing: 0.5em;
 }
 
+h2:before {
+  content: "➢";
+}
+
 em {
   font-family: "Route159-BoldItalic", Fallback, sans-serif;
   font-weight: normal;
@@ -124,3 +131,19 @@ p, li {
 }
 
 
+@media screen and (orientation:portrait) {
+
+.centreplz {
+	padding:1em;
+	max-width: 100%;
+	width:auto;
+
+}
+h1{
+	font-size: 1.8em;
+}
+h2{
+	font-size: 1.2em;
+}
+}
+