From 6b676c7ba1d4f0f6a9df089e6a6595da854843db Mon Sep 17 00:00:00 2001 From: quenousimporte Date: Tue, 20 Feb 2024 16:23:04 +0100 Subject: [PATCH] refactor: externalize css --- index.php | 17 +---------------- style.css | 24 ++++++++++++++++++++++++ 2 files changed, 25 insertions(+), 16 deletions(-) create mode 100644 style.css diff --git a/index.php b/index.php index c5460e5..3fd3378 100644 --- a/index.php +++ b/index.php @@ -13,22 +13,7 @@ - diff --git a/style.css b/style.css new file mode 100644 index 0000000..fb475d6 --- /dev/null +++ b/style.css @@ -0,0 +1,24 @@ +body { + color: rgb(55, 53, 47); + font-family: helvetica; + line-height: 24px; + margin: 30px; + font-size: 16px; +} +textarea { + width: 100%; + border: none; + outline: none; + font-family: inherit; + font-size: inherit; + line-height: inherit; + color: inherit; + font-size: inherit; +} +.grey { + color: lightgrey; +} + +a { + color: inherit; +} \ No newline at end of file