aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAkshay <[email protected]>2020-01-25 13:55:56 +0000
committerAkshay <[email protected]>2020-01-25 13:55:56 +0000
commit02d360000fdbc1eca6c5145372424e8d4962205b (patch)
treee8063de35bb6ac9fb01defb138b05e000629b729
parent071ad3b4cb371e864316a821120ea1b63e6bf213 (diff)
fix handheld styles
-rw-r--r--docs/style.css3
-rw-r--r--post.esh20
2 files changed, 14 insertions, 9 deletions
diff --git a/docs/style.css b/docs/style.css
index eb29c87..5457004 100644
--- a/docs/style.css
+++ b/docs/style.css
@@ -37,6 +37,9 @@ html {
37 .posts { 37 .posts {
38 width: 100%; 38 width: 100%;
39 } 39 }
40 html {
41 font-size: 18px;
42 }
40} 43}
41 44
42.posts { 45.posts {
diff --git a/post.esh b/post.esh
index 75c7e02..4996ba2 100644
--- a/post.esh
+++ b/post.esh
@@ -11,16 +11,18 @@
11 <meta property="og:description" content="a static site {for, by, about} me "> 11 <meta property="og:description" content="a static site {for, by, about} me ">
12 <meta property="og:url" content="https://nerdypepper.tech"> 12 <meta property="og:url" content="https://nerdypepper.tech">
13 <body> 13 <body>
14 <div class="post posts"> 14 <div class="posts">
15 <div class="date"><%= $date%></div> 15 <div class="post">
16 <span style="font-size: 2rem; font-weight: 600"> 16 <div class="date"><%= $date%></div>
17 <%= $title%> 17 <span style="font-size: 2rem; font-weight: 600">
18 </span> 18 <%= $title%>
19 <div class="post-text"> 19 </span>
20 <% lowdown "$file"%> 20 <div class="post-text">
21 <% lowdown "$file"%>
22 </div>
23 <a href="/index.html" class="post-end-link">← Back</a>
24 <div class="separator"></div>
21 </div> 25 </div>
22 <a href="/index.html" class="post-end-link">‹ Back</a>
23 <div class="separator"></div>
24 </div> 26 </div>
25 </body> 27 </body>
26</html> 28</html>