From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.6 (2021-04-09) on gnuweeb.org X-Spam-Level: X-Spam-Status: No, score=-0.8 required=5.0 tests=ALL_TRUSTED,DKIM_SIGNED, DKIM_VALID,DKIM_VALID_AU,DKIM_VALID_EF,NO_DNS_FOR_FROM,URIBL_BLOCKED autolearn=no autolearn_force=no version=3.4.6 Received: from localhost.localdomain (unknown [138.197.159.143]) by gnuweeb.org (Postfix) with ESMTPSA id 7F4817E5D8; Sun, 12 Jun 2022 12:07:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=gnuweeb.org; s=default; t=1655035645; bh=KfUAkRN13lOVDAkzrcW5T/nlS2DBBiX/Ss0qcIwk9fo=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=PPuT6Ui3YkbOc3b5dGMBdD6eNDugBrMxB/hi06K+uuHV4HK+ZT4fj+jodDI5qxLaR k6neO77HVBuT/UkOZdAyGkm/C+Jf931YVJlzviKP3uzCXbOlu34of7o+SKmzG8PLFe 6ULj1zF0NN3Dd3UTgiXb9R9CXZEQX2l2lWbfuOAoUc8spGb/ln/oP5wKy4hunUHF+n cxClnDqo48Nsi5ApS0m9jlAJZBUEreya5r9ChrB+1wzzk+MPMhREJM3EqWfQEOQrNi wyLZz75Rt0EdC9KScOBCe1fw9ZkzNV2Sezwhm8hy2ZDm/SyWfnqazZhql3H+K9KXIB DGovvwnxTQx7g== From: Alviro Iskandar Setiawan To: "Fernanda Ma'rouf" , Akiekano Cc: Alviro Iskandar Setiawan , "GNU/Weeb Mailing List" , Ammar Faizi , Ammar Alifian Fahdan , Irvan Malik Azantha , Khoiri , Muhammad Irvan Hakim Subject: [PATCH buubuu v1 02/10] assets: Create common.css to place common used CSS rules Date: Sun, 12 Jun 2022 12:07:12 +0000 Message-Id: <20220612120720.2750101-2-alviro.iskandar@gnuweeb.org> X-Mailer: git-send-email 2.27.0 In-Reply-To: References: MIME-Version: 1.0 Content-Transfer-Encoding: 8bit List-Id: Create assets/common.css to place common used CSS rules. We will include this CSS file from many places later. Signed-off-by: Alviro Iskandar Setiawan --- assets/common.css | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 assets/common.css diff --git a/assets/common.css b/assets/common.css new file mode 100644 index 0000000..a5ff64a --- /dev/null +++ b/assets/common.css @@ -0,0 +1,6 @@ +* { + font-family: Arial; +} +button { + cursor: pointer; +} -- Alviro Iskandar Setiawan