Received: by mail.netbsd.org (Postfix, from userid 605) id 63C9784DCA; Mon, 22 Feb 2021 06:42:16 +0000 (UTC) Received: from localhost (localhost [127.0.0.1]) by mail.netbsd.org (Postfix) with ESMTP id 9D03584DC5 for ; Mon, 22 Feb 2021 06:42:15 +0000 (UTC) X-Virus-Scanned: amavisd-new at netbsd.org Received: from mail.netbsd.org ([127.0.0.1]) by localhost (mail.netbsd.org [127.0.0.1]) (amavisd-new, port 10025) with ESMTP id DMsDRqlaTmZh for ; Mon, 22 Feb 2021 06:42:15 +0000 (UTC) Received: from cvs.NetBSD.org (ivanova.netbsd.org [199.233.217.197]) by mail.netbsd.org (Postfix) with ESMTP id 00D3D84D3D for ; Mon, 22 Feb 2021 06:42:14 +0000 (UTC) Received: by cvs.NetBSD.org (Postfix, from userid 500) id EE113FA95; Mon, 22 Feb 2021 06:42:14 +0000 (UTC) Content-Transfer-Encoding: 7bit Content-Type: multipart/mixed; boundary="_----------=_1613976134280630" MIME-Version: 1.0 Date: Mon, 22 Feb 2021 06:42:14 +0000 From: "Nia Alarie" Subject: CVS commit: pkgsrc/templates To: pkgsrc-changes@NetBSD.org Reply-To: nia@netbsd.org X-Mailer: log_accum Message-Id: <20210222064214.EE113FA95@cvs.NetBSD.org> Sender: pkgsrc-changes-owner@NetBSD.org List-Id: Precedence: bulk List-Unsubscribe: This is a multi-part message in MIME format. --_----------=_1613976134280630 Content-Disposition: inline Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset="US-ASCII" Module Name: pkgsrc Committed By: nia Date: Mon Feb 22 06:42:14 UTC 2021 Modified Files: pkgsrc/templates: main.css Log Message: templates: normalize font size in CSS My browser (Firefox) renders monospace and non-monospace text at different sizes, which causes problems if they are mixed. To generate a diff of this commit: cvs rdiff -u -r1.2 -r1.3 pkgsrc/templates/main.css Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files. --_----------=_1613976134280630 Content-Disposition: inline Content-Length: 645 Content-Transfer-Encoding: binary Content-Type: text/x-diff; charset=us-ascii Modified files: Index: pkgsrc/templates/main.css diff -u pkgsrc/templates/main.css:1.2 pkgsrc/templates/main.css:1.3 --- pkgsrc/templates/main.css:1.2 Mon Feb 22 05:10:18 2021 +++ pkgsrc/templates/main.css Mon Feb 22 06:42:14 2021 @@ -1,4 +1,4 @@ -/* $NetBSD: main.css,v 1.2 2021/02/22 05:10:18 nia Exp $ */ +/* $NetBSD: main.css,v 1.3 2021/02/22 06:42:14 nia Exp $ */ body { font-family: sans-serif; @@ -6,6 +6,22 @@ body { color: #000; } +body, pre, code, samp { + font-size: 16px; +} + +h1 { + font-size: 160%; +} + +h2 { + font-size: 140%; +} + +h3 { + font-size: 120%; +} + a:link { color: #d43900; text-decoration: none; --_----------=_1613976134280630--