From d1539a3ca215e4716b3166cb9e1670e546acc85d Mon Sep 17 00:00:00 2001 From: Roan Horning Date: Sat, 12 Oct 2024 10:43:51 -0400 Subject: [PATCH] Add fluid responsive design to comment and code tags --- public_html/css/hpr.css | 12 +++++------- 1 file changed, 5 insertions(+), 7 deletions(-) diff --git a/public_html/css/hpr.css b/public_html/css/hpr.css index 124c11d..02154a8 100644 --- a/public_html/css/hpr.css +++ b/public_html/css/hpr.css @@ -240,18 +240,16 @@ pre { /* Add background, border and scrollbar to
 */
     border: 1px solid #ddd;
     overflow: auto;
     clear: both;
+	padding: 0.5rem
 }
 
-table.hosts {
-	background: white
+pre code {
+	padding-right: 0.5rem;
+	font-size: 0.85rem;
+	line-height: 1;
 }
-table.hosts tr:nth-child(even) { background-color:#cccccc; }
-table.hosts tr:nth-child(odd) { background-color:white; }
-table.hosts tr td img { vertical-align:middle }
-
 pre.comment {
 	white-space: pre-wrap;
-	padding: 2px;
 	line-height: 1.2rem;
 }